Changeset 4071 for trunk/LMDZ.COMMON/libf/evolution/glaciers.F90
- Timestamp:
- Feb 16, 2026, 10:28:56 AM (12 days ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/glaciers.F90 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/glaciers.F90
r4065 r4071 18 18 ! DEPENDENCIES 19 19 ! ------------ 20 use numerics, only: dp, di, k4 20 use numerics, only: dp, di, k4, minieps 21 21 22 22 ! DECLARATION … … 108 108 ! ARGUMENTS 109 109 ! --------- 110 real(dp), dimension(:,:), intent(in) :: vmr_co2_PEM ! Grid points x Time field : VMR of CO2 in the first layer [mol/mol]111 real(dp), dimension(:,:), intent(in) :: ps_PCM ! Grid points x Time field: surface pressure given by the PCM [Pa]112 real(dp), intent(in) :: ps_avg_glob_ini ! Global averaged surface pressure at the beginning [Pa]113 real(dp), intent(in) :: ps_avg_global ! Global averaged surface pressure during the PEM iteration [Pa]114 real(dp), dimension(:,:), intent(inout) :: co2ice ! Grid points x Slope field: CO2 ice on the subgrid slopes [kg/m^2]115 logical(k4), dimension(:,:), intent(out) :: is_co2ice_flow ! Flag to see if there is flow on the subgrid slopes110 real(dp), dimension(:,:), intent(in) :: vmr_co2_PEM ! Grid points x Time field : VMR of CO2 in the first layer [mol/mol] 111 real(dp), dimension(:,:), intent(in) :: ps_PCM ! Grid points x Time field: surface pressure given by the PCM [Pa] 112 real(dp), intent(in) :: ps_avg_glob_ini ! Global averaged surface pressure at the beginning [Pa] 113 real(dp), intent(in) :: ps_avg_global ! Global averaged surface pressure during the PEM iteration [Pa] 114 real(dp), dimension(:,:), intent(inout) :: co2ice ! Grid points x Slope field: CO2 ice on the subgrid slopes [kg/m^2] 115 logical(k4), dimension(:,:), intent(out) :: is_co2ice_flow ! Flag to see if there is flow on the subgrid slopes 116 116 117 117 ! LOCAL VARIABLES … … 301 301 iaval = islope + 1 302 302 end if 303 do while (iaval /= iflat .and. subslope_dist(ig,iaval) == 0)303 do while (iaval /= iflat .and. abs(subslope_dist(ig,iaval)) < minieps) 304 304 if (iaval > iflat) then 305 305 iaval = iaval - 1
Note: See TracChangeset
for help on using the changeset viewer.
