Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions chem/rxn.F
Original file line number Diff line number Diff line change
Expand Up @@ -157,10 +157,11 @@ SUBROUTINE rxn_init( nw, wl )
integer, intent(in) :: nw
real, intent(in) :: wl(nw)

integer :: astat, m, n
integer :: astat, m, n, debug_level
character(len=256) :: emsg

call set_initialization( status=.true. )
call get_wrf_debug_level( debug_level )

if( .not. allocated( xsqy_tab ) ) then
allocate( xsqy_tab(kj),stat=astat )
Expand Down Expand Up @@ -200,7 +201,9 @@ SUBROUTINE rxn_init( nw, wl )
npht_tab = 2
call setup_sub_calls( the_subs,npht_tab )

call diagnostics
IF ( 100 .LE. debug_level ) THEN
call diagnostics
ENDIF

call rdxs_init( nw, wl )

Expand Down