Skip to content

Commit 4d0093f

Browse files
committed
(#560) - Doc formatting
1 parent 43c8ffe commit 4d0093f

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

src/science/canopy/cbl_dryLeaf.F90

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -668,16 +668,19 @@ END SUBROUTINE dryLeaf
668668

669669
SUBROUTINE getrex_1d(theta, rex, fws, Fs, thetaS, thetaw, Etrans, gamma, dx, dt, zr)
670670
!! Root extraction : Haverd et al. 2013
671+
!!
671672
!! **Warning**: This subroutine has diverged from the other `getrex_1d` subroutine
672673
!! in cable_sli_roots.F90. Considering this subroutine predates the other one,
673-
!! it is likely this is an older version and should be updated. Although no,
674-
!! tests has been done to quantify the differences.
674+
!! it is likely this is an older version and should be updated. No
675+
!! tests have been done to quantify the differences.
676+
!!
675677
!! Changes identified as of 27/06/2025:
676-
!! - `theta` and `thetas` arguments instead ot `thetaS` and `S=theta/thetaS`
677-
!! - `rex` is INTENT(OUT) in sli_roots module. Correct for this version as well.
678-
!! - Condition `WHERE (Fs(:) > zero .AND. layer_depth < zr ) ` changed to
678+
!!
679+
!! - `theta` and `thetas` arguments instead ot `thetaS` and `S=theta/thetaS`
680+
!! - `rex` is INTENT(OUT) in sli_roots module. Correct for this version as well.
681+
!! - Condition `WHERE (Fs(:) > zero .AND. layer_depth < zr ) ` changed to
679682
!! `WHERE (Fs(:) > zero` (zr unused in sli_roots)
680-
!! - `IF (ANY(((rex*dt) > MAX((theta(:)-thetaw(:)),zero)*dx(:)) .AND. (Etrans > zero))) THEN`
683+
!! - `IF (ANY(((rex*dt) > MAX((theta(:)-thetaw(:)),zero)*dx(:)) .AND. (Etrans > zero))) THEN`
681684
!! changed to `IF (ANY(((rex*dt) > (theta(:)-thetaw(:))*dx(:)) .AND. ((rex*dt) > zero))) THEN`
682685

683686
USE cable_def_types_mod, ONLY: r_2

0 commit comments

Comments
 (0)