Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91682472
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
Wed, Nov 13, 10:27
Size
1 KB
Mime Type
text/x-c++
Expires
Fri, Nov 15, 10:27 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22284750
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>
#include <memory>
#include <array>
#include <mpi.h>
/* -------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------- */
class
Simulation
{
public
:
Simulation
(
int
m
,
int
n
,
MPI_Comm
communicator
);
/// 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
float
compute_step
();
/// compute one row
float
compute_row
(
int
i
);
private
:
/// Global problem size
int
m_global_m
,
m_global_n
;
/// Local problem size
int
m_local_m
,
m_local_n
;
/// local offset
int
m_offset_m
,
m_offset_n
;
/// local neighbors
int
m_north_prank
,
m_south_prank
;
/// proc rank
int
m_prank
;
/// communicator size
int
m_psize
;
/// Precision to achieve
float
m_epsilon
;
/// grid spacing
float
m_h_m
;
float
m_h_n
;
/// Grids storage
DoubleBuffer
m_grids
;
/// source term
Grid
m_f
;
/// Dumper to use for outputs
std
::
unique_ptr
<
Dumper
>
m_dumper
;
/// communicator
MPI_Comm
m_communicator
;
};
#endif
/* SIMULATION_HH */
Event Timeline
Log In to Comment