File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -72,15 +72,15 @@ by ~0.3 to reduce the overall upwelling shortwave bias in coupled simulations.
7272
7373### PAR Band
7474``` julia
75- η₀_PAR = - 2.0 # Bias-corrected intercept (raw fit: -3.04)
75+ η₀_PAR = - 2.25 # Bias-corrected intercept (raw fit: -3.04)
7676c_om_PAR = - 0.13 # Organic matter (darkening)
7777c_vgn_PAR = 1.24 # van Genuchten n (texture)
7878c_cf_PAR = 0.15 # Coarse fragments (rocks)
7979```
8080
8181### NIR Band
8282``` julia
83- η₀_NIR = - 2.05 # Bias-corrected intercept (raw fit: -3.10)
83+ η₀_NIR = - 2.3 # Bias-corrected intercept (raw fit: -3.10)
8484c_om_NIR = - 0.14
8585c_vgn_NIR = 1.28
8686c_cf_NIR = 0.16
Original file line number Diff line number Diff line change 278278
279279"""
280280 CompositionBasedSoilAlbedo{FT}(;
281- η₀_PAR = FT(-2.0 ),
282- η₀_NIR = FT(-2.05 ),
281+ η₀_PAR = FT(-2.25 ),
282+ η₀_NIR = FT(-2.3 ),
283283 c_om_PAR = FT(-0.13),
284284 c_om_NIR = FT(-0.14),
285285 c_vgn_PAR = FT(1.24),
@@ -306,13 +306,13 @@ Coefficients fitted via logistic regression on:
306306# Expected albedo values
307307
308308**High vg_n desert (sandy)**: vg_n ≈ 2.5, cf ≈ 0.3, om ≈ 0
309- - η ≈ -2.0 + 1.24*2.5 + 0.15*0.3 = 1.15 → α ≈ 0.47
309+ - η ≈ -2.25 + 1.24*2.5 + 0.15*0.3 = 0.90 → α ≈ 0.44
310310
311311**Rocky desert**: vg_n ≈ 1.5, cf ≈ 0.6, om ≈ 0
312- - η ≈ -2.0 + 1.24*1.5 + 0.15*0.6 = -0.04 → α ≈ 0.31
312+ - η ≈ -2.25 + 1.24*1.5 + 0.15*0.6 = -0.29 → α ≈ 0.28
313313
314314**Organic soil**: vg_n ≈ 1.5, cf ≈ 0.1, om ≈ 0.1
315- - η ≈ -2.0 + 1.24*1.5 - 0.13*0.1 + 0.15*0.1 = -0.12 → α ≈ 0.30
315+ - η ≈ -2.25 + 1.24*1.5 - 0.13*0.1 + 0.15*0.1 = -0.37 → α ≈ 0.27
316316
317317# Arguments
318318- `η₀_PAR`, `η₀_NIR`: Base log-odds (intercept in logistic model)
@@ -325,8 +325,8 @@ Coefficients fitted via logistic regression on:
325325- `albedo_calc_top_thickness`: Depth for surface moisture averaging (m)
326326"""
327327function CompositionBasedSoilAlbedo {FT} (;
328- η₀_PAR = FT (- 2.0 ),
329- η₀_NIR = FT (- 2.05 ),
328+ η₀_PAR = FT (- 2.25 ),
329+ η₀_NIR = FT (- 2.3 ),
330330 c_om_PAR = FT (- 0.13 ),
331331 c_om_NIR = FT (- 0.14 ),
332332 c_vgn_PAR = FT (1.24 ),
You can’t perform that action at this time.
0 commit comments