Skip to content

Commit

Permalink
Update diagstate_mod.F90
Browse files Browse the repository at this point in the history
continuing to debug
  • Loading branch information
lholland-noaa authored Oct 1, 2024
1 parent 6f465e8 commit e5d6a44
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/diagstate_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,15 @@ subroutine Diag_Allocate(Config, DiagState, ChemState, RC)
endif

! If dry deposition process is activated then allocate dry dep related diagnostics
print *, "ChemState%nSpeciesAeroDryDep=", ChemState%nSpeciesAeroDryDep
write (*,*) "ChemState%nSpeciesAeroDryDep=", ChemState%nSpeciesAeroDryDep
if (Config%drydep_activate) then
Allocate(DiagState%drydep_frequency(ChemState%nSpeciesAeroDryDep), STAT=RC)
IF ( RC /= CC_SUCCESS ) THEN
ErrMsg = 'Could not Allocate DiagState%drydep_frequency(ChemState%nSpeciesAeroDryDep)'
CALL CC_Error( ErrMsg, RC, thisLoc )
else
print *, "ChemState%nSpeciesAeroDryDep=", ChemState%nSpeciesAeroDryDep
print *, "allocated DiagState%drydep_frequency(ChemState%nSpeciesAeroDryDep) "
write (*,*) "ChemState%nSpeciesAeroDryDep=", ChemState%nSpeciesAeroDryDep
write (*,*) "allocated DiagState%drydep_frequency(ChemState%nSpeciesAeroDryDep) "
ENDIF
DiagState%drydep_frequency(ChemState%nSpeciesAeroDryDep)= ZERO

Expand Down

0 comments on commit e5d6a44

Please sign in to comment.