/[lmdze]/trunk/dyn3d/laplacien_rotgam.f
ViewVC logotype

Annotation of /trunk/dyn3d/laplacien_rotgam.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 265 - (hide annotations)
Tue Mar 20 09:35:59 2018 UTC (6 years, 2 months ago) by guez
File size: 1134 byte(s)
Rename module dimens_m to dimensions.
1 guez 3
2 guez 81 ! $Header: /home/cvsroot/LMDZ4/libf/dyn3d/laplacien_rotgam.F,v 1.1.1.1
3     ! 2004/05/19 12:53:05 lmdzadmin Exp $
4 guez 3
5 guez 81 SUBROUTINE laplacien_rotgam(klevel, rotin, rotout)
6 guez 3
7 guez 81 ! P. Le Van
8    
9     ! ************************************************************
10     ! ... calcul de (rotat x nxgrad)_gam du rotationnel rotin ..
11     ! ************************************************************
12     ! klevel et teta sont des arguments d'entree pour le s-prog
13     ! divgra est un argument de sortie pour le s-prog
14    
15 guez 265 USE dimensions
16 guez 81 USE paramet_m
17     USE comgeom
18     IMPLICIT NONE
19    
20    
21    
22     ! ............. variables en arguments ...........
23    
24     INTEGER, INTENT (IN) :: klevel
25     REAL rotin(ip1jm, klevel), rotout(ip1jm, klevel)
26    
27     ! ............ variables locales ...............
28    
29     INTEGER l, ij
30     REAL ghy(ip1jm, llm), ghx(ip1jmp1, llm)
31     ! ........................................................
32    
33    
34    
35     CALL nxgrad_gam(klevel, rotin, ghx, ghy)
36     CALL rotat_nfil(klevel, ghx, ghy, rotout)
37    
38     DO l = 1, klevel
39     DO ij = 1, ip1jm
40     rotout(ij, l) = rotout(ij, l)*unsairz_gam(ij)
41     END DO
42     END DO
43    
44     RETURN
45     END SUBROUTINE laplacien_rotgam

  ViewVC Help
Powered by ViewVC 1.1.21