Skip to content

Commit

Permalink
Update CCPr_DryDep_Mod.F90
Browse files Browse the repository at this point in the history
change 0 to ZERO
  • Loading branch information
lholland-noaa authored Oct 2, 2024
1 parent 60f2264 commit d6e5d0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/process/drydep/CCPr_DryDep_Mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -117,14 +117,14 @@ SUBROUTINE CCPR_DryDep_Init( Config, DryDepState, ChemState, RC )
ErrMsg = 'Could not Allocate DryDepState%drydep_frequency(ChemState%nSpeciesAeroDryDep)'
CALL CC_Error( ErrMsg, RC, ThisLoc )
ENDIF
DryDepState%drydep_frequency(1:ChemState%nSpeciesAeroDryDep)=0
DryDepState%drydep_frequency(1:ChemState%nSpeciesAeroDryDep)=ZERO

allocate(DryDepState%drydep_vel(ChemState%nSpeciesAeroDryDep), STAT=RC)
IF ( RC /= CC_SUCCESS ) THEN
ErrMsg = 'Could not Allocate DryDepState%drydep_vel(ChemState%nSpeciesAeroDryDep)'
CALL CC_Error( ErrMsg, RC, ThisLoc )
ENDIF
DryDepState%drydep_vel(1:ChemState%nSpeciesAeroDryDep)=0
DryDepState%drydep_vel(1:ChemState%nSpeciesAeroDryDep)=ZERO

! Set scheme option
!------------------
Expand Down

0 comments on commit d6e5d0b

Please sign in to comment.