diff options
-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) |