Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhance sulfate production in size-resolved cloud droplets over the ocean #1434

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions GeosCore/fullchem_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -878,9 +878,9 @@ SUBROUTINE Do_FullChem( Input_Opt, State_Chm, State_Diag, &
State_Met = State_Met, &
State_Chm = State_Chm )

! Add result as an enhancement to O2 metal catalysis rate
! Add result as an enhancement to O3 rate
! as a 1st order reaction
K_CLD(3) = K_CLD(3) + SR
K_CLD(2) = K_CLD(2) + SR
ENDIF

! Stop timer
Expand Down
4 changes: 2 additions & 2 deletions KPP/fullchem/fullchem_SulfurChemFuncs.F90
Original file line number Diff line number Diff line change
Expand Up @@ -740,7 +740,7 @@ SUBROUTINE fullchem_HetDropChem( I, J, L, SR, &
! additional sulfate production that can be
! attributed to ozone [ug/m3/timestep]
! Don't allow SR to be negative
SR = MAX( ( DSVI - B ), 0.0_dp )
SR = MAX( ( DSVI - B ), 0.0_dp ) ! I need to change this

! Skip further computation if SR = 0
IF ( SR > 0.0_dp ) THEN
Expand All @@ -751,7 +751,7 @@ SUBROUTINE fullchem_HetDropChem( I, J, L, SR, &
! Don't produce more SO4 than SO2 available after AQCHEM_SO2
! -- SR is dSO4/timestep (v/v) continue onvert
! to 1st order rate
SR = MIN( SR, SO2 / 1.0e12_dp ) / ( C(ind_SO2) * CVF * DT )
SR = MIN( SR, SO2 / 1.0e12_dp ) / ( C(ind_SO2) * C(ind_O3) * CVF * DT )
ENDIF
ENDIF

Expand Down