-
Notifications
You must be signed in to change notification settings - Fork 978
Expand file tree
/
Copy pathCSU2BinaryMeshReaderFVM.hpp
More file actions
55 lines (50 loc) · 1.83 KB
/
CSU2BinaryMeshReaderFVM.hpp
File metadata and controls
55 lines (50 loc) · 1.83 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
43
44
45
46
47
48
49
50
51
52
53
54
55
/*!
* \file CSU2BinaryMeshReaderFVM.hpp
* \brief Header file for the class CSU2BinaryMeshReaderFVM.
* The implementations are in the <i>CSU2BinaryMeshReaderFVM.cpp</i> file.
* \author T. Econonmon, E. van der Weide
* \version 8.2.0 "Harrier"
*
* SU2 Project Website: https://su2code.github.io
*
* The SU2 Project is maintained by the SU2 Foundation
* (http://su2foundation.org)
*
* Copyright 2012-2025, 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/>.
*/
#pragma once
#include "CSU2BinaryMeshReaderBase.hpp"
/*!
* \class CSU2BinaryMeshReaderFVM
* \brief Reads a native SU2 binary grid into linear partitions for the finite volume solver (FVM).
* \author T. Econonmon, E. van der Weide
*/
class CSU2BinaryMeshReaderFVM : public CSU2BinaryMeshReaderBase {
private:
/*!
* \brief Splits a single surface actuator disk boundary into two separate markers (repeated points).
*/
void SplitActuatorDiskSurface();
public:
/*!
* \brief Constructor of the CSU2BinaryMeshReaderFVM class.
*/
CSU2BinaryMeshReaderFVM(CConfig* val_config, unsigned short val_iZone, unsigned short val_nZone);
/*!
* \brief Destructor of the CSU2BinaryMeshReaderFVM class.
*/
~CSU2BinaryMeshReaderFVM(void) override;
};