Skip to content

Commit 2a249af

Browse files
committed
Remove coefficient in snow density equation 3
1 parent f21a759 commit 2a249af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/biogeophys/SoilTemperatureMod.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ subroutine SoilThermProp (bounds, num_urbanc, filter_urbanc, num_nolakec, filter
686686
! Thermal conductivity of snow, which from Sturm (1997) - ! VRD
687687
! Only examine levels from snl(c)+1 -> 0 where snl(c) < 1
688688
if (snl(c)+1 < 1 .AND. (j >= snl(c)+1) .AND. (j <= 0)) then
689-
bw(c,j) = ((h2osoi_ice(c,j)*0.3)+h2osoi_liq(c,j))/(frac_sno(c)*dz(c,j)) ! ==RHOS
689+
bw(c,j) = ((h2osoi_ice(c,j)*1)+h2osoi_liq(c,j))/(frac_sno(c)*dz(c,j)) ! ==RHOS
690690
! thk(c,j) = tkair + (7.75e-5_r8 *bw(c,j) + 1.105e-6_r8*bw(c,j)*bw(c,j))*(tkice-tkair) ! Original (Jordan) Parameterisation
691691
if (bw(c,j) <= 156) then !LMW or 0.156 ?
692692
thk(c,j) = 0.023 + 0.234*(bw(c,j)/1000) !LMW - units changed by VRD

0 commit comments

Comments
 (0)