Changeset 3118
- Timestamp:
- Nov 8, 2023, 4:34:28 PM (13 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3117 r3118 4317 4317 == 08/11/2023 == JBC 4318 4318 Correction of the case when startfiles1D = .true. and there is no "startfi.nc": the flags used in "init_testphys1d_mod.F90" were not correct so the model crashed and didn't create a "startfi.nc" from scratch as intended. 4319 4320 == 08/11/2023 == LL 4321 Following -r 3113, fixing newstart & startarchive by implementing the changes 4322 in phyredem1 and phyetat0, i.e., adding qsoil and nqsoil in the arguments of 4323 the subroutine -
trunk/LMDZ.MARS/libf/dynphy_lonlat/phymars/newstart.F
r3025 r3118 34 34 use comsoil_h, only: inertiedat, inertiesoil,layer, mlayer, 35 35 & nsoilmx,tsoil,ini_comsoil_h_slope_var, end_comsoil_h_slope_var, 36 & flux_geo 36 & flux_geo,qsoil,nqsoil 37 37 use control_mod, only: day_step, iphysiq, anneeref, planet_type 38 38 use geometry_mod, only: longitude,latitude,cell_area … … 465 465 fichnom = 'startfi.nc' 466 466 CALL phyetat0 (fichnom,tab0,Lmodif,nsoilmx,ngridmx,llm,nqtot, 467 & day_ini,time,tsurf,tsoil,albedo,emis,468 & q2,qsurf, tauscaling,totcloudfrac,467 & nqsoil,day_ini,time,tsurf,tsoil,albedo,emis, 468 & q2,qsurf,qsoil,tauscaling,totcloudfrac, 469 469 & wstar,watercap,perenial_co2ice, 470 470 & def_slope,def_slope_mean,subslope_dist) … … 2007 2007 & albfi,ithfi,def_slope, 2008 2008 & subslope_dist) 2009 call physdem1("restartfi.nc",nsoilmx,ngridmx,llm,nqtot, 2009 call physdem1("restartfi.nc",nsoilmx,ngridmx,llm,nqtot,nqsoil, 2010 2010 & dtphys,hour_ini, 2011 & tsurf,tsoil,inertiesoil,albedo,emis,q2,qsurf, 2011 & tsurf,tsoil,inertiesoil,albedo, 2012 & emis,q2,qsurf,qsoil, 2012 2013 & tauscaling,totcloudfrac,wstar,watercap, 2013 2014 & perenial_co2ice) -
trunk/LMDZ.MARS/libf/dynphy_lonlat/phymars/start2archive.F
r2999 r3118 20 20 21 21 use infotrac, only: infotrac_init, nqtot, tname 22 use comsoil_h, only: nsoilmx, inertiedat, inertiesoil 22 use comsoil_h, only: nsoilmx, inertiedat, inertiesoil, 23 & nqsoil, qsoil 23 24 use surfdat_h, only: ini_surfdat_h, qsurf,watercaptag 24 25 use comsoil_h, only: ini_comsoil_h … … 186 187 allocate(subslope_distS(ip1jmp1,nslope)) 187 188 188 CALL phyetat0 (fichnom,0,Lmodif,nsoilmx,ngridmx,llm,nqtot,189 & day_ini_fi,timefi,tsurf,tsoil,albedo,emis,q2,qsurf, 189 CALL phyetat0(fichnom,0,Lmodif,nsoilmx,ngridmx,llm,nqtot,nqsoil, 190 & day_ini_fi,timefi,tsurf,tsoil,albedo,emis,q2,qsurf,qsoil, 190 191 & tauscaling,totcloudfrac,wstar,watercap,perenial_co2ice, 191 192 & def_slope, def_slope_mean,subslope_dist)
Note: See TracChangeset
for help on using the changeset viewer.