From 4bf50a4e7dbcf327425b7ad476baf3271a9398e4 Mon Sep 17 00:00:00 2001 From: Ryan Knox Date: Thu, 25 Apr 2019 14:12:09 -0700 Subject: [PATCH] Trivial, changes some indents. --- biogeophys/FatesPlantRespPhotosynthMod.F90 | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/biogeophys/FatesPlantRespPhotosynthMod.F90 b/biogeophys/FatesPlantRespPhotosynthMod.F90 index 93d25a9de6..65fcb9e677 100644 --- a/biogeophys/FatesPlantRespPhotosynthMod.F90 +++ b/biogeophys/FatesPlantRespPhotosynthMod.F90 @@ -832,7 +832,7 @@ subroutine LeafLayerPhotosynthesis(f_sun_lsl, & ! in psn_out, & ! out rstoma_out, & ! out anet_av_out, & ! out - c13disc_z) ! out + c13disc_z) ! out ! ------------------------------------------------------------------------------------ ! This subroutine calculates photosynthesis and stomatal conductance within each leaf @@ -965,15 +965,16 @@ subroutine LeafLayerPhotosynthesis(f_sun_lsl, & ! in ! ---------------------------------------------------------------------------------- if ( parsun_lsl <= 0._r8 ) then ! night time - + anet_av_out = -lmr psn_out = 0._r8 - if(btran>0._r8) then - rstoma_out = min(rsmax0, cf*1._r8/(bbbopt(c3c4_path_index)*btran)) - else - rstoma_out = rsmax0 - endif - c13disc_z = 0.0_r8 !carbon 13 discrimination in night time carbon flux, note value of 1.0 is used in CLM + if(btran>0._r8) then + rstoma_out = min(rsmax0, cf*1._r8/(bbbopt(c3c4_path_index)*btran)) + else + rstoma_out = rsmax0 + endif + + c13disc_z = 0.0_r8 !carbon 13 discrimination in night time carbon flux, note value of 1.0 is used in CLM else ! day time (a little bit more complicated ...)