4 #include <AMReX_REAL.H>
5 #include <AMReX_Vector.H>
6 #include <AMReX_ParmParse.H>
7 #include <AMReX_IntegratorBase.H>
22 std::function<void(
T&,
const T&,
const double,
const double)>
rhs;
23 std::function<void(
T&,
T&,
T&,
const double,
const double,
const double,
const int)>
slow_rhs_pre;
24 std::function<void(
T&,
T&,
T&,
T&,
const double,
const double,
const double,
const int)>
slow_rhs_post;
25 std::function<void(
int,
int,
int,
T&,
const T&,
T&,
T&,
const double,
const double,
62 std::function<void (
T&,
T&,
T&,
const double,
const double,
int)>
no_substep;
65 amrex::Vector<std::unique_ptr<T> >
T_store;
73 const bool include_ghost =
true;
74 amrex::IntegratorOps<T>::CreateLike(
T_store, S_data, include_ghost);
76 amrex::IntegratorOps<T>::CreateLike(
T_store, S_data, include_ghost);
135 void set_slow_rhs_pre (std::function<
void(
T&,
T&,
T&,
const double,
const double,
const double,
const int)> F)
145 const double,
const double,
167 std::function<void(
T&,
const T&,
const double,
const double)>
get_rhs ()
172 double advance (
T& S_old,
T& S_new,
double time,
const double time_step)
174 BL_PROFILE_REGION(
"MRI_advance");
175 using namespace amrex;
211 for (
int i(0); i<n_data; ++i)
214 MultiFab::Copy(S_new[i],S_old[i],0,0,num_vars[i],S_old[i].nGrowVect());
226 double time_stage = time;
227 double old_time_stage;
231 for (
int nrk = 0; nrk < 3; nrk++)
234 old_time_stage = time_stage;
243 nsubsteps = std::max(substep_ratio/3, 1);
253 nsubsteps = substep_ratio/2;
263 nsubsteps = substep_ratio;
264 dtau =
timestep /
static_cast<double>(nsubsteps);
285 for (
int ks = 0; ks < nsubsteps; ++ks)
287 acoustic_substepping(ks, nsubsteps, nrk, *
F_slow, S_old, S_new, *
S_sum, dtau,
timestep, inv_fac,
288 time + ks*dtau, time + (ks+1) * dtau);
308 for (
int nrk = 0; nrk < 2; nrk++)
311 old_time_stage = time_stage;
313 if (nrk == 0) { nsubsteps = 1; dtau =
timestep; time_stage = time +
timestep; }
314 if (nrk == 1) { nsubsteps = 1; dtau =
timestep; time_stage = time +
timestep; }
constexpr amrex::Real three
Definition: ERF_Constants.H:11
constexpr amrex::Real two
Definition: ERF_Constants.H:10
constexpr amrex::Real one
Definition: ERF_Constants.H:9
constexpr amrex::Real myhalf
Definition: ERF_Constants.H:13
Real T
Definition: ERF_InitCustomPert_Bubble.H:106
AMREX_ALWAYS_ASSERT(bx.length()[2]==khi+1)
AMREX_GPU_HOST_DEVICE AMREX_FORCE_INLINE int idx(int i, int j, int k, int nx, int ny)
Definition: ERF_InitForEnsemble.cpp:365
amrex::Real Real
Definition: ERF_ShocInterface.H:19
T * F_slow
Definition: ERF_MRI.H:67
std::function< void(T &, const T &, const double, const double)> get_rhs()
Definition: ERF_MRI.H:167
amrex::Vector< std::unique_ptr< T > > T_store
Definition: ERF_MRI.H:65
void set_slow_rhs_post(std::function< void(T &, T &, T &, T &, const double, const double, const double, const int)> F)
Definition: ERF_MRI.H:139
void map_data(std::function< void(T &)> Map)
Definition: ERF_MRI.H:335
void set_slow_rhs_pre(std::function< void(T &, T &, T &, const double, const double, const double, const int)> F)
Definition: ERF_MRI.H:135
int anelastic
Should we use the anelastic integrator.
Definition: ERF_MRI.H:47
void setNcompCons(int _ncomp_cons)
Definition: ERF_MRI.H:115
MRISplitIntegrator()=default
std::function< void(T &, const T &, const double, const double)> rhs
rhs is the right-hand-side function the integrator will use.
Definition: ERF_MRI.H:22
void setForceFirstStageSingleSubstep(int _force_stage1_single_substep)
Definition: ERF_MRI.H:130
int force_stage1_single_substep
Do we follow the recommendation to only perform a single substep in the first RK stage.
Definition: ERF_MRI.H:57
int ncomp_cons
How many components in the cell-centered MultiFab.
Definition: ERF_MRI.H:52
void setNoSubstepping(int _no_substepping)
Definition: ERF_MRI.H:125
double timestep
Integrator timestep size (Real)
Definition: ERF_MRI.H:32
std::function< void(T &, T &, T &, const double, const double, const double, const int)> slow_rhs_pre
Definition: ERF_MRI.H:23
void set_no_substep(std::function< void(T &, T &, T &, const double, const double, int)> F)
Definition: ERF_MRI.H:162
void initialize(const T &S_data)
Definition: ERF_MRI.H:91
MRISplitIntegrator(MRISplitIntegrator &&) noexcept=default
void initialize_data(const T &S_data)
Definition: ERF_MRI.H:69
MRISplitIntegrator(const T &S_data)
Definition: ERF_MRI.H:86
std::function< void(T &, T &, T &, T &, const double, const double, const double, const int)> slow_rhs_post
Definition: ERF_MRI.H:24
void setAnelastic(int _anelastic)
Definition: ERF_MRI.H:120
std::function< void(T &, T &, T &, const double, const double, int)> no_substep
The no_substep function is called when we have no acoustic substepping.
Definition: ERF_MRI.H:62
int get_slow_fast_timestep_ratio()
Definition: ERF_MRI.H:157
double advance(T &S_old, T &S_new, double time, const double time_step)
Definition: ERF_MRI.H:172
int slow_fast_timestep_ratio
The ratio of slow timestep size / fast timestep size (int)
Definition: ERF_MRI.H:37
void set_acoustic_substepping(std::function< void(int, int, int, T &, const T &, T &, T &, const double, const double, const amrex::Real, const double, const double)> F)
Definition: ERF_MRI.H:144
~MRISplitIntegrator()=default
void set_slow_fast_timestep_ratio(const int timestep_ratio=1)
Definition: ERF_MRI.H:152
T * S_sum
Definition: ERF_MRI.H:66
std::function< void(int, int, int, T &, const T &, T &, T &, const double, const double, const amrex::Real, const double, const double)> acoustic_substepping
Definition: ERF_MRI.H:27
int no_substepping
Should we not do acoustic substepping.
Definition: ERF_MRI.H:42
@ NumTypes
Definition: ERF_IndexDefines.H:198
Definition: ERF_ConsoleIO.cpp:15