Last change
on this file was
5159,
checked in by abarral, 3 months ago
|
Put dimensions.h and paramet.h into modules
|
-
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 | |
---|
[5099] | 1 | |
---|
[524] | 2 | ! $Header$ |
---|
[5099] | 3 | |
---|
[5106] | 4 | SUBROUTINE laplacien_rotgam( klevel, rotin, rotout ) |
---|
[5159] | 5 | |
---|
[5105] | 6 | ! P. Le Van |
---|
[5159] | 7 | |
---|
[5105] | 8 | ! ************************************************************ |
---|
| 9 | ! ... calcul de (rotat x nxgrad)_gam du rotationnel rotin .. |
---|
| 10 | ! ************************************************************ |
---|
| 11 | ! klevel et teta sont des arguments d'entree pour le s-prog |
---|
| 12 | ! divgra est un argument de sortie pour le s-prog |
---|
[5159] | 13 | |
---|
[5136] | 14 | USE lmdz_comgeom |
---|
| 15 | |
---|
[5159] | 16 | USE lmdz_dimensions, ONLY: iim, jjm, llm, ndm |
---|
| 17 | USE lmdz_paramet |
---|
[5105] | 18 | IMPLICIT NONE |
---|
| 19 | ! |
---|
[524] | 20 | |
---|
[5159] | 21 | |
---|
| 22 | |
---|
| 23 | |
---|
[5105] | 24 | ! ............. variables en arguments ........... |
---|
[5159] | 25 | |
---|
[5105] | 26 | INTEGER :: klevel |
---|
| 27 | REAL :: rotin( ip1jm,klevel ), rotout( ip1jm,klevel ) |
---|
[5159] | 28 | |
---|
[5105] | 29 | ! ............ variables locales ............... |
---|
[5159] | 30 | |
---|
[5105] | 31 | INTEGER :: l, ij |
---|
| 32 | REAL :: ghy(ip1jm,llm), ghx(ip1jmp1,llm) |
---|
| 33 | ! ........................................................ |
---|
[5159] | 34 | |
---|
[5105] | 35 | ! |
---|
[524] | 36 | |
---|
[5105] | 37 | CALL nxgrad_gam ( klevel, rotin, ghx , ghy ) |
---|
| 38 | CALL rotat_nfil ( klevel, ghx , ghy , rotout ) |
---|
[5159] | 39 | |
---|
[5105] | 40 | DO l = 1, klevel |
---|
| 41 | DO ij = 1, ip1jm |
---|
| 42 | rotout(ij,l) = rotout(ij,l) * unsairz_gam(ij) |
---|
| 43 | ENDDO |
---|
| 44 | ENDDO |
---|
[524] | 45 | |
---|
[5105] | 46 | RETURN |
---|
| 47 | END SUBROUTINE laplacien_rotgam |
---|
Note: See
TracBrowser
for help on using the repository browser.