source: codes/icosagcm/devel/src/dynamics/caldyn_vars.f90 @ 732

Last change on this file since 732 was 732, checked in by dubos, 6 years ago

devel : more cleanup and reorganization in dynamics/

File size: 1.1 KB
Line 
1MODULE caldyn_vars_mod
2  USE icosa
3  USE transfert_mod
4  IMPLICIT NONE
5  PUBLIC
6  SAVE
7
8  INTEGER, PARAMETER :: energy=1, enstrophy=2, caldyn_vert_noncons=1, caldyn_vert_cons=2, &
9       thermo_none=-99, thermo_theta=1, thermo_entropy=2, &
10       thermo_moist=3, thermo_boussinesq=4, thermo_dry=10, thermo_fake_moist=11, thermo_moist_debug=100
11
12  INTEGER :: caldyn_conserv, caldyn_thermo, caldyn_vert_variant, physics_thermo
13  !$OMP THREADPRIVATE(caldyn_conserv, caldyn_thermo, caldyn_vert_variant, physics_thermo)
14
15  LOGICAL :: boussinesq, hydrostatic
16  !$OMP THREADPRIVATE(boussinesq, hydrostatic)
17
18  LOGICAL :: dysl, dysl_geopot, dysl_pvort_only, dysl_caldyn_fast, dysl_caldyn_coriolis, dysl_slow_hydro, dysl_caldyn_vert
19  !$OMP THREADPRIVATE(dysl, dysl_geopot, dysl_pvort_only, dysl_caldyn_fast, dysl_caldyn_coriolis, dysl_slow_hydro, dysl_caldyn_vert)
20
21  ! temporary shared variables for caldyn
22  TYPE(t_field),POINTER :: f_qu(:), f_qv(:), f_pk(:),f_wwuu(:),f_planetvel(:), &
23                           f_Fel(:), f_gradPhi2(:), f_wil(:), f_Wetadot(:)
24
25
26  TYPE(t_message) :: req_ps, req_mass, req_theta_rhodz, req_u, req_qu, req_geopot, req_w
27
28END MODULE caldyn_vars_mod
Note: See TracBrowser for help on using the repository browser.