Forward compatibility: flex
[foam-extend-3.2.git] / src / dbns / dbnsFlux / rusanovFlux / rusanovFlux.H
blob196aa86a778e4d4255f5d604a3e2bc6303301cca
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     rusanovFlux
27 Description
28     Rusanov flux, as per Rusanov, V.V.: Calculation of Interaction of
29     Non-Steady Shock Waves with Obstacles, J. Comp. Math. Physics,
30     1:267:279, 1961.
32 Author
33     Aleksandar Jemcov
34     Rewrite by Hrvoje Jasak
36 SourceFiles
37     rusanovFlux.H
39 \*---------------------------------------------------------------------------*/
41 #ifndef rusanovFlux_H
42 #define rusanovFlux_H
44 #include "fvCFD.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace Foam
51 /*---------------------------------------------------------------------------*\
52                            Class rusanovFlux Declaration
53 \*---------------------------------------------------------------------------*/
55 class rusanovFlux
58 public:
60     // Constructors
62         //- Construct null
63         rusanovFlux()
64         {}
67     // Destructor - default
70     // Member Functions
72         //- Update fluxes based on current left and right states
73         void evaluateFlux
74         (
75             scalar& rhoFlux,
76             vector& rhoUFlux,
77             scalar& rhoEFlux,
78             const scalar& pLeft,
79             const scalar& pRight,
80             const vector& ULeft,
81             const vector& URight,
82             const scalar& TLeft,
83             const scalar& TRight,
84             const scalar& RLeft,
85             const scalar& RRight,
86             const scalar& CvLeft,
87             const scalar& CvRight,
88             const vector& Sf,
89             const scalar& magSf
90         ) const;
93 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 } // End namespace Foam
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 #endif
101 // ************************************************************************* //