VirtualFluids 0.2.0
Parallel CFD LBM Solver
Loading...
Searching...
No Matches
SimulationFileNames.cpp
Go to the documentation of this file.
1//=======================================================================================
2// ____ ____ __ ______ __________ __ __ __ __
3// \ \ | | | | | _ \ |___ ___| | | | | / \ | |
4// \ \ | | | | | |_) | | | | | | | / \ | |
5// \ \ | | | | | _ / | | | | | | / /\ \ | |
6// \ \ | | | | | | \ \ | | | \__/ | / ____ \ | |____
7// \ \ | | |__| |__| \__\ |__| \________/ /__/ \__\ |_______|
8// \ \ | | ________________________________________________________________
9// \ \ | | | ______________________________________________________________|
10// \ \| | | | __ __ __ __ ______ _______
11// \ | | |_____ | | | | | | | | | _ \ / _____)
12// \ | | _____| | | | | | | | | | | \ \ \_______
13// \ | | | | |_____ | \_/ | | | | |_/ / _____ |
14// \ _____| |__| |________| \_______/ |__| |______/ (_______/
15//
16// This file is part of VirtualFluids. VirtualFluids is free software: you can
17// redistribute it and/or modify it under the terms of the GNU General Public
18// License as published by the Free Software Foundation, either version 3 of
19// the License, or (at your option) any later version.
20//
21// VirtualFluids is distributed in the hope that it will be useful, but WITHOUT
22// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
23// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
24// for more details.
25//
26// SPDX-License-Identifier: GPL-3.0-or-later
27// SPDX-FileCopyrightText: Copyright © VirtualFluids Project contributors, see AUTHORS.md in root folder
28//
33//=======================================================================================
34#include "SimulationFileNames.h"
35
36namespace vf::gpu {
37
38const std::string fileEnding = ".dat";
39
40const std::string simulationFileNames::coordX = "coordX" + fileEnding;
41const std::string simulationFileNames::coordY = "coordY" + fileEnding;
42const std::string simulationFileNames::coordZ = "coordZ" + fileEnding;
43const std::string simulationFileNames::neighborX = "neighborX" + fileEnding;
44const std::string simulationFileNames::neighborY = "neighborY" + fileEnding;
45const std::string simulationFileNames::neighborZ = "neighborZ" + fileEnding;
46const std::string simulationFileNames::neighborWSB = "neighborWSB" + fileEnding;
47const std::string simulationFileNames::geoVec = "geoVec" + fileEnding;
48
49const std::string simulationFileNames::scaleCFC = "scaleCFC" + fileEnding;
50const std::string simulationFileNames::scaleCFF = "scaleCFF" + fileEnding;
51const std::string simulationFileNames::scaleFCC = "scaleFCC" + fileEnding;
52const std::string simulationFileNames::scaleFCF = "scaleFCF" + fileEnding;
53
54const std::string simulationFileNames::offsetVecCF = "offsetVecCF" + fileEnding;
55const std::string simulationFileNames::offsetVecFC = "offsetVecFC" + fileEnding;
56
57const std::string simulationFileNames::geomBoundaryQ = "geomBoundaryQs" + fileEnding;
58const std::string simulationFileNames::geomBoundaryValues = "geomBoundaryValues" + fileEnding;
59
60const std::string simulationFileNames::topBoundaryQ = "topBoundaryQs" + fileEnding;
61const std::string simulationFileNames::topBoundaryValues = "topBoundaryValues" + fileEnding;
62
63const std::string simulationFileNames::bottomBoundaryQ = "bottomBoundaryQs" + fileEnding;
64const std::string simulationFileNames::bottomBoundaryValues = "bottomBoundaryValues" + fileEnding;
65
66const std::string simulationFileNames::frontBoundaryQ = "frontBoundaryQs" + fileEnding;
67const std::string simulationFileNames::frontBoundaryValues = "frontBoundaryValues" + fileEnding;
68
69const std::string simulationFileNames::backBoundaryQ = "backBoundaryQs" + fileEnding;
70const std::string simulationFileNames::backBoundaryValues = "backBoundaryValues" + fileEnding;
71
72const std::string simulationFileNames::inletBoundaryQ = "inletBoundaryQs" + fileEnding;
73const std::string simulationFileNames::inletBoundaryValues = "inletBoundaryValues" + fileEnding;
74
75const std::string simulationFileNames::outletBoundaryQ = "outletBoundaryQs" + fileEnding;
76const std::string simulationFileNames::outletBoundaryValues = "outletBoundaryValues" + fileEnding;
77
78const std::string simulationFileNames::numberNodes = "numberNodes" + fileEnding;
79const std::string simulationFileNames::LBMvsSI = "LBMvsSI" + fileEnding;
80
81}
82
const std::string fileEnding
static const std::string frontBoundaryQ
static const std::string coordZ
static const std::string inletBoundaryQ
static const std::string geomBoundaryQ
static const std::string numberNodes
static const std::string frontBoundaryValues
static const std::string bottomBoundaryQ
static const std::string coordY
static const std::string geomBoundaryValues
static const std::string topBoundaryQ
static const std::string offsetVecCF
static const std::string LBMvsSI
static const std::string offsetVecFC
static const std::string neighborWSB
static const std::string scaleCFC
static const std::string neighborX
static const std::string scaleFCC
static const std::string outletBoundaryQ
static const std::string scaleFCF
static const std::string backBoundaryValues
static const std::string neighborZ
static const std::string geoVec
static const std::string outletBoundaryValues
static const std::string topBoundaryValues
static const std::string scaleCFF
static const std::string coordX
static const std::string backBoundaryQ
static const std::string neighborY
static const std::string inletBoundaryValues
static const std::string bottomBoundaryValues