Last change
on this file since 901 was
774,
checked in by Laurent Fairhead, 17 years ago
|
Suite du merge entre la version et la HEAD: quelques modifications de
Yann sur le
LF
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.0 KB
|
Line | |
---|
1 | SUBROUTINE gr_dyn_fi_p(nfield,im,jm,ngrid,pdyn,pfi) |
---|
2 | USE mod_interface_dyn_phys |
---|
3 | USE dimphy |
---|
4 | USE PARALLEL |
---|
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 i,j,ig,l |
---|
19 | |
---|
20 | c----------------------------------------------------------------------- |
---|
21 | c calcul: |
---|
22 | c ------- |
---|
23 | |
---|
24 | c IF(ngrid.NE.2+(jm-2)*(im-1)) STOP 'probleme de dim' |
---|
25 | c traitement des poles |
---|
26 | c traitement des point normaux |
---|
27 | c$OMP DO SCHEDULE(STATIC,OMP_CHUNK) |
---|
28 | DO l=1,nfield |
---|
29 | DO ig=1,klon |
---|
30 | i=index_i(ig) |
---|
31 | j=index_j(ig) |
---|
32 | pfi(ig,l)=pdyn(i,j,l) |
---|
33 | ENDDO |
---|
34 | ENDDO |
---|
35 | c$OMP END DO NOWAIT |
---|
36 | RETURN |
---|
37 | END |
---|
Note: See
TracBrowser
for help on using the repository browser.