Changeset 3107
- Timestamp:
- Oct 26, 2023, 11:57:47 AM (13 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3098 r3107 4273 4273 Prettyfied solarlong.F and made it a module. Likewise for conf_phys.F 4274 4274 4275 Some code tidying: 4276 Made pi in module comcstfi_h a parameter (and not a variable recomputed at 4277 various points by various routines) and added module routine init_comcstfi_h 4278 to cleanly initialize module variables. 4279 Moved iniorbit.F to be a module routine of planete_h since it initializes 4280 (some of ) the module variables it contains. 4281 4275 4282 == 23/10/2023 == EV 4276 4283 We added the to module vdifc the possibily of subsurface intercation, mostly to have the option of buried glaicer that can lose ice and create polar layers. … … 4288 4295 qeq, SSI water vapor quantity 4289 4296 4290 4291 Some code tidying: 4292 Made pi in module comcstfi_h a parameter (and not a variable recomputed at 4293 various points by various routines) and added module routine init_comcstfi_h 4294 to cleanly initialize module variables. 4295 Moved iniorbit.F to be a module routine of planete_h since it initializes 4296 (some of ) the module variables it contains. 4297 == 26/10/2023 == JBC 4298 Few small fixes following r3098. -
trunk/LMDZ.MARS/deftank/field_def_physics_mars.xml
r3052 r3107 293 293 294 294 <field id="fluxtop_lw" 295 long_name="Longwave radiation to spaceat the top of the atmosphere"295 long_name="Longwave radiation at the top of the atmosphere" 296 296 unit="W.m-2" /> 297 297 <field id="fluxtop_dn_sw" 298 long_name="Incoming Solar radiative flux from space"298 long_name="Incoming shortwave radiation at the top of the atmosphere" 299 299 unit="W.m-2" /> 300 300 <field id="fluxtop_up_sw" 301 long_name=" Outgoing Solar radiative flux to space"301 long_name="Upward shortwave radiation at the top of the atmosphere" 302 302 unit="W.m-2" /> 303 303 … … 325 325 <field id="fluxsurf_dn_sw_slope07" 326 326 long_name="Incoming shortwave radiation at the surface on slope 07" 327 unit="W.m-2" />328 <field id="fluxtop_up_sw"329 long_name="Upward shortwave radiation at the top of the atmosphere"330 327 unit="W.m-2" /> 331 328 … … 1209 1206 long_name="Waterdensity_soil of slope 07" 1210 1207 unit="kg.m-3" /> 1208 <field id="zdqsdif_ssi_frost" 1209 long_name="Flux between frost and subsurface" 1210 unit="kg.m-2.s-1" /> 1211 <field id="subtimestep" 1212 long_name="vdifc substimestep length" 1213 unit="s" /> 1214 <field id="zdq_subtimestep" 1215 long_name="Actual flux zdqsdif*subtimestep" 1216 unit="kg.m-2" /> 1217 <field id="zdq_end" 1218 long_name="Flux after all contributions" 1219 unit="kg.m-2.s-1" /> 1211 1220 1212 1221 </field_group> -
trunk/LMDZ.MARS/libf/phymars/vdifc_mod.F
r3106 r3107 1110 1110 ENDIF 1111 1111 call write_output('zdqsdif_ssi_frost', 1112 & '','',zdqsdif_ssi_frost(ig,1)) 1112 & 'Flux between frost and subsurface','kg.m-2.s-1', 1113 & zdqsdif_ssi_frost(ig,1)) 1113 1114 call write_output('subtimestep', 1114 & ' ','',subtimestep)1115 & 'vdifc substimestep length','s',subtimestep) 1115 1116 ! ENDDO !subsurface ice subslope 1116 1117 … … 1284 1285 1285 1286 call write_output("surf_h2o_lh", 1286 & 1287 & 1288 1289 & '','',zdqsdif(:)*subtimestep)1290 call write_output('zdq_end',1291 & '','',zdqsdif(:))1292 call write_output('vdifc_subtimestep',1293 & '','',subtimestep)1287 & "Ground ice latent heat flux", 1288 & "W.m-2",surf_h2o_lh(:,iflat)) 1289 call write_output('zdq_subtimestep', 1290 & 'Actual flux zdqsdif*subtimestep', 1291 & 'kg.m-2',zdqsdif(:)*subtimestep) 1292 call write_output('zdq_end', 1293 & 'Flux after all contributions', 1294 & 'kg.m-2.s-1',zdqsdif(:)) 1294 1295 C Diagnostic output for HDO 1295 1296 ! if (hdo) then
Note: See TracChangeset
for help on using the changeset viewer.