Loading...
Searching...
No Matches
UnsteadyNSExplicit.H
Go to the documentation of this file.
1/*---------------------------------------------------------------------------*\
2 ██╗████████╗██╗ ██╗ █████╗ ██████╗ █████╗ ███████╗██╗ ██╗
3 ██║╚══██╔══╝██║ ██║██╔══██╗██╔════╝██╔══██╗ ██╔════╝██║ ██║
4 ██║ ██║ ███████║███████║██║ ███████║█████╗█████╗ ██║ ██║
5 ██║ ██║ ██╔══██║██╔══██║██║ ██╔══██║╚════╝██╔══╝ ╚██╗ ██╔╝
6 ██║ ██║ ██║ ██║██║ ██║╚██████╗██║ ██║ ██║ ╚████╔╝
7 ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝ ╚═══╝
8
9 * In real Time Highly Advanced Computational Applications for Finite Volumes
10 * Copyright (C) 2020 by the ITHACA-FV authors
11-------------------------------------------------------------------------------
12License
13 This file is part of ITHACA-FV
14 ITHACA-FV is free software: you can redistribute it and/or modify
15 it under the terms of the GNU Lesser General Public License as published by
16 the Free Software Foundation, either version 3 of the License, or
17 (at your option) any later version.
18 ITHACA-FV is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU Lesser General Public License for more details.
22 You should have received a copy of the GNU Lesser General Public License
23 along with ITHACA-FV. If not, see <http://www.gnu.org/licenses/>.
24Class
25 UnsteadyNSExplicit
26Description
27 Reduction class for a NON-Stationary NS problem
28SourceFiles
29 UnsteadyNSExplicit.C
30\*---------------------------------------------------------------------------*/
31
36
37#ifndef UnsteadyNSExplicit_H
38#define UnsteadyNSExplicit_H
39#include "fvCFD.H"
40#include "singlePhaseTransportModel.H"
41#include "turbulentTransportModel.H"
42#include "fvOptions.H"
43#include "IOporosityModelList.H"
44#include "IOMRFZoneList.H"
45#include "fixedFluxPressureFvPatchScalarField.H"
46#include "steadyNS.H"
47#include "unsteadyNS.H"
48#include <iostream>
49
50// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
51
52/*---------------------------------------------------------------------------*\
53 Class SteadyNS Declaration
54\*---------------------------------------------------------------------------*/
55
57
61{
62 public:
63 // Constructors
66
68 UnsteadyNSExplicit(int argc, char* argv[]);
69
71 autoPtr<dimensionedScalar> _nu;
72
74 autoPtr<dimensionedScalar> _dt;
75
77 label pRefCell;
78
80 scalar pRefValue;
81
82 // Functions
83
84 //--------------------------------------------------------------------------
90 void truthSolve(List<scalar> mu_now,
91 fileName folder = "./ITHACAoutput/Offline/");
92
93
94};
95// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96
97#endif
98
99
100
101
102
103
104
105
106
107
Implementation of a parametrized full order unsteady NS problem and preparation of the the reduced ...
label pRefCell
Reference pressure cell.
UnsteadyNSExplicit()
Construct Null.
scalar pRefValue
Reference pressure value.
autoPtr< dimensionedScalar > _dt
dimensionedScalar dt;
autoPtr< dimensionedScalar > _nu
dimensionedScalar nu;
void truthSolve()
Perform a TruthSolve.
Implementation of a parametrized full order unsteady NS problem and preparation of the the reduced ...
Definition unsteadyNS.H:62
Header file of the steadyNS class.
Header file of the unsteadyNS class.