Skip to content

Commit

Permalink
add the hydraulic conductivity from absorbing roots to inner soil she…
Browse files Browse the repository at this point in the history
…ll at the cohort-level
  • Loading branch information
xuchongang committed Apr 12, 2019
1 parent e5cb467 commit 00dfc52
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions main/FatesHydraulicsMemMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ module FatesHydraulicsMemMod

real(r8),allocatable :: psisoi_liq_innershell(:) ! Matric potential of the inner rhizosphere shell (MPa)


real(r8),allocatable :: recruit_w_uptake(:) ! recruitment water uptake (kg H2o/m2/s)


Expand Down Expand Up @@ -211,6 +212,8 @@ module FatesHydraulicsMemMod
real(r8),allocatable :: v_aroot_layer_init(:) ! previous day's volume of absorbing roots by soil layer [m3]
real(r8),allocatable :: v_aroot_layer(:) ! volume of absorbing roots by soil layer [m3]
real(r8),allocatable :: l_aroot_layer(:) ! length of absorbing roots by soil layer [m]

real(r8),allocatable :: kmax_innershell(:) ! Maximum hydraulic conductivity of the inner rhizosphere shell (kg s-1 MPa-1)

! BC PLANT HYDRAULICS - state variables
real(r8) :: th_ag(n_hypool_ag) ! water in aboveground compartments [kgh2o/indiv]
Expand Down Expand Up @@ -307,6 +310,7 @@ subroutine AllocateHydrCohortArrays(this,nlevsoil_hydr)
allocate(this%flc_min_aroot(1:nlevsoil_hydr))
allocate(this%errh2o_growturn_aroot(1:nlevsoil_hydr))
allocate(this%errh2o_pheno_aroot(1:nlevsoil_hydr))
allocate(this%kmax_innershell(1:nlevsoil_hydr))

return
end subroutine AllocateHydrCohortArrays
Expand All @@ -329,6 +333,7 @@ subroutine DeallocateHydrCohortArrays(this)
deallocate(this%flc_min_aroot)
deallocate(this%errh2o_growturn_aroot)
deallocate(this%errh2o_pheno_aroot)
deallocate(this%kmax_innershell)

return
end subroutine DeallocateHydrCohortArrays
Expand Down

0 comments on commit 00dfc52

Please sign in to comment.