svMultiPhysics
Loading...
Searching...
No Matches
load_msh.h
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the University of California, and others.
2// SPDX-License-Identifier: BSD-3-Clause
3
4#ifndef LOAD_MSH_H
5#define LOAD_MSH_H
6
7#include "ComMod.h"
8#include "Parameters.h"
9#include "Simulation.h"
10
11#include <string>
12
13namespace load_msh {
14
15 void read_ccne(Simulation* simulation, mshType& mesh, const MeshParameters* mesh_param);
16
17 void read_ndnlff(const std::string& file_name, faceType& face);
18
19 void read_sv(Simulation* simulation, mshType& mesh, const MeshParameters* param);
20
21};
22
23#endif
24
The MeshParameters class is used to store paramaters for the 'Add_mesh' XML element.
Definition Parameters.h:1466
Definition Simulation.h:14
The face type containing mesh at boundary.
Definition ComMod.h:511
This is the container for a mesh or NURBS patch, those specific to NURBS are noted.
Definition ComMod.h:863