source: LMDZ5/trunk/libf/nxgraro2_mod.F90 @ 1630

Last change on this file since 1630 was 1630, checked in by Laurent Fairhead, 12 years ago

Importation initiale du répertoire dyn3dmem


Initial import of dyn3dmem directory

File size: 786 bytes
Line 
1MODULE nxgraro2_mod
2
3  REAL,POINTER,SAVE ::  grx( :,: )
4  REAL,POINTER,SAVE ::  gry( :,: )
5  REAL,POINTER,SAVE ::  rot( :,: )
6 
7CONTAINS
8
9  SUBROUTINE nxgraro2_allocate
10  USE bands
11  USE allocate_field
12  USE parallel
13  USE dimensions
14  IMPLICIT NONE
15    TYPE(distrib),POINTER :: d
16    d=>distrib_dissip
17
18    CALL allocate_u(grx,llm,d)
19    CALL allocate_v(gry,llm,d)
20    CALL allocate_v(rot,llm,d)
21
22   
23  END SUBROUTINE nxgraro2_allocate
24 
25  SUBROUTINE nxgraro2_switch_dissip(dist)
26  USE allocate_field
27  USE bands
28  USE parallel
29  IMPLICIT NONE
30    TYPE(distrib),INTENT(IN) :: dist
31
32    CALL switch_u(grx,distrib_dissip,dist)
33    CALL switch_v(gry,distrib_dissip,dist)
34    CALL switch_v(rot,distrib_dissip,dist)
35
36
37  END SUBROUTINE nxgraro2_switch_dissip
38 
39END MODULE nxgraro2_mod 
Note: See TracBrowser for help on using the repository browser.