Changeset 3385 for trunk/LMDZ.MARS


Ignore:
Timestamp:
Jun 19, 2024, 6:24:13 PM (5 months ago)
Author:
jbclement
Message:

Mars PCM:
Update of the "run.def.1d" file in the deftank.
JBC

Location:
trunk/LMDZ.MARS
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/changelog.txt

    r3369 r3385  
    46714671This should makes things (hopefully) clearer for users and also better
    46724672enforces a cleaner and clearer separation between dynamics and physics.
     4673
     4674== 19/06/2024 == JBC
     4675Update of the "run.def.1d" file in the deftank.
  • trunk/LMDZ.MARS/deftank/run.def.1d

    r899 r3385  
    33# Run parameters for the 1D 'testphys1d.e' model                                         
    44#-----------------------------------------------------------------------                                         
     5
     6#### In/Output parameters
     7#
     8# Initialization with start files if they are present and writing of restart files
     9startfiles_1D=.false.
     10# Writing subsurface outputs
     11diagsoil=.false.
    512
    613#### Time integration parameters
     
    916day0=0
    1017# Initial local time (in hours, between 0 and 24)
    11 time=0
     18time=0.
    1219# Number of time steps per sol
    1320day_step=48
    1421# Number of sols to run
    15 ndt = 100
     22ndt = 669
    1623
    1724#### Physical parameters
    1825#
    1926# Surface pressure (Pa)
    20 psurf= 610
     27psurf=610.
    2128# Reference dust opacity at 610 Pa, in the visible (true tau~tauref*psurf/610)
    2229tauvis=0.2
    2330# latitude (in degrees)
    24 latitude= 0.
     31latitude=0.
    2532# Albedo of bare ground
    2633albedo=0.2
     
    3239v=0.
    3340# Initial CO2 ice on the surface (kg.m-2)
    34 co2ice=0
     41co2ice=0.
    3542# Water ice cap on ground ?
    3643watercaptag=.false.
     
    3845# (for slope insolation scheme, when callslope=.true. in callphys.def)
    3946# slope_inclination angle (deg) 0: horizontal, 90: vertical
    40 slope_inclination=20.0
     47slope_inclination=0.
    4148# slope orientation (deg)
    4249# 0 == Northward, 90 == Eastward, 180 == Southward, 270 == Westward
    43 slope_orientation=90.0
     50slope_orientation=0.
    4451
    4552# hybrid vertical coordinate ? (.true. for hybrid and .false. for sigma levels)
  • trunk/LMDZ.MARS/libf/phymars/dyn1d/init_testphys1d_mod.F90

    r3369 r3385  
    55contains
    66
    7 SUBROUTINE init_testphys1d(start1Dname,startfiname,therestart1D,therestartfi,ngrid,nlayer,odpref, &
     7SUBROUTINE init_testphys1d(start1Dname,startfiname,therestart1D,therestartfi,ngrid,nlayer,odpref,               &
    88                           nq,q,time,psurf,u,v,temp,ndt,ptif,pks,dttestphys,zqsat,dq,dqdyn,day0,day,gru,grv,w,  &
    99                           play,plev,latitude,longitude,cell_area,atm_wat_profile,atm_wat_tau)
     
    1111use ioipsl_getincom,          only: getin ! To use 'getin'
    1212use comcstfi_h,               only: pi, rad, omeg, g, mugaz, rcp, r, cpp
    13 use time_phylmdz_mod, only: daysec, steps_per_sol, outputs_per_sol, iphysiq
     13use time_phylmdz_mod,         only: daysec, steps_per_sol, outputs_per_sol, iphysiq
    1414use planete_h,                only: year_day, periheli, aphelie, peri_day, obliquit, emin_turb, lmixmin
    1515use surfdat_h,                only: albedodat, z0_default, z0, emissiv, emisice, albedice, iceradius, dtemisice,      &
     
    2121use physics_distribution_mod, only: init_physics_distribution
    2222use 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,                   &
    2424                                    ini_comsoil_h_slope_var, end_comsoil_h_slope_var, ads_massive_ice
    2525use comvert_mod,              only: ap, bp, aps, bps, pa, preff, presnivs, pseudoalt, scaleheight
Note: See TracChangeset for help on using the changeset viewer.