diff options
author | John Denker <jsd@av8n.com> | 2024-11-19 14:01:43 -0700 |
---|---|---|
committer | John Denker <jsd@av8n.com> | 2024-11-20 16:41:52 -0700 |
commit | 0be351d631992b142fc6c275f8a582d6ef4ad9ad (patch) | |
tree | a2618bf23658177a0e70a41816f54225059e26ac | |
parent | dcf82408f8f9a2d98a7d05c3983aad438d92de18 (diff) |
require linker to include block data
-rw-r--r-- | htdp.f | 4 | ||||
-rw-r--r-- | initbd.f | 2 | ||||
-rw-r--r-- | initeq.f | 2 | ||||
-rw-r--r-- | initps.f | 2 | ||||
-rw-r--r-- | initvl.f | 2 |
5 files changed, 12 insertions, 0 deletions
@@ -25,6 +25,10 @@ C You must change HTDP version and date here, if necessary HTDP_version = '3.5.0' Version_date = 'November 29, 2022' + call linkbd ! require linker to include block data + call linkeq ! require linker to include block data + call linkps ! require linker to include block data + call linkvl ! require linker to include block data *** Introduce variables for file IDs @@ -1,3 +1,5 @@ + subroutine linkbd ! require linker to include block data
+ end subroutine
BLOCK DATA INITBD
* Initializes velocity grid polygon boundaries.
@@ -1,3 +1,5 @@ + subroutine linkeq ! require linker to include block data
+ end subroutine
BLOCK DATA INITEQ
* Initializes co-seismic earthquake models for HTDP executable.
@@ -1,3 +1,5 @@ + subroutine linkps ! require linker to include block data + end subroutine BLOCK DATA INITPS IMPLICIT DOUBLE PRECISION (A-H, O-Z) IMPLICIT INTEGER*4 (I-N) @@ -1,3 +1,5 @@ + subroutine linkvl ! require linker to include block data + end subroutine BLOCK DATA INITVL IMPLICIT DOUBLE PRECISION (A-H, O-Z) IMPLICIT INTEGER*4 (I-N) |