Ignore:
Timestamp:
Oct 29, 2024, 2:53:13 PM (4 weeks ago)
Author:
evos
Message:

we added the option to use NS dynamical subsurface ice in the model to more realisticly calculate the amount of ice in the subsurface and therfore the subsurface thermal inertia

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/fast_modules.f90

    r3470 r3486  
    249249   end subroutine dyn_ss_ice_m
    250250  end interface
     251
     252    interface
     253      subroutine dyn_ss_ice_m_wrapper(ngrid,nsoil,tHIn,p0,pfrost,T_in,ssi_depth_in,porefill_in,porefill,ssi_depth)
     254           implicit none
     255           integer, intent(IN) :: nsoil,ngrid
     256           real(8),  intent(IN) :: thIn(ngrid),ssi_depth_in(ngrid)
     257           real(8),  intent(IN) :: p0(ngrid), pfrost(ngrid)
     258           real(8),  intent(IN) :: T_in(nsoil,ngrid)
     259           real(8), intent(OUT) :: porefill(nsoil,ngrid)
     260           real(8), intent(IN) :: porefill_in(nsoil,ngrid)
     261           real(8), intent(OUT) :: ssi_depth(ngrid)
     262   end subroutine dyn_ss_ice_m_wrapper
     263  end interface
     264
    251265end module allinterfaces
Note: See TracChangeset for help on using the changeset viewer.