source:
trunk/LMDZ.PLUTO.old/libf/dyn3d/laplacien_rotgam.F
@
3483
Last change on this file since 3483 was 3175, checked in by , 10 months ago | |
---|---|
File size: 1.1 KB |
Line | |
---|---|
1 | SUBROUTINE laplacien_rotgam ( klevel, rotin, rotout ) |
2 | c |
3 | c P. Le Van |
4 | c |
5 | c ************************************************************ |
6 | c ... calcul de (rotat x nxgrad)_gam du rotationnel rotin .. |
7 | c ************************************************************ |
8 | c klevel et teta sont des arguments d'entree pour le s-prog |
9 | c divgra est un argument de sortie pour le s-prog |
10 | c |
11 | IMPLICIT NONE |
12 | c |
13 | #include "dimensions.h" |
14 | #include "paramet.h" |
15 | #include "comgeom.h" |
16 | |
17 | c |
18 | c ............. variables en arguments ........... |
19 | c |
20 | INTEGER klevel |
21 | REAL rotin( ip1jm,klevel ), rotout( ip1jm,klevel ) |
22 | c |
23 | c ............ variables locales ............... |
24 | c |
25 | INTEGER l, ij |
26 | REAL ghy(ip1jm,llm), ghx(ip1jmp1,llm) |
27 | c ........................................................ |
28 | c |
29 | EXTERNAL nxgrad_gam, rotat_nfil |
30 | c |
31 | |
32 | CALL nxgrad_gam ( klevel, rotin, ghx , ghy ) |
33 | CALL rotat_nfil ( klevel, ghx , ghy , rotout ) |
34 | c |
35 | DO l = 1, klevel |
36 | DO ij = 1, ip1jm |
37 | rotout(ij,l) = rotout(ij,l) * unsairz_gam(ij) |
38 | ENDDO |
39 | ENDDO |
40 | |
41 | RETURN |
42 | END |
Note: See TracBrowser
for help on using the repository browser.