Changeset 3314 for trunk/LMDZ.TITAN
- Timestamp:
- Apr 24, 2024, 11:49:17 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/dynphy_lonlat/phytitan/newstart.F
r2366 r3314 41 41 use exner_hyb_m, only: exner_hyb 42 42 use tracer_h 43 use geometry_mod, only: latitude_deg 43 44 implicit none 44 45 … … 1031 1032 1032 1033 c================================================================ 1033 c Initialisation for methane surface tank (added by JVO 2017) 1034 c Initialisation for methane surface tank 1035 c Added by JVO 2017 (constant across the entire surface) 1036 c Modified by BdBdT 2024 (lakes at the poles) 1034 1037 c================================================================ 1035 1038 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 1037 1046 ENDDO 1038 1047
Note: See TracChangeset
for help on using the changeset viewer.