Last change
on this file since 5018 was
4464,
checked in by lguez, 20 months ago
|
Replace stop by call to abort_(physiq|gcm)
|
-
Property copyright set to
Name of program: LMDZ Creation date: 1984 Version: LMDZ5 License: CeCILL version 2 Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539 See the license file in the root directory
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.1 KB
|
Rev | Line | |
---|
[524] | 1 | ! |
---|
| 2 | ! $Header$ |
---|
| 3 | ! |
---|
| 4 | SUBROUTINE gr_dyn_fi(nfield,im,jm,ngrid,pdyn,pfi) |
---|
| 5 | IMPLICIT NONE |
---|
| 6 | c======================================================================= |
---|
| 7 | c passage d'un champ de la grille scalaire a la grille physique |
---|
| 8 | c======================================================================= |
---|
| 9 | |
---|
| 10 | c----------------------------------------------------------------------- |
---|
| 11 | c declarations: |
---|
| 12 | c ------------- |
---|
| 13 | |
---|
| 14 | INTEGER im,jm,ngrid,nfield |
---|
| 15 | REAL pdyn(im,jm,nfield) |
---|
| 16 | REAL pfi(ngrid,nfield) |
---|
| 17 | |
---|
| 18 | INTEGER j,ifield,ig |
---|
| 19 | |
---|
| 20 | c----------------------------------------------------------------------- |
---|
| 21 | c calcul: |
---|
| 22 | c ------- |
---|
| 23 | |
---|
[4456] | 24 | IF (ngrid.NE.2+(jm-2)*(im-1)) then |
---|
[4464] | 25 | call abort_gcm("gr_dyn_fi", 'probleme de dim', 1) |
---|
[4456] | 26 | end if |
---|
[524] | 27 | c traitement des poles |
---|
| 28 | CALL SCOPY(nfield,pdyn,im*jm,pfi,ngrid) |
---|
| 29 | CALL SCOPY(nfield,pdyn(1,jm,1),im*jm,pfi(ngrid,1),ngrid) |
---|
| 30 | |
---|
| 31 | c traitement des point normaux |
---|
| 32 | DO ifield=1,nfield |
---|
| 33 | DO j=2,jm-1 |
---|
| 34 | ig=2+(j-2)*(im-1) |
---|
| 35 | CALL SCOPY(im-1,pdyn(1,j,ifield),1,pfi(ig,ifield),1) |
---|
| 36 | ENDDO |
---|
| 37 | ENDDO |
---|
| 38 | |
---|
| 39 | RETURN |
---|
| 40 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.