MPS-Basic
Loading...
Searching...
No Matches
domain.hpp
Go to the documentation of this file.
1#pragma once
2
3#include "common.hpp"
4
8class Domain {
9private:
10public:
11 double xMin;
12 double xMax;
13 double yMin;
14 double yMax;
15 double zMin;
16 double zMax;
18};
represents the domain of the simulation
Definition domain.hpp:8
double xMax
maximum x coordinate of the domain
Definition domain.hpp:12
double zMin
minimum z coordinate of the domain
Definition domain.hpp:15
double zMax
maximum z coordinate of the domain
Definition domain.hpp:16
double xMin
minimum x coordinate of the domain
Definition domain.hpp:11
double yMin
minimum y coordinate of the domain
Definition domain.hpp:13
double zLength
Definition domain.hpp:17
double yLength
Definition domain.hpp:17
double yMax
maximum y coordinate of the domain
Definition domain.hpp:14
double xLength
Definition domain.hpp:17