Skip to content

Commit da83624

Browse files
committed
minor changes
1 parent 08097d2 commit da83624

File tree

2 files changed

+10
-237
lines changed

2 files changed

+10
-237
lines changed

chem/Makefile_org

Lines changed: 0 additions & 232 deletions
This file was deleted.

chem/module_volc_chem.F

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,16 @@ subroutine gocart_volc_chem_driver(curr_secs,dt,config_flags, &
101101
tc(1,1,1,1)=chem(i,k,j,p_so2) *1.d-6 !ppv
102102
tc(1,1,1,2)=chem(i,k,j,p_sulf)*1.d-6 !ppv
103103

104-
call chmdrv_volc_su( imx,jmx,lmx, nmx, dt, tmp, airden, airmas, &
105-
oh, h2o2, cldf, tc, chlso2_oh, chlso2_aq)!chpso4
104+
!call chmdrv_volc_su( imx,jmx,lmx, nmx, dt, tmp, airden, airmas, &
105+
! oh, h2o2, cldf, tc, chlso2_oh, chlso2_aq)!chpso4
106106

107-
chem(i,k,j,p_so2)= tc(1,1,1,1)*1.e6 !ppmv
108-
chem(i,k,j,p_sulf)=tc(1,1,1,2)*1.e6 !ppmv
107+
!chem(i,k,j,p_so2)= tc(1,1,1,1)*1.e6 !ppmv
108+
!chem(i,k,j,p_sulf)=tc(1,1,1,2)*1.e6 !ppmv
109+
110+
! uncomment above
111+
chem(i,k,j,p_so2) = 86400./dt*cossza(1,1)*backg_oh(i,k,j)/tcosz(i,j) !backg_oh in molecules/cm3
112+
chem(i,k,j,p_so2) = chem(i,k,j,p_so2) * (28.97 * 0.001)* 1.0D12 / (6.022D23 * rho_phy(i,k,j)) ! to ppmv from molecules/cm3
113+
109114

110115
volc_diags(i,j,p_so2_oh_loss) = volc_diags(i,j,p_so2_oh_loss) + chlso2_oh(1,1,1) !loss (kg/dt)
111116
volc_diags(i,j,p_so2_h2o2_loss) = volc_diags(i,j,p_so2_h2o2_loss) + chlso2_aq(1,1,1) !loss (kg/dt)
@@ -199,7 +204,7 @@ SUBROUTINE chem_volc_so2_so4(imx,jmx,lmx, nmx, ndt1, tmp, airden, airmas, &
199204
! if OH in ppv convert it to molecules/cm3
200205
!rk1 = ( k0 * m / (1.0 + kk) ) * 0.6**f1 * oh(i,j,l) * airden(i,j,l)*f
201206

202-
! of OH in [molecules/cm3] do nothing
207+
! if OH in [molecules/cm3] do nothing
203208
rk1 = ( k0 * m / (1.0 + kk) ) * 0.6**f1 * oh(i,j,l)
204209
!rk2 = 0.0
205210

0 commit comments

Comments
 (0)