|
Last change
on this file since 426 was
2,
checked in by lmdz, 26 years ago
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:executable set to
*
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
855 bytes
|
| Line | |
|---|
| 1 | SUBROUTINE reduce_i(ni,nj,x,x_r) |
|---|
| 2 | c%W% %G% |
|---|
| 3 | c======================================================================= |
|---|
| 4 | c |
|---|
| 5 | c Author: Frederic Hourdin original: 14/02/93 |
|---|
| 6 | c ------- |
|---|
| 7 | c |
|---|
| 8 | c Subject: |
|---|
| 9 | c ------ |
|---|
| 10 | c |
|---|
| 11 | c Method: |
|---|
| 12 | c -------- |
|---|
| 13 | c |
|---|
| 14 | c Interface: |
|---|
| 15 | c ---------- |
|---|
| 16 | c |
|---|
| 17 | c Input: |
|---|
| 18 | c ------ |
|---|
| 19 | c |
|---|
| 20 | c Output: |
|---|
| 21 | c ------- |
|---|
| 22 | c |
|---|
| 23 | c======================================================================= |
|---|
| 24 | IMPLICIT NONE |
|---|
| 25 | c----------------------------------------------------------------------- |
|---|
| 26 | c Declararations: |
|---|
| 27 | c --------------- |
|---|
| 28 | |
|---|
| 29 | c Arguments: |
|---|
| 30 | c ---------- |
|---|
| 31 | |
|---|
| 32 | INTEGER ni,nj |
|---|
| 33 | REAL x(ni+1,nj),x_r(ni,nj) |
|---|
| 34 | |
|---|
| 35 | c Local: |
|---|
| 36 | c ------ |
|---|
| 37 | |
|---|
| 38 | INTEGER j |
|---|
| 39 | EXTERNAL SCOPY |
|---|
| 40 | |
|---|
| 41 | c----------------------------------------------------------------------- |
|---|
| 42 | |
|---|
| 43 | DO j=1,nj |
|---|
| 44 | CALL SCOPY(ni,x(1,j),1,x_r(1,j),1) |
|---|
| 45 | ENDDO |
|---|
| 46 | RETURN |
|---|
| 47 | END |
|---|
Note: See
TracBrowser
for help on using the repository browser.