LMDZ
advect_new_mod.F90
Go to the documentation of this file.
2 
3  REAL,POINTER,SAVE :: dv1(:,:)
4  REAL,POINTER,SAVE :: du1(:,:)
5  REAL,POINTER,SAVE :: dteta1(:,:)
6  REAL,POINTER,SAVE :: dv2(:,:)
7  REAL,POINTER,SAVE :: du2(:,:)
8  REAL,POINTER,SAVE :: dteta2(:,:)
9  REAL,POINTER,SAVE :: uav(:,:)
10  REAL,POINTER,SAVE :: vav(:,:)
11 
12 
13 CONTAINS
14 
15  SUBROUTINE advect_new_allocate
16  USE bands
18  USE parallel_lmdz
19  USE dimensions_mod
20  IMPLICIT NONE
21  TYPE(distrib),POINTER :: d
22 
23 
25  CALL allocate_v(dv1,llm,d)
26  CALL allocate_u(du1,llm,d)
27  CALL allocate_u(dteta1,llm,d)
28  CALL allocate_v(dv2,llm,d)
29  CALL allocate_u(du2,llm,d)
30  CALL allocate_u(dteta2,llm,d)
31  CALL allocate_u(uav,llm,d)
32  CALL allocate_v(vav,llm,d)
33 
34 
35  END SUBROUTINE advect_new_allocate
36 
37  SUBROUTINE advect_new_switch_caldyn(dist)
39  USE bands
40  USE parallel_lmdz
41  IMPLICIT NONE
42  TYPE(distrib),INTENT(IN) :: dist
43 
44  CALL switch_v(dv1,distrib_caldyn,dist)
45  CALL switch_u(du1,distrib_caldyn,dist)
46  CALL switch_u(dteta1,distrib_caldyn,dist)
47  CALL switch_v(dv2,distrib_caldyn,dist)
48  CALL switch_u(du2,distrib_caldyn,dist)
49  CALL switch_u(dteta2,distrib_caldyn,dist)
50  CALL switch_u(uav,distrib_caldyn,dist)
51  CALL switch_v(vav,distrib_caldyn,dist)
52 
53  END SUBROUTINE advect_new_switch_caldyn
54 
55 END MODULE advect_new_mod
Definition: bands.F90:4
real, dimension(:,:), pointer, save uav
real, dimension(:,:), pointer, save dteta2
!$Id Turb_fcg_gcssold get_uvd hqturb_gcssold endif!large scale llm day day1 day day1 *dt_toga endif!time annee_ref dt_toga u_toga vq_toga w_prof vq_prof llm day day1 day day1 *dt_dice endif!time annee_ref dt_dice swup_dice vg_dice omega_dice tg_prof vg_profd w_profd omega_profd!do llm!print llm l llm
real, dimension(:,:), pointer, save dv1
subroutine advect_new_switch_caldyn(dist)
real, dimension(:,:), pointer, save du2
real, dimension(:,:), pointer, save vav
real, dimension(:,:), pointer, save du1
real, dimension(:,:), pointer, save dv2
real, dimension(:,:), pointer, save dteta1
type(distrib), target, save distrib_caldyn
Definition: bands.F90:17
subroutine advect_new_allocate