Ignore:
Timestamp:
Apr 3, 2026, 4:34:51 PM (5 weeks ago)
Author:
jbclement
Message:

PEM:

  • Deletion of 'flux_ssice' ('zqdsdif_tot') from the "startfi.nc" as it is not needed.
  • Using the yearly average flux for the sublimating subsurface ice instead of the value at last timestep.
  • Keeping a clear separation between the subsurface ice flux and the surface ice tendency.
  • Making sure that subsurface ice depth is well given to the PCM at the end of the PEM (ice table VS layering).

JBC

Location:
trunk/LMDZ.MARS/libf/phymars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/phyetat0_mod.F90

    r4166 r4170  
    3737use comsoil_h,           only: flux_geo
    3838use comslope_mod,        only: nslope, major_slope
    39 use paleoclimate_mod,    only: paleoclimate, h2oice_depth, co2ice_depth, coef_ssdif, zdqsdif_ssi_tot
     39use paleoclimate_mod,    only: paleoclimate, h2oice_depth, co2ice_depth, coef_ssdif
    4040use comcstfi_h,          only: pi
    4141use geometry_mod,        only: latitude
     
    914914     h2oice_depth(:,:) = -999.
    915915   endif
    916    
    917 ! Total flux with SSI
    918    call get_field("flux_ssice",zdqsdif_ssi_tot,found,indextime)
    919    if (.not.found) then
    920      write(*,*) "phyetat0: Failed loading <flux_ssice> : ", &
    921                           "<flux_ssice> is set as 0 (no subsurface ice)"
    922      zdqsdif_ssi_tot(:,:) = 0.
    923    endif
    924916
    925917! Diffusion coeficent
     
    950942    h2oice_depth(:,:) = -999.
    951943    co2ice_depth(:,:) = -999.
    952     zdqsdif_ssi_tot(:,:) = 0.
    953944    coef_ssdif(:,:) = 4.e-4
    954945    perennial_co2ice(:,:) = 0.
     
    958949   h2oice_depth(:,:) = -999.
    959950   co2ice_depth(:,:) = -999.
    960    zdqsdif_ssi_tot(:,:) = 0.
    961951   coef_ssdif(:,:) = 4.e-4
    962952   perennial_co2ice(:,:) = 0.
  • trunk/LMDZ.MARS/libf/phymars/phyredem.F90

    r4160 r4170  
    210210  use callkeys_mod,        only: calltherm, dustinjection, calllott_nonoro
    211211  use callkeys_mod, only: CLFvarying
    212   use paleoclimate_mod,    only: paleoclimate, h2oice_depth, co2ice_depth, coef_ssdif, zdqsdif_ssi_tot
     212  use paleoclimate_mod,    only: paleoclimate, h2oice_depth, co2ice_depth, coef_ssdif
    213213
    214214  implicit none
     
    390390    call put_field("h2oice_depth","Depth of the shallowest H2O ice layer",h2oice_depth)
    391391    call put_field("co2ice_depth","Depth of the shallowest CO2 ice layer",co2ice_depth)
    392     call put_field("flux_ssice","Total flux exchanged with subsurface water ice",zdqsdif_ssi_tot)
    393392    call put_field("coef_ssdif","Diffusion coefficent for subsurface water",coef_ssdif)
    394393  endif
Note: See TracChangeset for help on using the changeset viewer.