Changeset 3314 for trunk


Ignore:
Timestamp:
Apr 24, 2024, 11:49:17 AM (7 months ago)
Author:
slebonnois
Message:

newstart add methane tanks

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/libf/dynphy_lonlat/phytitan/newstart.F

    r2366 r3314  
    4141      use exner_hyb_m, only: exner_hyb
    4242      use tracer_h
     43      use geometry_mod, only: latitude_deg
    4344      implicit none
    4445
     
    10311032
    10321033c================================================================
    1033 c   Initialisation for methane surface tank (added by JVO 2017)
     1034c   Initialisation for methane surface tank
     1035c   Added by JVO 2017 (constant across the entire surface)
     1036c   Modified by BdBdT 2024 (lakes at the poles)
    10341037c================================================================
    10351038      DO ig=1, ngridmx
    1036          tankCH4(ig)=2.0
     1039        if (REAL(latitude_deg(ig)) .ge. 70.0) then
     1040          tankCH4(ig) = 200.0 ! [m]
     1041        else if (REAL(latitude_deg(ig)) .le. -70.0) then
     1042          tankCH4(ig) = 50.0  ! [m]
     1043        else
     1044          tankCH4(ig) = 0.0   ! [m]
     1045        endif
    10371046      ENDDO
    10381047
Note: See TracChangeset for help on using the changeset viewer.