Changeset 3568
- Timestamp:
- Jan 6, 2025, 5:13:01 PM (5 weeks ago)
- Location:
- trunk/LMDZ.MARS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/changelog.txt
r3549 r3568 4745 4745 == 12/12/2024 == JBC 4746 4746 In the 1D model, merging under the 'paleomars' flag of the modifications for orbital parameters taken from "callphys.def". 4747 4748 == 06/01/2025 == LL 4749 Fixing bug in soilwater: the specific surface area was missing in the 4750 expression of the adsorption rate when choice_ads = 2. -
trunk/LMDZ.MARS/libf/phymars/soilwater.F90
r3274 r3568 681 681 ! first segment of the bilinear function (before monolayer saturation) 682 682 ! calculate the equilibrium adsorption coefficient 683 k_ads_eq(ig, ik) = 8.314D0 * ptsoil(ig,ik)/18.D-3 *Kref * dexp(DeltaQ_ads / 8.314D0 * &683 k_ads_eq(ig, ik) = 8.314D0 * rho_soil(ig, ik) * S * ptsoil(ig,ik)/18.D-3 *Kref * dexp(DeltaQ_ads / 8.314D0 * & 684 684 (1.D0 / ptsoil(ig, ik) - 1.D0 / Tref)) ! Changed enthalpy_ads to DeltaQ_ads to ensure correct dependance/behaviour of k_ads_eq with temperature 685 685 … … 692 692 ! second segment of the bilinear function (after monolayer saturation) ! added 2020 693 693 ! calculate the equilibrium adsorption coefficient 694 k_ads_eq2(ig, ik) = 8.314D0 * ptsoil(ig,ik)/18.D-3 * Kref2 * dexp(DeltaQ_ads2 / 8.314D0 * &694 k_ads_eq2(ig, ik) = 8.314D0 * rho_soil(ig, ik) * S * ptsoil(ig,ik)/18.D-3 * Kref2 * dexp(DeltaQ_ads2 / 8.314D0 * & 695 695 (1.D0 / ptsoil(ig, ik) - 1.D0 / Tref)) ! Changed enthalpy_ads2 to DeltaQ_ads2 to ensure correct dependance/behaviour of k_ads_eq with temperature 696 696
Note: See TracChangeset
for help on using the changeset viewer.