4 #include <AMReX_REAL.H>
5 #include <AMReX_Vector.H>
6 #include <AMReX_IntegratorBase.H>
25 std::function<void(
T&,
const T&,
const double,
const double)>
rhs;
26 std::function<void(
T&,
T&,
T&,
const double,
const double,
const double,
const int)>
slow_rhs_pre;
27 std::function<void(
T&,
T&,
T&,
T&,
const double,
const double,
const double,
const int)>
slow_rhs_post;
28 std::function<void(
int,
int,
int,
T&,
const T&,
T&,
T&,
const double,
const double,
65 std::function<void (
T&,
T&,
T&,
const double,
const double,
int)>
no_substep;
68 amrex::Vector<std::unique_ptr<T> >
T_store;
80 const bool include_ghost =
true;
81 amrex::IntegratorOps<T>::CreateLike(
T_store, S_data, include_ghost);
83 amrex::IntegratorOps<T>::CreateLike(
T_store, S_data, include_ghost);
166 void set_slow_rhs_pre (std::function<
void(
T&,
T&,
T&,
const double,
const double,
const double,
const int)> F)
180 const double,
const double,
214 std::function<void(
T&,
const T&,
const double,
const double)>
get_rhs ()
227 double advance (
T& S_old,
T& S_new,
double time,
const double time_step)
229 BL_PROFILE_REGION(
"MRI_advance");
230 using namespace amrex;
266 for (
int i(0); i<n_data; ++i)
269 MultiFab::Copy(S_new[i],S_old[i],0,0,num_vars[i],S_old[i].nGrowVect());
281 double time_stage = time;
282 double old_time_stage;
286 for (
int nrk = 0; nrk < 3; nrk++)
289 old_time_stage = time_stage;
298 nsubsteps = std::max(substep_ratio/3, 1);
308 nsubsteps = substep_ratio/2;
318 nsubsteps = substep_ratio;
319 dtau =
timestep /
static_cast<double>(nsubsteps);
340 for (
int ks = 0; ks < nsubsteps; ++ks)
342 acoustic_substepping(ks, nsubsteps, nrk, *
F_slow, S_old, S_new, *
S_sum, dtau,
timestep, inv_fac,
343 time + ks*dtau, time + (ks+1) * dtau);
363 for (
int nrk = 0; nrk < 2; nrk++)
366 old_time_stage = time_stage;
368 if (nrk == 0) { nsubsteps = 1; dtau =
timestep; time_stage = time +
timestep; }
369 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
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
Split integrator for MRI simulations handling slow and fast timescales.
Definition: ERF_MRI.H:20
T * F_slow
Definition: ERF_MRI.H:70
std::function< void(T &, const T &, const double, const double)> get_rhs()
Definition: ERF_MRI.H:214
amrex::Vector< std::unique_ptr< T > > T_store
Definition: ERF_MRI.H:68
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:170
void map_data(std::function< void(T &)> Map)
Apply a mapping function to all internal stored data.
Definition: ERF_MRI.H:394
void set_slow_rhs_pre(std::function< void(T &, T &, T &, const double, const double, const double, const int)> F)
Set the pre-substepping slow RHS function.
Definition: ERF_MRI.H:166
int anelastic
Should we use the anelastic integrator.
Definition: ERF_MRI.H:50
void setNcompCons(int _ncomp_cons)
Set the number of conservative components.
Definition: ERF_MRI.H:130
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:25
void setForceFirstStageSingleSubstep(int _force_stage1_single_substep)
Force the first RK stage to perform only a single substep.
Definition: ERF_MRI.H:157
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:60
int ncomp_cons
How many components in the cell-centered MultiFab.
Definition: ERF_MRI.H:55
void setNoSubstepping(int _no_substepping)
Set whether acoustic substepping is disabled.
Definition: ERF_MRI.H:148
double timestep
Integrator timestep size (Real)
Definition: ERF_MRI.H:35
std::function< void(T &, T &, T &, const double, const double, const double, const int)> slow_rhs_pre
Definition: ERF_MRI.H:26
void set_no_substep(std::function< void(T &, T &, T &, const double, const double, int)> F)
Set the function to be called when acoustic substepping is disabled.
Definition: ERF_MRI.H:209
void initialize(const T &S_data)
Initialize integrator storage.
Definition: ERF_MRI.H:102
MRISplitIntegrator(MRISplitIntegrator &&) noexcept=default
void initialize_data(const T &S_data)
Allocate internal storage for integrator variables.
Definition: ERF_MRI.H:76
MRISplitIntegrator(const T &S_data)
Definition: ERF_MRI.H:93
std::function< void(T &, T &, T &, T &, const double, const double, const double, const int)> slow_rhs_post
Definition: ERF_MRI.H:27
void setAnelastic(int _anelastic)
Set whether to use the anelastic integrator.
Definition: ERF_MRI.H:139
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:65
int get_slow_fast_timestep_ratio()
Get the current slow-to-fast timestep ratio.
Definition: ERF_MRI.H:200
double advance(T &S_old, T &S_new, double time, const double time_step)
Advance the state from time to time + time_step.
Definition: ERF_MRI.H:227
int slow_fast_timestep_ratio
The ratio of slow timestep size / fast timestep size (int)
Definition: ERF_MRI.H:40
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)
Set the acoustic substepping function.
Definition: ERF_MRI.H:179
~MRISplitIntegrator()=default
void set_slow_fast_timestep_ratio(const int timestep_ratio=1)
Set the ratio of slow to fast timestep sizes.
Definition: ERF_MRI.H:191
T * S_sum
Definition: ERF_MRI.H:69
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:30
int no_substepping
Should we not do acoustic substepping.
Definition: ERF_MRI.H:45
@ NumTypes
Definition: ERF_IndexDefines.H:236
@ T
Definition: ERF_IndexDefines.H:128
Definition: ERF_ConsoleIO.cpp:15