Changeset 4170 for trunk/LMDZ.COMMON/libf/evolution/planet.F90
- Timestamp:
- Apr 3, 2026, 4:34:51 PM (10 days ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/planet.F90 (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/planet.F90
r4157 r4170 38 38 39 39 ! Ice-related: 40 real(dp), dimension(:,:), allocatable :: h2o_ice ! H2O ice [kg .m-2]41 real(dp), dimension(:,:), allocatable :: co2_ice ! CO2 ice [kg .m-2]40 real(dp), dimension(:,:), allocatable :: h2o_ice ! H2O ice [kg/m2] 41 real(dp), dimension(:,:), allocatable :: co2_ice ! CO2 ice [kg/m2] 42 42 real(dp) :: h2oice_sublim_coverage_ini ! Initial surface area of sublimating H2O ice [m2] 43 43 real(dp) :: co2ice_sublim_coverage_ini ! Initial surface area of sublimating CO2 ice [m2] … … 73 73 real(dp), dimension(:,:), allocatable :: icetable_depth_old ! Old depth of the ice table [m] 74 74 real(dp), dimension(:), allocatable :: delta_icetable ! Total mass of the H2O exchanged with the ice table [kg] 75 real(dp), dimension(:,:), allocatable :: flux_ssice_avg ! Average of total flux exchanged with subsurface ice [kg/m2/y] 75 76 76 77 ! Tracer-related: … … 153 154 allocate(q_h2o_ts(ngrid,nday)) 154 155 allocate(q_co2_ts(ngrid,nday)) 156 allocate(flux_ssice_avg(ngrid,nslope)) 155 157 156 158 ps_avg(:) = 0._dp … … 163 165 q_h2o_ts(:,:) = 0._dp 164 166 q_co2_ts(:,:) = 0._dp 167 flux_ssice_avg(:,:) = 0._dp 165 168 166 169 END SUBROUTINE allocate_xios_state … … 422 425 if (allocated(d_h2oice)) deallocate(d_h2oice) 423 426 if (allocated(layerings_map)) deallocate(layerings_map) 427 if (allocated(flux_ssice_avg)) deallocate(flux_ssice_avg) 424 428 425 429 END SUBROUTINE end_planet
Note: See TracChangeset
for help on using the changeset viewer.
