Changeset 2840 for trunk/LMDZ.MARS/libf/phymars/vdifc_mod.F
- Timestamp:
- Dec 2, 2022, 7:59:07 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.