Ignore:
Timestamp:
Apr 2, 2026, 2:54:31 PM (8 days ago)
Author:
jbclement
Message:

Mars PCM:
Small correction regarding old fixed Fortran formatting following r4160 + Add missing 'watercaptag' field in "field_def_physics.xml" for XIOS following r4161.
JBC

File:
1 edited

Legend:

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

    r4163 r4166  
    911911   if (.not.found) then
    912912     write(*,*) "phyetat0: Failed loading <h2oice_depth> : ", &
    913                           "<h2oice_depth> is set as -1 (no subsurface ice)"
    914      h2oice_depth(:,:) = -1.
     913                          "<h2oice_depth> is set as -999 (no subsurface ice)"
     914     h2oice_depth(:,:) = -999.
    915915   endif
    916916   
     
    919919   if (.not.found) then
    920920     write(*,*) "phyetat0: Failed loading <flux_ssice> : ", &
    921                           "<flux_ssice> is set as -1 (no subsurface ice)"
     921                          "<flux_ssice> is set as 0 (no subsurface ice)"
    922922     zdqsdif_ssi_tot(:,:) = 0.
    923923   endif
     
    935935   if (.not.found) then
    936936     write(*,*) "phyetat0: Failed loading <co2ice_depth> : ", &
    937                           "<co2ice_depth> is set as -1 (no subsurface ice)"
    938      co2ice_depth(:,:) = -1.
     937                          "<co2ice_depth> is set as -999 (no subsurface ice)"
     938     co2ice_depth(:,:) = -999.
    939939   endif
    940940
     
    948948    endif ! not found
    949949  else ! no startphy_file
    950     h2oice_depth(:,:) = -1.
    951     co2ice_depth(:,:) = -1.
     950    h2oice_depth(:,:) = -999.
     951    co2ice_depth(:,:) = -999.
    952952    zdqsdif_ssi_tot(:,:) = 0.
    953953    coef_ssdif(:,:) = 4.e-4
     
    956956  endif !startphy_file
    957957else
    958    h2oice_depth(:,:) = -1.
    959    co2ice_depth(:,:) = -1.
     958   h2oice_depth(:,:) = -999.
     959   co2ice_depth(:,:) = -999.
    960960   zdqsdif_ssi_tot(:,:) = 0.
    961961   coef_ssdif(:,:) = 4.e-4
Note: See TracChangeset for help on using the changeset viewer.