source
newtonian
three_dimensional
computational_cell.hpp
Go to the documentation of this file.
1
6
#ifndef COMPUTATIONAL_CELL_HPP
7
#define COMPUTATIONAL_CELL_HPP 1
8
9
#include "../../3D/GeometryCommon/Vector3D.hpp"
10
11
namespace
three_dimenssional
12
{
13
15
class
ComputationalCell
16
{
17
public
:
18
20
double
density
;
21
23
double
pressure
;
24
26
Vector3D
velocity
;
27
29
vector<double>
tracers
;
30
32
ComputationalCell
(
void
);
33
39
ComputationalCell
(
double
density_i,
40
double
pressure_i,
41
const
Vector3D
& velocity_i);
42
49
ComputationalCell
(
double
density_i,
50
double
pressure_i,
51
const
Vector3D
& velocity_i,
52
const
vector<double>& tracers_i);
53
};
54
}
55
#endif // COMPUTATIONAL_CELL_HPP
three_dimenssional::ComputationalCell::density
double density
Density.
Definition:
computational_cell.hpp:20
three_dimenssional::ComputationalCell::ComputationalCell
ComputationalCell(void)
Null constructor.
Definition:
computational_cell.cpp:5
three_dimenssional::ComputationalCell
Container for the hydrodynamic variables.
Definition:
computational_cell.hpp:15
Vector3D
3D Mathematical vector
Definition:
Vector3D.hpp:15
three_dimenssional
Definition:
computational_cell.hpp:11
three_dimenssional::ComputationalCell::velocity
Vector3D velocity
Velocity.
Definition:
computational_cell.hpp:26
three_dimenssional::ComputationalCell::tracers
vector< double > tracers
Tracers.
Definition:
computational_cell.hpp:29
three_dimenssional::ComputationalCell::pressure
double pressure
Pressure.
Definition:
computational_cell.hpp:23
Generated on Thu Jun 4 2020 18:12:16 by
1.8.13