Skip to content

Commit 889522b

Browse files
committed
Merge branch 'standardize_names' into common_integrators
2 parents ea91f77 + 7015178 commit 889522b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

integration/utils/rkc_util.H

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ amrex::Real rkc_init_dt (BurnT& state, IntT& rstate, const amrex::Real max_times
4242
rstate.y(i) = ysav(i);
4343
}
4444

45-
rstate.nfe++;
45+
rstate.n_rhs+;
4646
amrex::Real est{};
4747

4848
// compute the weights using the tolerances
@@ -106,7 +106,7 @@ int rkcrho (BurnT& state, IntT& rstate, const amrex::Real max_timestep, amrex::R
106106
// the eigenvector are normalized so that their Euclidean
107107
// norm has the constant value dynrm.
108108

109-
if (rstate.nsteps == 0) {
109+
if (rstate.n_step == 0) {
110110
for (int i = 1; i <= INT_NEQS; ++i) {
111111
rstate.yjm1(i) = rstate.fn(i);
112112
}

0 commit comments

Comments
 (0)