|
3 | 3 | c double couple, and their moment. |
4 | 4 |
|
5 | 5 | subroutine mij(m,epsilon,s1,d1,r1,s2,d2,r2,m0,m00,iflag) |
6 | | - implicit REAL*8(A-H,O-Z) |
| 6 | + implicit double precision(A-H,O-Z) |
7 | 7 |
|
8 | 8 | dimension a(3,3),d(3),v(3,3),ae(3),an(3) |
9 | 9 | dimension ae1(3),an1(3),an2(3),ae2(3) |
10 | | - real*8 m(6), m0, m00 |
| 10 | + double precision m(6), m0, m00 |
11 | 11 | common/mpa/ft,fd,fl,ft1,fd1,fl1,azt,aiht,azp,aihp,az0,aih0, |
12 | 12 | *d,clvd |
13 | 13 |
|
@@ -173,7 +173,7 @@ subroutine mij(m,epsilon,s1,d1,r1,s2,d2,r2,m0,m00,iflag) |
173 | 173 | end |
174 | 174 |
|
175 | 175 | subroutine jacobi(a,n,np,d,v,nrot) |
176 | | - implicit REAL*8(A-H,O-Z) |
| 176 | + implicit double precision(A-H,O-Z) |
177 | 177 | parameter (nmax=100) |
178 | 178 | dimension a(np,np),d(np),v(np,np),b(nmax),z(nmax) |
179 | 179 | do 12 ip=1,n |
@@ -264,7 +264,7 @@ subroutine jacobi(a,n,np,d,v,nrot) |
264 | 264 | end |
265 | 265 |
|
266 | 266 | subroutine tdl(an,bn,ft,fd,fl) |
267 | | - implicit REAL*8(A-H,O-Z) |
| 267 | + implicit double precision(A-H,O-Z) |
268 | 268 | dimension an(3),bn(3) |
269 | 269 | xn=an(1) |
270 | 270 | yn=an(2) |
@@ -343,7 +343,7 @@ subroutine tdl(an,bn,ft,fd,fl) |
343 | 343 | end |
344 | 344 |
|
345 | 345 | subroutine azih(aa,az,aih) |
346 | | - implicit REAL*8(A-H,O-Z) |
| 346 | + implicit double precision(A-H,O-Z) |
347 | 347 | dimension aa(3) |
348 | 348 | con=57.2957795 |
349 | 349 | gx=aa(1) |
@@ -379,9 +379,9 @@ subroutine sdr2moment(sphif,sdlt,slmda,moment,mrr,mtt,mpp,mrt,mrp,mtp) |
379 | 379 | c this subroutine converts eqk fault parameters to moment tensors |
380 | 380 | c for definitions see hiroo''s class notes |
381 | 381 | c |
382 | | - real*8 sphif,sdlt,slmda,moment |
383 | | - real*8 mrr,mtt,mpp,mrt,mrp,mtp |
384 | | - real*8 pi,phif,dlt,lmda |
| 382 | + double precision sphif,sdlt,slmda,moment |
| 383 | + double precision mrr,mtt,mpp,mrt,mrp,mtp |
| 384 | + double precision pi,phif,dlt,lmda |
385 | 385 | c |
386 | 386 | pi=3.1415926 |
387 | 387 | phif=sphif*pi/180 |
|
0 commit comments