Changeset 3728
- Timestamp:
- Apr 18, 2025, 2:53:06 PM (2 months ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/changelog.txt
r3725 r3728 2072 2072 This should makes things (hopefully) clearer for users and also better 2073 2073 enforces a cleaner and clearer separation between dynamics and physics. 2074 2075 == 18/04/2025 == EM 2076 Minor fix in tabfi: the physics time step stored in the startfi file should 2077 not overwrite the real value of dtphys (computed in and passed by the dynamics). -
trunk/LMDZ.GENERIC/libf/phystd/tabfi_mod.F90
r3663 r3728 87 87 LOGICAL :: found 88 88 CHARACTER(len=5) :: modname="tabfi" 89 real :: cntrl_daysec, cntrl_dtphys 89 90 90 91 write(*,*)"tabfi: nid=",nid," tab0=",tab0," Lmodif=",Lmodif … … 181 182 rcp = tab_cntrl(tab0+9) 182 183 cpp=(8.314463/(mugaz/1000.0))/rcp 183 daysec = tab_cntrl(tab0+10) 184 dtphys = tab_cntrl(tab0+11) 184 ! daysec and dtphys are already set by inifis 185 cntrl_daysec = tab_cntrl(tab0+10) 186 cntrl_dtphys = tab_cntrl(tab0+11) 185 187 ! Informations about planet for the physics only 186 188 year_day = tab_cntrl(tab0+14) … … 201 203 ! soil properties 202 204 volcapa = tab_cntrl(tab0+35) ! volumetric heat capacity 205 ! warn user if there has been a change in daysec or dtphys 206 if (daysec.ne.cntrl_daysec) then 207 write(*,*) modname//" Warning: lenght of day daysec changed from ", & 208 cntrl_daysec," to ",daysec 209 endif 210 if (dtphys.ne.cntrl_dtphys) then 211 write(*,*) modname//" Warning: time step dtphys changed from ", & 212 cntrl_dtphys," to ",dtphys 213 endif 203 214 !----------------------------------------------------------------------- 204 215 ! Save some constants for later use (as routine arguments)
Note: See TracChangeset
for help on using the changeset viewer.