Tsunami Project Lab
Loading...
Searching...
No Matches
Setup.h
Go to the documentation of this file.
1
7#ifndef TSUNAMI_LAB_SETUPS_SETUP_H
8#define TSUNAMI_LAB_SETUPS_SETUP_H
9
10#include "../constants.h"
11
12namespace tsunami_lab {
13 namespace setups {
14 class Setup;
15 }
16}
17
22 public:
26 virtual ~Setup(){};
27
35 virtual t_real getHeight( t_real i_x,
36 t_real i_y ) const = 0;
37
46 t_real i_y ) const = 0;
47
56 t_real i_y ) const = 0;
57
58};
59
60#endif
Definition Setup.h:21
virtual ~Setup()
Definition Setup.h:26
virtual t_real getMomentumY(t_real i_x, t_real i_y) const =0
virtual t_real getMomentumX(t_real i_x, t_real i_y) const =0
virtual t_real getHeight(t_real i_x, t_real i_y) const =0
Definition constants.h:12
float t_real
floating point type
Definition constants.h:17