Skip to content

Commit 64b5aff

Browse files
authored
Merge pull request #482 from rosiealice/rosie_gpp_smoothing
Modify GPP smoothing parameters to 0.999
2 parents 42bfda2 + 9e8354e commit 64b5aff

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

biogeophys/FatesPlantRespPhotosynthMod.F90

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -932,11 +932,13 @@ subroutine LeafLayerPhotosynthesis(f_sun_lsl, & ! in
932932
! quantum efficiency, used only for C4 (mol CO2 / mol photons) (index 0)
933933
real(r8),parameter,dimension(0:1) :: quant_eff = [0.05_r8,0.0_r8]
934934

935-
! empirical curvature parameter for ac, aj photosynthesis co-limitation
936-
real(r8),parameter,dimension(0:1) :: theta_cj = [0.80_r8,0.98_r8]
935+
! empirical curvature parameter for ac, aj photosynthesis co-limitation.
936+
! Changed theta_cj and theta_ip to 0.999 to effectively remove smoothing logic
937+
! following Anthony Walker's findings from MAAT.
938+
real(r8),parameter,dimension(0:1) :: theta_cj = [0.999_r8,0.999_r8]
937939

938940
! empirical curvature parameter for ap photosynthesis co-limitation
939-
real(r8),parameter :: theta_ip = 0.95_r8
941+
real(r8),parameter :: theta_ip = 0.999_r8
940942

941943
associate( bb_slope => EDPftvarcon_inst%BB_slope) ! slope of BB relationship
942944

0 commit comments

Comments
 (0)