Finite Volume Solver
prototype
A framework to build finite volume solvers for the AG Klein at the Freie Universität Berlin.
include
fub
Solver.hpp
Go to the documentation of this file.
1
// Copyright (c) 2019 Maikel Nadolski
2
//
3
// Permission is hereby granted, free of charge, to any person obtaining a copy
4
// of this software and associated documentation files (the "Software"), to deal
5
// in the Software without restriction, including without limitation the rights
6
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
// copies of the Software, and to permit persons to whom the Software is
8
// furnished to do so, subject to the following conditions:
9
//
10
// The above copyright notice and this permission notice shall be included in
11
// all copies or substantial portions of the Software.
12
//
13
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
// SOFTWARE.
20
21
#include "
fub/CartesianCoordinates.hpp
"
22
#include "
fub/CompleteFromCons.hpp
"
23
#include "
fub/Direction.hpp
"
24
#include "
fub/Duration.hpp
"
25
#include "
fub/Equation.hpp
"
26
#include "
fub/Execution.hpp
"
27
#include "
fub/ForEach.hpp
"
28
#include "
fub/PatchDataView.hpp
"
29
30
#include "
fub/HyperbolicPatchIntegrator.hpp
"
31
#include "
fub/solver/DimensionalSplitLevelIntegrator.hpp
"
32
#include "
fub/solver/NoSubcycleSolver.hpp
"
33
#include "
fub/solver/SplitSystemSourceLevelIntegrator.hpp
"
34
#include "
fub/solver/SubcycleFineFirstSolver.hpp
"
35
36
#include "
fub/NewtonIteration.hpp
"
37
38
#include "
fub/RunSimulation.hpp
"
39
40
#include "
fub/equations/Advection.hpp
"
41
#include "
fub/equations/Burgers.hpp
"
42
#include "
fub/equations/IdealGasMix.hpp
"
43
#include "
fub/equations/PerfectGas.hpp
"
44
#include "
fub/equations/ShallowWater.hpp
"
45
46
#include "fub/equations/ideal_gas_mix/mechanism/Burke2012.hpp"
47
#include "
fub/equations/ideal_gas_mix/EinfeldtSignalVelocities.hpp
"
48
#include "
fub/equations/ideal_gas_mix/HlleMethod.hpp
"
49
#include "
fub/equations/ideal_gas_mix/MusclHancockPrimMethod.hpp
"
50
#include "
fub/equations/ideal_gas_mix/MusclHancockCharactersticMethod.hpp
"
51
52
#include "
fub/equations/perfect_gas/EinfeldtSignalVelocities.hpp
"
53
#include "
fub/equations/perfect_gas/GodunovMethod.hpp
"
54
#include "
fub/equations/perfect_gas/MusclHancockMethod.hpp
"
55
#include "
fub/equations/perfect_gas/ExactRiemannSolver.hpp
"
56
#include "
fub/equations/perfect_gas/HllemMethod.hpp
"
57
#include "
fub/equations/perfect_gas/MusclHancockPrimMethod.hpp
"
58
#include "
fub/equations/perfect_gas/MusclHancockCharactersticMethod.hpp
"
59
#include "
fub/equations/perfect_gas/ThirdOrderRungeKuttaMethod.hpp
"
60
61
#include "
fub/flux_method/GodunovMethod.hpp
"
62
#include "
fub/flux_method/HllMethod.hpp
"
63
#include "
fub/flux_method/MusclHancockMethod.hpp
"
64
65
#include "
fub/ext/Log.hpp
"
66
#include "
fub/ext/Mpi.hpp
"
67
#include "
fub/ext/ProgramOptions.hpp
"
68
#include "
fub/ext/Vc.hpp
"
69
70
#include "
fub/cutcell_method/KbnStabilisation.hpp
"
71
72
#include "fub/split_method/GodunovSplitting.hpp"
73
#include "fub/split_method/StrangSplitting.hpp"
74
#include "fub/split_method/StrangSplittingLumped.hpp"
75
76
#include "
fub/tagging_method/GradientDetector.hpp
"
77
78
#include "
fub/geometry/Cone.hpp
"
79
#include "
fub/geometry/ExpandTube.hpp
"
80
#include "
fub/geometry/Geometry.hpp
"
81
#include "
fub/geometry/Halfspace.hpp
"
82
#include "
fub/geometry/Invert.hpp
"
83
#include "
fub/geometry/Polygon.hpp
"
84
#include "
fub/geometry/RotateAxis.hpp
"
85
86
#include "
fub/output/AsOutput.hpp
"
87
#include "
fub/output/BasicOutput.hpp
"
88
#include "
fub/output/CounterOutput.hpp
"
89
#include "
fub/output/MultipleOutputs.hpp
"
90
#include "
fub/output/OutputAtFrequencyOrInterval.hpp
"
91
#include "
fub/output/OutputFactory.hpp
"
Advection.hpp
AsOutput.hpp
BasicOutput.hpp
Burgers.hpp
CartesianCoordinates.hpp
CompleteFromCons.hpp
Cone.hpp
CounterOutput.hpp
DimensionalSplitLevelIntegrator.hpp
Direction.hpp
Duration.hpp
Equation.hpp
Execution.hpp
ExpandTube.hpp
ForEach.hpp
Halfspace.hpp
HllMethod.hpp
HlleMethod.hpp
HyperbolicPatchIntegrator.hpp
IdealGasMix.hpp
Invert.hpp
KbnStabilisation.hpp
Log.hpp
Mpi.hpp
MultipleOutputs.hpp
NewtonIteration.hpp
NoSubcycleSolver.hpp
OutputAtFrequencyOrInterval.hpp
OutputFactory.hpp
PatchDataView.hpp
PerfectGas.hpp
Polygon.hpp
ProgramOptions.hpp
RotateAxis.hpp
RunSimulation.hpp
ShallowWater.hpp
SplitSystemSourceLevelIntegrator.hpp
SubcycleFineFirstSolver.hpp
ThirdOrderRungeKuttaMethod.hpp
Vc.hpp
EinfeldtSignalVelocities.hpp
EinfeldtSignalVelocities.hpp
ExactRiemannSolver.hpp
GodunovMethod.hpp
MusclHancockMethod.hpp
GodunovMethod.hpp
MusclHancockMethod.hpp
Geometry.hpp
MusclHancockCharactersticMethod.hpp
MusclHancockPrimMethod.hpp
HllemMethod.hpp
MusclHancockCharactersticMethod.hpp
MusclHancockPrimMethod.hpp
GradientDetector.hpp
Generated on Fri Feb 12 2021 07:45:54 for Finite Volume Solver by
1.9.1