Skip to content

Commit b2c4d49

Browse files
committed
Changed soil conducitivity in a cell from min to mean
1 parent d7f1645 commit b2c4d49

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/Hydro/schism_step.F90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7815,7 +7815,8 @@ subroutine schism_step(it)
78157815
!$OMP do
78167816
do i=1,nea
78177817
tmp=sum(stemp_dz(elnode(1:i34(i),i)))/i34(i) !SED thickness>0
7818-
tmp0=minval(stemp_stc(elnode(1:i34(i),i))) !min conductivity
7818+
!tmp0=minval(stemp_stc(elnode(1:i34(i),i))) !min conductivity
7819+
tmp0=sum(stemp_stc(elnode(1:i34(i),i)))/i34(i) !av conductivity
78197820

78207821
if(idry_e(i)==1) then !use air T if available; soil-air exchange
78217822
if(nws==2.or.nws==4) then

src/Readme.beta_notes

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This beta notes are divided into 5 part:
99

1010
Github versions:
1111

12-
- `8e0b1477`: vclose_surf_frac renamed as vclose_surf_frac0. If vclose_surf_frac0<0, needs vclose.gr3 (depth in [0,1]);
12+
- `8e0b1477`: removed/renamed vclose_surf_frac as vclose_surf_frac0. If vclose_surf_frac0<0, needs vclose.gr3 (depth in [0,1]);
1313

1414
Tag stofs3d-atl.v3.1.0 (from v5.14): Sept 17, 2025
1515
- `b3644238` (21 Aug 2025): added istemp as on/off and removed stemp_thick; restored soil_thick.gr3;
@@ -639,6 +639,7 @@ git versions:
639639
158. `b09c1f4a` (24 July 2025): merged with SED3D_cleanup to improve multi bed layer sorting;
640640
159. `1e2b181209` (21 Aug 2025): merged with shallow_T, quad_init (fixed a bug in quad_int() c/o Jose O.)
641641
160. `6c2ef8f3` (25 Aug 2025): updated WWM nc outputs to use OR(NF90_NETCDF4,NF90_CLOBBER) (as in hydro)
642+
161. ``: changed soil conductivity in a cell from min to mean;
642643

643644
================================================================================================
644645
(D) Auto-test history:

0 commit comments

Comments
 (0)