Ignore:
Timestamp:
Mar 16, 2026, 6:09:43 PM (3 weeks ago)
Author:
jbclement
Message:

PEM:
Relocate Mars-specific parameters out of "planet" module and into the modules that own their physics domain.
JBC

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/planet.F90

    r4074 r4135  
    55!
    66! DESCRIPTION
    7 !     Mars-specific constants kept hard-coded for the PEM.
     7!     Legacy compatibility module for planet-specific definitions.
    88!
    99! AUTHORS & DATE
     
    1515!-----------------------------------------------------------------------
    1616
    17 ! DEPENDENCIES
    18 ! ------------
    19 use numerics, only: dp
    20 
    2117! DECLARATION
    2218! -----------
    2319implicit none
    2420
    25 ! PARAMETERS
    26 ! ----------
    27 ! Molecular masses for CO2, H2O and non condensible gaz, following Franz et al. 2017
    28 real(dp), parameter :: m_co2 = 44.01e-3_dp               ! CO2 molecular mass [kg/mol]
    29 real(dp), parameter :: m_noco2 = 33.37e-3_dp             ! Non condensible mol mass [kg/mol]
    30 real(dp), parameter :: m_h2o = 18.01528e-3_dp            ! Molecular weight of H2O [kg/mol]
    31 real(dp), parameter :: A = (1._dp/m_co2 - 1._dp/m_noco2) ! Intermediate parameter for computation
    32 real(dp), parameter :: B = 1._dp/m_noco2                 ! Intermediate parameter for computation
    33 
    34 ! Thermal inertia for breccia and bedrock following Mellon et al. 2000; Wood et al. 2008
    35 real(dp), parameter :: TI_breccia = 750._dp  ! Thermal inertia of Breccia following Wood 2009 [SI]
    36 real(dp), parameter :: TI_bedrock = 2300._dp ! Thermal inertia of Bedrock following Wood 2009 [SI]
    37 
    38 ! Coefficient for Clapeyron law for psat (psat = exp(beta/Th2o + alpha)), following Murphy and Koop 2005
    39 real(dp), parameter :: alpha_clap_h2o = 28.9074_dp ! Uniteless, Murphy and Koop 2005
    40 real(dp), parameter :: beta_clap_h2o = -6143.7_dp  ! Kelvin, Murphy and Koop 2005
    41 
    42 ! Coefficient for Clapeyron law for CO2 condensation temperature (Tco2 = beta/(alpha-log(vmr)),following James et al. 1992
    43 real(dp), parameter :: alpha_clap_co2 = 23.3494_dp ! Unitless, James et al. 1992
    44 real(dp), parameter :: beta_clap_co2 = 3182.48_dp  ! Kelvin, James et al. 1992
    45 
    46 ! Density of the regolith (Zent et al., 1995; Buhler and Piqueux 2021)
    47 real(dp), parameter :: rho_regolith = 2000._dp ! kg/m^3
    48 
    49 ! Average thermal inertia of the surface, breccia, bedrock, following Mellon et al., 2000., Wood et al., 2008
    50 real(dp), parameter :: TI_regolith_avg = 250._dp ! Averaged of the observed thermal inertia for regolith following Mellon et al., 2000[SI]
    51 
    52 ! Porosity of the soil
    53 real(dp), parameter :: porosity = 0.4_dp ! porosity of the martian soil, correspond to the value for a random loose packing of monodiperse sphere (Scott, 1960)
    54 
    55 ! Stefan Boltzmann constant
    56 real(dp), parameter :: sigmaB = 5.678e-8_dp
    57 
    58 ! Latent heat of CO2
    59 real(dp), parameter :: Lco2 =  5.71e5_dp ! Pilorget and Forget 2016
    60 
    61 ! Current average pressure [Pa]
    62 real(dp), parameter :: P610 = 610._dp
     21! NOTE
     22! ----
    6323
    6424contains
Note: See TracChangeset for help on using the changeset viewer.