Changeset 3148 for trunk/LMDZ.MARS
- Timestamp:
- Dec 6, 2023, 2:38:04 PM (12 months ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3147 r3148 4368 4368 There are three tunable parameters that have been set up, as "nonoro_gwimixing_eff=0.1", "nonoro_gwimixing_eff1=0.1", "nonoro_gwimixing_vdl=1.5". 4369 4369 Remember to use full-layers model configuration (64x48x73) when you try to call this scheme because we need to evaluate the saturation altitude of each monochromatic wave. 4370 More than ~75% of the waves saturated at altitude above 120 km. 4370 More than ~75% of the waves saturated at altitude above 120 km. 4371 4371 4372 4372 == 02/12/2023 == LL 4373 4373 Bug fix in init_testphys and testphys. Index for water vapor and ice were not initialized 4374 4374 (but used in testphys1d when atm_wat_profile > 0). It is fixed by calling 4375 initracer in init_testphys1d_mod. 4375 initracer in init_testphys1d_mod. 4376 4376 4377 4377 == 06/12/2023 == EM 4378 4378 Minor fixes to ensure outputs of water cycle related variables are only 4379 4379 computed and made if the water cycle is computed. 4380 4381 == 06/12/2023 == JBC 4382 Tiny fix from r3147 (Fortran fixed format). 4380 4383 -
trunk/LMDZ.MARS/libf/phymars/physiq_mod.F
r3147 r3148 2671 2671 if (water) then 2672 2672 ! both water and dust contribute 2673 2673 fluxsurf_dir_dn_sw(ig) = flux_1AU/dist_sol/dist_sol*mu0(ig)* 2674 2674 & exp(-(tau(ig,iaer_dust_doubleq)+ 2675 2675 & tau(ig,iaer_h2o_ice))/mu0(ig)) 2676 2676 else 2677 2677 ! only dust contributes 2678 2678 fluxsurf_dir_dn_sw(ig) = flux_1AU/dist_sol/dist_sol*mu0(ig)* 2679 2679 & exp(-(tau(ig,iaer_dust_doubleq))/mu0(ig)) 2680 2680 endif ! of if (water)
Note: See TracChangeset
for help on using the changeset viewer.