Select Git revision
MeshModule.hpp
Stéphane Del Pino authored
Separate the notion of Nlr (Eucclhyd normals) of the calculation of Cjr in 3D. It remain to implement its calculation in 2D to finish this part. This should allow a trivial implementation of the Eucclhyd scheme and simplify coding off pressure boundary conditions.
MeshModule.hpp 519 B
#ifndef MESH_MODULE_HPP
#define MESH_MODULE_HPP
#include <language/modules/BuiltinModule.hpp>
#include <language/utils/ASTNodeDataTypeTraits.hpp>
#include <utils/PugsMacros.hpp>
class IMesh;
template <>
inline ASTNodeDataType ast_node_data_type_from<std::shared_ptr<const IMesh>> = {ASTNodeDataType::type_id_t, "mesh"};
class MeshModule : public BuiltinModule
{
public:
std::string_view
name() const final
{
return "mesh";
}
MeshModule();
~MeshModule() = default;
};
#endif // MESH_MODULE_HPP