Skip to content

Commit

Permalink
given we are facilitating direct parameters makes sense to include them
Browse files Browse the repository at this point in the history
as namelist editable
  • Loading branch information
JhanSrbinovsky committed Dec 12, 2024
1 parent d70724a commit 94e0291
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/coupled/ESM1.5/CABLEfilesFromESM1.5/cable_um_init_subrs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -406,14 +406,18 @@ SUBROUTINE init_veg_from_vegin(ifmp,fmp, veg, soil_zse )
END DO ! over each veg patch in land point

IF (cable_user%access13roots) THEN
! default prescribed values used in CMIP6 ACCESS-ESM1.5
veg%froot(:,1) = 0.05
veg%froot(:,2) = 0.20
veg%froot(:,3) = 0.20
veg%froot(:,4) = 0.20
veg%froot(:,5) = 0.20
veg%froot(:,6) = 0.15

! prescribed values from vegin%froot so can be set to ESM1.5 values
! which were the same for all pfts (0.05, 0.2, 0.2, 0.2, 0.2, 0.15)
! or alternate prescribed root fractions could be used with pft dependence
DO is = 1, ms
DO h=1, mp
veg%froot(h,is) = vegin%froot(is,veg%iveg(h))
ENDDO
ENDDO

ELSE

! parametrized values used in CMIP6 ACCESS-CM2
! calculate vegin%froot from using rootbeta and soil depth
! (Jackson et al. 1996, Oceologica, 108:389-411)
Expand Down

0 comments on commit 94e0291

Please sign in to comment.