OpenSWMM Engine  6.0.0-alpha.1
Data-oriented, plugin-extensible SWMM Engine (6.0.0-alpha.1)
Loading...
Searching...
No Matches
VertexReconstruction.hpp
Go to the documentation of this file.
1
17#ifndef OPENSWMM_ENGINE_2D_VERTEX_RECONSTRUCTION_HPP
18#define OPENSWMM_ENGINE_2D_VERTEX_RECONSTRUCTION_HPP
19
20#include "../data/MeshData.hpp"
21#include "../data/SurfaceStateData.hpp"
22
23namespace openswmm::twoD {
24
34void buildVertexStencils(MeshData& mesh);
35
45void reconstructVertexHeads(const MeshData& mesh, SurfaceStateData& state);
46
47} // namespace openswmm::twoD
48
49#endif // OPENSWMM_ENGINE_2D_VERTEX_RECONSTRUCTION_HPP
Definition NodeCoupling.cpp:15
void buildVertexStencils(MeshData &mesh)
Build pseudo-Laplacian reconstruction stencils for all vertices.
Definition VertexReconstruction.cpp:18
void reconstructVertexHeads(const MeshData &mesh, SurfaceStateData &state)
Reconstruct head values at vertices from cell-centred heads.
Definition VertexReconstruction.cpp:140