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,
70 std::function<void (
T&,
T&,
T&,
const double,
const double,
int)>
no_substep;
73 amrex::Vector<std::unique_ptr<T> >
T_store;
85 const bool include_ghost =
true;
86 amrex::IntegratorOps<T>::CreateLike(
T_store, S_data, include_ghost);
88 amrex::IntegratorOps<T>::CreateLike(
T_store, S_data, include_ghost);
180 void set_slow_rhs_pre (std::function<
void(
T&,
T&,
T&,
const double,
const double,
const double,
const int)> F)
194 const double,
const double,
228 std::function<void(
T&,
const T&,
const double,
const double)>
get_rhs ()
241 double advance (
T& S_old,
T& S_new,
double time,
const double time_step)
243 BL_PROFILE_REGION(
"MRI_advance");
244 using namespace amrex;
280 for (
int i(0); i<n_data; ++i)
283 MultiFab::Copy(S_new[i],S_old[i],0,0,num_vars[i],S_old[i].nGrowVect());
295 double time_stage = time;
296 double old_time_stage;
300 for (
int nrk = 0; nrk < 3; nrk++)
303 old_time_stage = time_stage;
312 nsubsteps = std::max(substep_ratio/3, 1);
322 nsubsteps = std::max(substep_ratio/2, 1);
332 nsubsteps = substep_ratio;
333 dtau =
timestep /
static_cast<double>(nsubsteps);
354 for (
int ks = 0; ks < nsubsteps; ++ks)
356 acoustic_substepping(ks, nsubsteps, nrk, *
F_slow, S_old, S_new, *
S_sum, dtau,
timestep, inv_fac,
357 time + ks*dtau, time + (ks+1) * dtau);
388 const bool l_midpoint = (
anelastic_type == AnelasticType::MidPoint);
390 for (
int nrk = 0; nrk < 2; nrk++)
393 old_time_stage = time_stage;
398 time_stage = time + nsubsteps * dtau;
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:396
constexpr amrex::Real three
Definition: ERF_NumericalConstants.H:32
constexpr amrex::Real two
Definition: ERF_NumericalConstants.H:31
constexpr amrex::Real one
Definition: ERF_NumericalConstants.H:30
constexpr amrex::Real myhalf
Definition: ERF_NumericalConstants.H:34
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:75
std::function< void(T &, const T &, const double, const double)> get_rhs()
Definition: ERF_MRI.H:228
amrex::Vector< std::unique_ptr< T > > T_store
Definition: ERF_MRI.H:73
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:184
void map_data(std::function< void(T &)> Map)
Apply a mapping function to all internal stored data.
Definition: ERF_MRI.H:423
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:180
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:135
void setAnelasticType(AnelasticType _anelastic_type=AnelasticType::RK2)
Set which two-stage scheme the anelastic integrator uses.
Definition: ERF_MRI.H:153
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:171
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:65
int ncomp_cons
How many components in the cell-centered MultiFab.
Definition: ERF_MRI.H:60
void setNoSubstepping(int _no_substepping)
Set whether acoustic substepping is disabled.
Definition: ERF_MRI.H:162
AnelasticType anelastic_type
Which two-stage scheme the anelastic integrator uses.
Definition: ERF_MRI.H:55
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:223
void initialize(const T &S_data)
Initialize integrator storage.
Definition: ERF_MRI.H:107
MRISplitIntegrator(MRISplitIntegrator &&) noexcept=default
void initialize_data(const T &S_data)
Allocate internal storage for integrator variables.
Definition: ERF_MRI.H:81
MRISplitIntegrator(const T &S_data)
Definition: ERF_MRI.H:98
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:144
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:70
int get_slow_fast_timestep_ratio()
Get the current slow-to-fast timestep ratio.
Definition: ERF_MRI.H:214
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:241
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:193
~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:205
T * S_sum
Definition: ERF_MRI.H:74
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