You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BC inlet for SST solver based on local conditions at the Inlet (#1796)
* BC inlet based on fluid properties at the inlets
* cleaning up
* moving implementations to UniformInlet
* addressing previous comments
* fixing segmentation faults
* let postprocess dealing with muT
* fixing inconsistencies
* small fix
* updating residuals
* update restart test cases
* updating residuals
* small fix
* point testcases to develop
* generic way to access primitive indices
Co-authored-by: Pedro Gomes <[email protected]>
/*!\brief MIXINGVISCOSITY_MODEL \n DESCRIPTION: Mixing model of the viscosity \n OPTIONS: See \link ViscosityModel_Map \endlink \n DEFAULT: DAVIDSON \ingroup Config*/
* SU2 is free software; you can redistribute it and/or
14
+
* modify it under the terms of the GNU Lesser General Public
15
+
* License as published by the Free Software Foundation; either
16
+
* version 2.1 of the License, or (at your option) any later version.
17
+
*
18
+
* SU2 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 GNU
21
+
* Lesser General Public License for more details.
22
+
*
23
+
* You should have received a copy of the GNU Lesser General Public
24
+
* License along with SU2. If not, see <http://www.gnu.org/licenses/>.
25
+
*/
26
+
27
+
#pragma once
28
+
29
+
#include<cstdint>
30
+
#include<cstring>
31
+
#include"CEulerVariable.hpp"
32
+
#include"CIncEulerVariable.hpp"
33
+
#include"CNEMOEulerVariable.hpp"
34
+
35
+
/*!
36
+
* \class CPrimitiveIndices
37
+
* \brief Abstract wrapper for the CIndices classes of CEulerVariable, CIncEulerVariable, etc.
38
+
* This should only be used when the concrete type of solver variable is not known.
39
+
* \note We are using some tricks to try to make this more efficient than virtual functions.
0 commit comments