You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
There is a bug in the calculation of the ELMO variable PMF_OC (organic carbon in the Aitken and accumulation modes) causing non-carbon organic mass to be included.
Solution
Modify lines 2590-2599 of ELMO_PROC.F as follows:
CASE ( ID_PMF_OC )
! Sum up primary organic aerosol species normalized to
! just carbon mass
VAL = 0.0
DO IOA = 1,N_OA_NotTracers
IF ( OASPC( IOA )%OMtoOC .GT. 0.0 ) THEN
VAL = VAL + SUM( AEROSPC_CONC( MAP_OAtoAERO(IOA),: ),
& MASK = AEROMODE(:)%FINE_MASK )
& / OASPC( IOA )%OMtoOC
END IF
END DO
OUTVAL = VAL
The text was updated successfully, but these errors were encountered:
Description
There is a bug in the calculation of the ELMO variable PMF_OC (organic carbon in the Aitken and accumulation modes) causing non-carbon organic mass to be included.
Solution
Modify lines 2590-2599 of ELMO_PROC.F as follows:
The text was updated successfully, but these errors were encountered: