Changeset 4071 for trunk/LMDZ.COMMON/libf/evolution/frost.F90
- Timestamp:
- Feb 16, 2026, 10:28:56 AM (2 weeks ago)
- File:
-
- 1 edited
-
trunk/LMDZ.COMMON/libf/evolution/frost.F90 (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/frost.F90
r4065 r4071 164 164 165 165 !======================================================================= 166 SUBROUTINE compute_frost4PCM(min _h2ofrost,min_co2frost)166 SUBROUTINE compute_frost4PCM(minPCM_h2ofrost,minPCM_co2frost) 167 167 !----------------------------------------------------------------------- 168 168 ! NAME … … 190 190 ! ARGUMENTS 191 191 ! --------- 192 real(dp), dimension(:,:), intent(in) :: min _h2ofrost, min_co2frost192 real(dp), dimension(:,:), intent(in) :: minPCM_h2ofrost, minPCM_co2frost 193 193 194 194 ! CODE … … 198 198 h2o_frost4PCM(:,:) = 0._dp 199 199 co2_frost4PCM(:,:) = 0._dp 200 where (h2ofrost_PCM(:,:) > 0._dp) h2o_frost4PCM(:,:) = h2ofrost_PCM(:,:) - min _h2ofrost(:,:)201 where (co2frost_PCM(:,:) > 0._dp) co2_frost4PCM(:,:) = co2frost_PCM(:,:) - min _co2frost(:,:)200 where (h2ofrost_PCM(:,:) > 0._dp) h2o_frost4PCM(:,:) = h2ofrost_PCM(:,:) - minPCM_h2ofrost(:,:) 201 where (co2frost_PCM(:,:) > 0._dp) co2_frost4PCM(:,:) = co2frost_PCM(:,:) - minPCM_co2frost(:,:) 202 202 203 203 END SUBROUTINE compute_frost4PCM
Note: See TracChangeset
for help on using the changeset viewer.
