Changeset 1263 for LMDZ4/branches/LMDZ4-dev/libf/dyn3dpar
- Timestamp:
- Nov 17, 2009, 2:00:14 PM (15 years ago)
- Location:
- LMDZ4/branches/LMDZ4-dev/libf/dyn3dpar
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4-dev/libf/dyn3dpar/create_etat0_limit.F
r1222 r1263 9 9 USE mod_phys_lmdz_para 10 10 USE mod_const_mpi 11 USE phys_state_var_mod12 11 USE infotrac 13 12 #ifdef CPP_IOIPSL … … 38 37 #include "indicesol.h" 39 38 #include "control.h" 40 #include "clesphys.h"41 39 REAL :: masque(iip1,jjp1) 42 40 ! REAL :: pctsrf(iim*(jjm-1)+2, nbsrf) … … 62 60 & for 1 process and 1 task') 63 61 ENDIF 64 CALL phys_state_var_init65 62 call InitComgeomphy 66 63 67 64 #ifdef CPP_IOIPSL 68 65 call ioconf_calendar('360d') -
LMDZ4/branches/LMDZ4-dev/libf/dyn3dpar/etat0_netcdf.F
r1227 r1263 15 15 USE filtreg_mod 16 16 use regr_lat_time_climoz_m, only: regr_lat_time_climoz 17 use conf_phys_m, only: conf_phys 17 18 #endif 18 19 !#endif of #ifdef CPP_EARTH … … 132 133 REAL :: bl95_b0, bl95_b1 133 134 real :: fact_cldcon, facttemps,ratqsbas,ratqshaut 135 real :: tau_ratqs 134 136 integer :: iflag_cldcon 135 137 integer :: iflag_ratqs … … 142 144 REAL :: solarlong0 143 145 real :: seuil_inversion 144 logical read_climoz ! read ozone climatology 146 147 integer read_climoz ! read ozone climatology 148 C Allowed values are 0, 1 and 2 149 C 0: do not read an ozone climatology 150 C 1: read a single ozone climatology that will be used day and night 151 C 2: read two ozone climatologies, the average day and night 152 C climatology and the daylight climatology 145 153 146 154 ! … … 170 178 & fact_cldcon, facttemps,ok_newmicro,iflag_radia, & 171 179 & iflag_cldcon, & 172 & iflag_ratqs,ratqsbas,ratqshaut, 180 & iflag_ratqs,ratqsbas,ratqshaut,tau_ratqs, & 173 181 & ok_ade, ok_aie, aerosol_couple, & 174 182 & flag_aerosol, new_aod, & … … 187 195 CALL inigeom() 188 196 189 CALL inifilr()190 197 ! Initialisation pour traceurs 191 198 call infotrac_init 192 199 ALLOCATE(q3d(iip1, jjp1, llm, nqtot)) 193 ! CALL phys_state_var_init() 200 201 CALL inifilr() 202 CALL phys_state_var_init(read_climoz) 194 203 ! 195 204 latfi(1) = ASIN(1.0) … … 416 425 ! 417 426 418 if (read_climoz) call regr_lat_time_climoz ! ozone climatology 427 ! Ozone climatology: 428 if (read_climoz >= 1) call regr_lat_time_climoz(read_climoz) 419 429 420 430 varname = 'tsol'
Note: See TracChangeset
for help on using the changeset viewer.