Skip to content

Commit 8e7336c

Browse files
committed
Set ICNTRL to Rosenbrock values by default in kpp_standalone_init.F90
kpp_standalone_init.F90 - Set the ICNTRL argument to the Rosenbrock settings. These will be used by default used if ICNTRL is not found in the input file. Signed-off-by: Bob Yantosca <yantosca@seas.harvard.edu>
1 parent a905f2b commit 8e7336c

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

kpp_standalone_init.F90

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ subroutine read_input( filename, R, C, SPC_NAMES, &
5555
R = 0.0_dp
5656
RCNTRL = 0.0_dp
5757

58+
! Set ICNTRL options to Rosenbrock inputs by default
59+
! These will be overwritten if ICNTRL is found in the input file
60+
ICNTRL(1) = 1
61+
ICNTRL(3) = 4
62+
ICNTRL(7) = 1
63+
ICNTRL(15) = -1
64+
5865
! For reading ICNTRL and RCNTRL
5966
parse_icntrl = .false.
6067
parse_rcntrl = .false.

0 commit comments

Comments
 (0)