Last change
on this file since 3436 was
3175,
checked in by emillour, 11 months ago
|
Pluto PCM:
Add the old Pluto LMDZ for reference (required prior step to making
an LMDZ.PLUTO using the same framework as the other physics packages).
TB+EM
|
File size:
377 bytes
|
Line | |
---|
1 | subroutine scopydyn(n,sx,incx,sy,incy) |
---|
2 | c |
---|
3 | IMPLICIT NONE |
---|
4 | c |
---|
5 | integer n,incx,incy,ix,iy,i |
---|
6 | !real sx((n-1)*incx+1),sy((n-1)*incy+1) |
---|
7 | real sx(*),sy(*) ! TB18 |
---|
8 | c |
---|
9 | iy=1 |
---|
10 | ix=1 |
---|
11 | do 10 i=1,n |
---|
12 | sy(iy)=sx(ix) |
---|
13 | !print*, 'TB18 scop',i,sx(ix),sy(iy) |
---|
14 | ix=ix+incx |
---|
15 | iy=iy+incy |
---|
16 | 10 continue |
---|
17 | c |
---|
18 | return |
---|
19 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.