Changeset 3385 for trunk/LMDZ.MARS
- Timestamp:
- Jun 19, 2024, 6:24:13 PM (5 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3369 r3385 4671 4671 This should makes things (hopefully) clearer for users and also better 4672 4672 enforces a cleaner and clearer separation between dynamics and physics. 4673 4674 == 19/06/2024 == JBC 4675 Update of the "run.def.1d" file in the deftank. -
trunk/LMDZ.MARS/deftank/run.def.1d
r899 r3385 3 3 # Run parameters for the 1D 'testphys1d.e' model 4 4 #----------------------------------------------------------------------- 5 6 #### In/Output parameters 7 # 8 # Initialization with start files if they are present and writing of restart files 9 startfiles_1D=.false. 10 # Writing subsurface outputs 11 diagsoil=.false. 5 12 6 13 #### Time integration parameters … … 9 16 day0=0 10 17 # Initial local time (in hours, between 0 and 24) 11 time=0 18 time=0. 12 19 # Number of time steps per sol 13 20 day_step=48 14 21 # Number of sols to run 15 ndt = 10022 ndt = 669 16 23 17 24 #### Physical parameters 18 25 # 19 26 # Surface pressure (Pa) 20 psurf= 61027 psurf=610. 21 28 # Reference dust opacity at 610 Pa, in the visible (true tau~tauref*psurf/610) 22 29 tauvis=0.2 23 30 # latitude (in degrees) 24 latitude= 31 latitude=0. 25 32 # Albedo of bare ground 26 33 albedo=0.2 … … 32 39 v=0. 33 40 # Initial CO2 ice on the surface (kg.m-2) 34 co2ice=0 41 co2ice=0. 35 42 # Water ice cap on ground ? 36 43 watercaptag=.false. … … 38 45 # (for slope insolation scheme, when callslope=.true. in callphys.def) 39 46 # slope_inclination angle (deg) 0: horizontal, 90: vertical 40 slope_inclination= 20.047 slope_inclination=0. 41 48 # slope orientation (deg) 42 49 # 0 == Northward, 90 == Eastward, 180 == Southward, 270 == Westward 43 slope_orientation= 90.050 slope_orientation=0. 44 51 45 52 # hybrid vertical coordinate ? (.true. for hybrid and .false. for sigma levels) -
trunk/LMDZ.MARS/libf/phymars/dyn1d/init_testphys1d_mod.F90
r3369 r3385 5 5 contains 6 6 7 SUBROUTINE init_testphys1d(start1Dname,startfiname,therestart1D,therestartfi,ngrid,nlayer,odpref, &7 SUBROUTINE init_testphys1d(start1Dname,startfiname,therestart1D,therestartfi,ngrid,nlayer,odpref, & 8 8 nq,q,time,psurf,u,v,temp,ndt,ptif,pks,dttestphys,zqsat,dq,dqdyn,day0,day,gru,grv,w, & 9 9 play,plev,latitude,longitude,cell_area,atm_wat_profile,atm_wat_tau) … … 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, steps_per_sol, outputs_per_sol, 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, & … … 21 21 use physics_distribution_mod, only: init_physics_distribution 22 22 use comsoil_h, only: volcapa, nsoilmx, inertiesoil, inertiedat, layer, mlayer, flux_geo, tsoil, & 23 adsorption_soil, qsoil, igcm_h2o_ice_soil, porosity_reg, &23 adsorption_soil, qsoil, igcm_h2o_ice_soil, porosity_reg, & 24 24 ini_comsoil_h_slope_var, end_comsoil_h_slope_var, ads_massive_ice 25 25 use comvert_mod, only: ap, bp, aps, bps, pa, preff, presnivs, pseudoalt, scaleheight
Note: See TracChangeset
for help on using the changeset viewer.