My Project
Loading...
Searching...
No Matches
DamarisParameters.hpp
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3/*
4 Copyright 2022 SINTEF Digital, Mathematics and Cybernetics.
5 Copyright 2023 Inria, Bretagne–Atlantique Research Center
6
7 This file is part of the Open Porous Media project (OPM).
8
9 OPM is free software: you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation, either version 2 of the License, or
12 (at your option) any later version.
13
14 OPM is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with OPM. If not, see <http://www.gnu.org/licenses/>.
21
22 Consult the COPYING file in the top-level source directory of this
23 module for the precise wording of the license and the list of
24 copyright holders.
25*/
31#ifndef OPM_DAMARIS_PARAMETERS_HPP
32#define OPM_DAMARIS_PARAMETERS_HPP
33
34namespace Opm::Parameters {
35
36struct EnableDamarisOutput { static constexpr bool value = false; };
37struct DamarisOutputHdfCollective { static constexpr bool value = true; };
38struct DamarisSaveMeshToHdf { static constexpr bool value = false; };
39struct DamarisSaveToHdf { static constexpr bool value = true; };
40struct DamarisPythonScript { static constexpr auto value = ""; };
41struct DamarisPythonParaviewScript { static constexpr auto value = ""; };
42struct DamarisSimName { static constexpr auto value = ""; };
43struct DamarisDedicatedCores { static constexpr int value = 1; };
44struct DamarisDedicatedNodes { static constexpr int value = 0; };
45struct DamarisSharedMemoryName { static constexpr auto value = "" ; };
46struct DamarisSharedMemorySizeBytes { static constexpr long value = 536870912; }; // 512 MB
47struct DamarisLogLevel { static constexpr auto value = "info"; };
48struct DamarisDaskFile { static constexpr auto value = ""; };
49struct DamarisLimitVariables { static constexpr auto value = ""; };
50
51} // namespace Opm::Parameters
52
53namespace Opm {
54
57
58}
59
60#endif // OPM_DAMARIS_PARAMETERS_HPP
This file contains a set of helper functions used by VFPProd / VFPInj.
Definition blackoilboundaryratevector.hh:37
void registerDamarisParameters()
Register damaris runtime parameters.
Definition DamarisParameters.cpp:35
Definition DamarisParameters.hpp:48
Definition DamarisParameters.hpp:43
Definition DamarisParameters.hpp:44
Definition DamarisParameters.hpp:49
Definition DamarisParameters.hpp:47
Definition DamarisParameters.hpp:37
Definition DamarisParameters.hpp:41
Definition DamarisParameters.hpp:40
Definition DamarisParameters.hpp:38
Definition DamarisParameters.hpp:39
Definition DamarisParameters.hpp:45
Definition DamarisParameters.hpp:46
Definition DamarisParameters.hpp:42
Definition DamarisParameters.hpp:36