mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
* Update opm-common submodule and use branch development https://github.com/CeetronSolutions/opm-common/tree/development * Add cmake-format of ThirdParty/custom-opm-common/CMakeLists.txt * Add boost-test * Update generated files and simplify CMake configuration Add -D_USE_MATH_DEFINES to CMake to avoid multiple local defines Introduce flag CREATE_OPM_COMMON_KEYWORDS used to generate C++ files JSON files. This enables use also in MSVC. Remove obsolete direct include of source files. * Update generated ESMRY test file There was a invalid extra : postfix for some keywords like NEWTON and other N* keywords. When creating ESRMY using updated opm-common fix this issue. * Update URL for custom-opm-common
36 lines
1.9 KiB
C++
36 lines
1.9 KiB
C++
#include <opm/input/eclipse/Parser/ParserKeywords/U.hpp>
|
|
#include <opm/input/eclipse/Parser/ParserKeywords/Builtin.hpp>
|
|
namespace Opm { namespace ParserKeywords {
|
|
const ::Opm::ParserKeyword Builtin::get_UDADIMS() { return UDADIMS(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UDQ() { return UDQ(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UDQDIMS() { return UDQDIMS(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UDQPARAM() { return UDQPARAM(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UDT() { return UDT(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UDTDIMS() { return UDTDIMS(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UNCODHMD() { return UNCODHMD(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UNIFIN() { return UNIFIN(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UNIFOUT() { return UNIFOUT(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UNIFOUTS() { return UNIFOUTS(); }
|
|
const ::Opm::ParserKeyword Builtin::get_UNIFSAVE() { return UNIFSAVE(); }
|
|
const ::Opm::ParserKeyword Builtin::get_USECUPL() { return USECUPL(); }
|
|
const ::Opm::ParserKeyword Builtin::get_USEFLUX() { return USEFLUX(); }
|
|
const ::Opm::ParserKeyword Builtin::get_USENOFLO() { return USENOFLO(); }
|
|
|
|
void Builtin::emplaceU() const {
|
|
this->keywords.emplace("UDADIMS", UDADIMS());
|
|
this->keywords.emplace("UDQ", UDQ());
|
|
this->keywords.emplace("UDQDIMS", UDQDIMS());
|
|
this->keywords.emplace("UDQPARAM", UDQPARAM());
|
|
this->keywords.emplace("UDT", UDT());
|
|
this->keywords.emplace("UDTDIMS", UDTDIMS());
|
|
this->keywords.emplace("UNCODHMD", UNCODHMD());
|
|
this->keywords.emplace("UNIFIN", UNIFIN());
|
|
this->keywords.emplace("UNIFOUT", UNIFOUT());
|
|
this->keywords.emplace("UNIFOUTS", UNIFOUTS());
|
|
this->keywords.emplace("UNIFSAVE", UNIFSAVE());
|
|
this->keywords.emplace("USECUPL", USECUPL());
|
|
this->keywords.emplace("USEFLUX", USEFLUX());
|
|
this->keywords.emplace("USENOFLO", USENOFLO());
|
|
}
|
|
} }
|