Skip to content

Commit

Permalink
adds temperature sensitive desorption to reverseCN code #46
Browse files Browse the repository at this point in the history
  • Loading branch information
wwieder committed Apr 9, 2021
1 parent c384217 commit ea713eb
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions SOURCE_CODE/mimics_cycle_CN.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1078,8 +1078,8 @@ SUBROUTINE mimics_soil_reverseMM(mp,iYrCnt,idoy,mdaily,cleaf2met,cleaf2str,croot
CorgSum1 = mimicspool%LITm(npt) + mimicspool%LITs(npt) + &
mimicspool%SOMa(npt) + mimicspool%SOMc(npt) + mimicspool%SOMp(npt)

! Desorption a function of soil temperautre, Q10 = 1.3 w/ reference temperature of 25C
mimicsbiome%desorb(npt) = mimicsbiome%desorb(npt) * 1.3 * exp((Tsoil-25)/10)
! Desorption a function of soil temperautre, Q10 = 1.2 w/ reference temperature of 25C
mimicsbiome%desorb(npt) = mimicsbiome%desorb(npt) * 1.2 * exp((Tsoil-25)/10)

do ihr = 1, NHOURS

Expand Down Expand Up @@ -1657,7 +1657,11 @@ SUBROUTINE mimics_soil_reverseMM_CN(mp,iYrCnt,idoy,mdaily,cleaf2met,cleaf2str,cr
* mimicsbiome%ak(K2) / mimicsbiome%Kmod(npt,K2)
mimicsbiome%Km(npt,K3) = exp(mimicsbiome%Kslope(K3) * Tsoil + mimicsbiome%Kint(K3)) &
* mimicsbiome%ak(K3) / mimicsbiome%Kmod(npt,K3)


! Desorption a function of soil temperautre, Q10 = 1.2 w/ reference
! temperature of 25C
mimicsbiome%desorb(npt) = mimicsbiome%desorb(npt) * 1.2 * exp((Tsoil-25)/10)

CorgSum1 = mimicspool%LITm(npt) + mimicspool%LITs(npt) + &
mimicspool%SOMa(npt) + mimicspool%SOMc(npt) + mimicspool%SOMp(npt)
NorgSum1 = mimicspool%LITmN(npt) + mimicspool%LITsN(npt) + &
Expand Down

0 comments on commit ea713eb

Please sign in to comment.