Changeset 2840 for trunk/LMDZ.MARS
- Timestamp:
- Dec 2, 2022, 7:59:07 PM (2 years ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/README
r2834 r2840 3830 3830 Add an example of setup in LMDZ.MARS/util/compile to compile utilitary programs 3831 3831 on Irene-Rome supercomputer. 3832 3833 == 02/12/2022 == JN 3834 Add "surf_h2o_lh" output. This is the latent heat term from ground water ice 3835 sublimation / condensation in W.m-2 3836 Also corrected units of shortwave & longwave heat rates in writediagfi -
trunk/LMDZ.MARS/libf/phymars/physiq_mod.F
r2830 r2840 3025 3025 c & zstress) 3026 3026 call WRITEDIAGFI(ngrid,'sw_htrt','sw heat. rate', 3027 & ' w.m-2',3,zdtsw)3027 & 'K/s',3,zdtsw) 3028 3028 call WRITEDIAGFI(ngrid,'lw_htrt','lw heat. rate', 3029 & ' w.m-2',3,zdtlw)3029 & 'K/s',3,zdtlw) 3030 3030 call writediagfi(ngrid,"local_time","Local time", 3031 3031 & 'sol',2,local_time) -
trunk/LMDZ.MARS/libf/phymars/vdifc_mod.F
r2826 r2840 136 136 REAL ztsrf(ngrid) ! temporary surface temperature in tsub 137 137 REAL zdtsrf(ngrid) ! surface temperature tendancy in tsub 138 REAL surf_h2o_lh(ngrid) ! Surface h2o latent heat flux 139 REAL zsurf_h2o_lh(ngrid) ! Tsub surface h2o latent heat flux 138 140 139 141 c For latent heat release from ground water ice sublimation … … 242 244 pdtsrf(1:ngrid)=0 243 245 zdtsrf(1:ngrid)=0 246 surf_h2o_lh(1:ngrid)=0 247 zsurf_h2o_lh(1:ngrid)=0 244 248 pdqdif(1:ngrid,1:nlay,1:nq)=0 245 249 pdqsdif(1:ngrid,1:nq)=0 … … 959 963 & zdqsdif(ig))*subtimestep 960 964 965 c Monitoring instantaneous latent heat flux in W.m-2 : 966 zsurf_h2o_lh(ig) = zsurf_h2o_lh(ig)+ 967 & (zdtsrf(ig)*pcapcal(ig)) 968 & *subtimestep 961 969 962 970 c We ensure that surface temperature can't rise above the solid domain if there … … 975 983 c (btw could also compute the post timestep temp and ice 976 984 c by simply adding the subtimestep trend instead of this) 985 surf_h2o_lh(ig)= zsurf_h2o_lh(ig)/ptimestep 977 986 pdtsrf(ig)= (ztsrf(ig) - 978 987 & ptsrf(ig))/ptimestep … … 1048 1057 c --------- end of tracers ---------------------------- 1049 1058 1059 call WRITEDIAGFI(ngrid,"surf_h2o_lh", 1060 & "Ground ice latent heat flux", 1061 & "W.m-2",2,surf_h2o_lh(:)) 1050 1062 1051 1063 C Diagnostic output for HDO
Note: See TracChangeset
for help on using the changeset viewer.