Changeset 2597 for LMDZ5/trunk/libf/dynphy_lonlat
- Timestamp:
- Jul 22, 2016, 8:44:47 AM (9 years ago)
- Location:
- LMDZ5/trunk/libf/dynphy_lonlat
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/libf/dynphy_lonlat/calfis.F
r2418 r2597 34 34 USE callphysiq_mod, ONLY: call_physiq 35 35 #endif 36 36 USE comconst_mod, ONLY: cpp, daysec, dtphys, dtvr, kappa, pi 37 37 38 IMPLICIT NONE 38 39 c======================================================================= … … 96 97 PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm ) 97 98 98 #include "comconst.h"99 99 #include "comvert.h" 100 100 #include "comgeom2.h" -
LMDZ5/trunk/libf/dynphy_lonlat/calfis_loc.F
r2429 r2597 50 50 USE callphysiq_mod, ONLY: call_physiq 51 51 #endif 52 USE comconst_mod, ONLY: cpp, daysec, dtphys, dtvr, kappa, pi 52 53 53 54 #ifdef CPP_PARA … … 107 108 c ------------------ 108 109 109 #include "dimensions.h"110 #include "paramet.h"111 #include "temps.h"110 include "dimensions.h" 111 include "paramet.h" 112 include "temps.h" 112 113 113 114 INTEGER ngridmx 114 115 PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm ) 115 116 116 #include "comconst.h" 117 #include "comvert.h" 118 #include "comgeom2.h" 119 #include "iniprint.h" 117 include "comvert.h" 118 include "comgeom2.h" 119 include "iniprint.h" 120 120 #ifdef CPP_MPI 121 121 include 'mpif.h' -
LMDZ5/trunk/libf/dynphy_lonlat/calfis_p.F
r2429 r2597 47 47 USE callphysiq_mod, ONLY: call_physiq 48 48 #endif 49 USE comconst_mod, ONLY: cpp, daysec, dtphys, dtvr, kappa, pi 49 50 50 51 IMPLICIT NONE … … 110 111 PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm ) 111 112 112 #include "comconst.h"113 113 #include "comvert.h" 114 114 #include "comgeom2.h" … … 159 159 REAL,ALLOCATABLE,SAVE :: zphi(:,:),zphis(:) 160 160 c 161 REAL zrot(iip1,jjb_v:jje_v,llm) ! AdlC May 2014 161 ! REAL zrot(iip1,jjb_v:jje_v,llm) ! AdlC May 2014 162 REAL :: zrot(iip1,jjm,llm) 162 163 REAL,ALLOCATABLE,SAVE :: zufi(:,:), zvfi(:,:), zrfi(:,:) 163 164 REAL,ALLOCATABLE,SAVE :: ztfi(:,:),zqfi(:,:,:) -
LMDZ5/trunk/libf/dynphy_lonlat/phylmd/ce0l.F90
r2457 r2597 34 34 USE mod_interface_dyn_phys, ONLY: init_interface_dyn_phys 35 35 #endif 36 USE comconst_mod, ONLY: cpp, daysec, dtphys, dtvr, g, kappa, omeg, r, rad, & 37 pi, jmp1 36 38 37 39 IMPLICIT NONE … … 42 44 include "paramet.h" 43 45 include "comgeom2.h" 44 include "comconst.h"45 46 include "comvert.h" 46 47 include "iniprint.h" -
LMDZ5/trunk/libf/dynphy_lonlat/phylmd/etat0dyn_netcdf.F90
r2361 r2597 36 36 USE ioipsl, ONLY: flininfo, flinopen, flinget, flinclo, histclo 37 37 USE assert_eq_m, ONLY: assert_eq 38 USE comconst_mod, ONLY: pi, cpp, kappa 38 39 IMPLICIT NONE 39 40 … … 46 47 include "comgeom2.h" 47 48 include "comvert.h" 48 include "comconst.h"49 49 include "temps.h" 50 50 include "comdissnew.h" -
LMDZ5/trunk/libf/dynphy_lonlat/phylmd/etat0phys_netcdf.F90
r2531 r2597 44 44 zmax0,fevap, rnebcon,falb_dir, wake_fip, agesno, detr_therm, pbl_tke, & 45 45 phys_state_var_init 46 USE comconst_mod, ONLY: pi, dtvr 46 47 47 48 PRIVATE … … 52 53 include "paramet.h" 53 54 include "comgeom2.h" 54 include "comconst.h"55 55 include "dimsoil.h" 56 56 include "temps.h" -
LMDZ5/trunk/libf/dynphy_lonlat/phylmd/iniphysiq_mod.F90
r2588 r2597 51 51 include "dimensions.h" 52 52 include "comvert.h" 53 include "comconst.h"54 53 include "iniprint.h" 55 54 include "temps.h" -
LMDZ5/trunk/libf/dynphy_lonlat/phylmd/init_ssrf_m.F90
r2399 r2597 9 9 USE grid_atob_m, ONLY: grille_m 10 10 USE ioipsl, ONLY: flininfo, flinopen, flinget, flinclo 11 USE comconst_mod, ONLY: im, pi 11 12 12 13 CHARACTER(LEN=256), PARAMETER :: icefname="landiceref.nc", icevar="landice" … … 17 18 include "paramet.h" 18 19 include "comgeom2.h" 19 include "comconst.h"20 20 21 21 CONTAINS -
LMDZ5/trunk/libf/dynphy_lonlat/phylmd/limit_netcdf.F90
r2576 r2597 70 70 USE inter_barxy_m, ONLY: inter_barxy 71 71 USE netcdf95, ONLY: nf95_def_var, nf95_put_att, nf95_put_var 72 USE comconst_mod, ONLY: pi 72 73 IMPLICIT NONE 73 74 !------------------------------------------------------------------------------- … … 83 84 include "logic.h" 84 85 include "comgeom2.h" 85 include "comconst.h"86 86 87 87 !--- INPUT NETCDF FILES NAMES -------------------------------------------------- -
LMDZ5/trunk/libf/dynphy_lonlat/phylmd/test_disvert_m.F90
r2345 r2597 15 15 use exner_hyb_m, only: exner_hyb 16 16 use vertical_layers_mod, only: ap,bp,preff 17 use comconst_mod, only: kappa, cpp 17 18 18 19 ! For llm: 19 20 include "dimensions.h" 20 21 ! For kappa, cpp:22 include "comconst.h"23 21 24 22 ! Local:
Note: See TracChangeset
for help on using the changeset viewer.