Skip to content

Commit

Permalink
Turn off setting of GSSUN and GSSHA until we can bring ESCOMP#1462 in…
Browse files Browse the repository at this point in the history
… an answer changing tag.
  • Loading branch information
ekluzek committed Aug 18, 2021
1 parent fe982ba commit 0faf662
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions src/biogeophys/PhotosynthesisMod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1884,11 +1884,18 @@ subroutine Photosynthesis ( bounds, fn, filterp, &
end if
end if

! Write stomatal conductance to the appropriate phase
if (phase=='sun') then
gs_mol_sun(p,iv) = gs_mol(p,iv)
else if (phase=='sha') then
gs_mol_sha(p,iv) = gs_mol(p,iv)
!
! Turn this off right now as it causes an apparant change in
! answers (See ESCOMP/#CTSM/1446) for history variables
! This sets the variables GSSUN and GSSHA
!
if ( .false. )then
! Write stomatal conductance to the appropriate phase
if (phase=='sun') then
gs_mol_sun(p,iv) = gs_mol(p,iv)
else if (phase=='sha') then
gs_mol_sha(p,iv) = gs_mol(p,iv)
end if
end if

! Use time period 1 hour before and 1 hour after local noon inclusive (11AM-1PM)
Expand Down

0 comments on commit 0faf662

Please sign in to comment.