Changeset 2557
- Timestamp:
- Aug 31, 2021, 8:21:11 AM (3 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r2553 r2557 1683 1683 Chemistry: one input file instead of three for the chemical network 1684 1684 Automatic detection of mono/bi-molecular or quadratic reactions 1685 1686 == 31/08/2021 == GM 1687 Fix in phyetat0, only call soil_settings if flag callsoil is true. -
trunk/LMDZ.GENERIC/libf/phystd/phyetat0_mod.F90
r2299 r2557 21 21 inquire_dimension, inquire_dimension_length 22 22 use slab_ice_h, only: noceanmx 23 use callkeys_mod, only: CLFvarying,surfalbedo,surfemis 23 use callkeys_mod, only: CLFvarying,surfalbedo,surfemis, callsoil 24 24 use nonoro_gwd_ran_mod, only: du_nonoro_gwd, dv_nonoro_gwd, & 25 25 east_gwstress, west_gwstress … … 388 388 ! Call to soil_settings, in order to read soil temperatures, 389 389 ! as well as thermal inertia and volumetric heat capacity 390 call soil_settings(nid_start,ngrid,nsoil,tsurf,tsoil,indextime) 390 if (callsoil) then 391 call soil_settings(nid_start,ngrid,nsoil,tsurf,tsoil,indextime) 392 endif 391 393 endif ! of if (startphy_file) 392 394
Note: See TracChangeset
for help on using the changeset viewer.