- Timestamp:
- Jun 12, 2024, 11:00:16 AM (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/dyn1d/init_testphys1d_mod.F90
r3316 r3369 11 11 use ioipsl_getincom, only: getin ! To use 'getin' 12 12 use comcstfi_h, only: pi, rad, omeg, g, mugaz, rcp, r, cpp 13 use time_phylmdz_mod, only: daysec, day_step, ecritphy, iphysiq13 use time_phylmdz_mod, only: daysec, steps_per_sol, outputs_per_sol, iphysiq 14 14 use planete_h, only: year_day, periheli, aphelie, peri_day, obliquit, emin_turb, lmixmin 15 15 use surfdat_h, only: albedodat, z0_default, z0, emissiv, emisice, albedice, iceradius, dtemisice, & … … 287 287 nsoil = nsoilmx 288 288 289 day_step = 48 ! Default value for day_step 289 steps_per_sol = 48 ! Default value for day_step (old name for steps_per_sol) 290 290 write(*,*)'Number of time steps per sol?' 291 call getin("day_step", day_step)292 write(*,*) " day_step = ",day_step293 294 ecritphy = day_step ! Default value for ecritphy, output every time step 291 call getin("day_step",steps_per_sol) 292 write(*,*) " steps_per_sol (aka day_step) = ",steps_per_sol 293 294 outputs_per_sol = steps_per_sol ! Default value for outputs_per_sol 295 295 296 296 ndt = 10 ! Default value for ndt … … 300 300 301 301 dayn = day0 + ndt 302 ndt = ndt* day_step303 dttestphys = daysec/ day_step302 ndt = ndt*steps_per_sol 303 dttestphys = daysec/steps_per_sol 304 304 305 305 ! Imposed surface pressure
Note: See TracChangeset
for help on using the changeset viewer.