Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110508050
simulation.hh
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Apr 26, 15:36
Size
1 KB
Mime Type
text/x-c++
Expires
Mon, Apr 28, 15:36 (2 d)
Engine
blob
Format
Raw Data
Handle
25810271
Attached To
R7871 phys-743-exercises
simulation.hh
View Options
#ifndef SIMULATION_HH
#define SIMULATION_HH
/* -------------------------------------------------------------------------- */
#include "double_buffer.hh"
#include "dumpers.hh"
#include "grid.hh"
/* -------------------------------------------------------------------------- */
#include <tuple>
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
class Simulation {
public:
Simulation(int m, int n);
/// set the initial conditions, Dirichlet and source term
virtual void set_initial_conditions();
/// perform the simulation
std::tuple<float, int> compute();
/// access the precision
void set_epsilon(float epsilon);
float epsilon() const;
protected:
/// compute one step and return an error
virtual void compute_step();
private:
/// Current error of the solver
float l2{0};
/// Global problem size
int m_global_m{0}, m_global_n{0};
/// Precision to achieve
float m_epsilon{0};
/// grid spacing
float m_h_m{0};
float m_h_n{0};
/// Grids storage
DoubleBuffer m_grids;
/// source term
Grid m_f;
/// Dumper to use for outputs
std::unique_ptr<Dumper> m_dumper;
/// number of omp threads
int m_n_threads{1};
};
#endif /* SIMULATION_HH */
Event Timeline
Log In to Comment