-
Notifications
You must be signed in to change notification settings - Fork 978
Expand file tree
/
Copy pathCTurbVariable.cpp
More file actions
42 lines (35 loc) · 1.37 KB
/
CTurbVariable.cpp
File metadata and controls
42 lines (35 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*!
* \file CTurbVariable.cpp
* \brief Definition of the solution fields.
* \author F. Palacios, A. Bueno
* \version 8.1.0 "Harrier"
*
* SU2 Project Website: https://su2code.github.io
*
* The SU2 Project is maintained by the SU2 Foundation
* (http://su2foundation.org)
*
* Copyright 2012-2024, SU2 Contributors (cf. AUTHORS.md)
*
* SU2 is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* SU2 is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with SU2. If not, see <http://www.gnu.org/licenses/>.
*/
#include "../../include/variables/CTurbVariable.hpp"
CTurbVariable::CTurbVariable(unsigned long npoint, unsigned long ndim, unsigned long nvar, CConfig *config)
: CScalarVariable(npoint, ndim, nvar, config) {
turb_index.resize(nPoint) = su2double(1.0);
intermittency.resize(nPoint) = su2double(1.0);
}
void CTurbVariable::RegisterEddyViscosity(bool input) {
RegisterContainer(input, muT);
}