svMultiPhysics
Loading...
Searching...
No Matches
mesh.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 MESH_H
5#define MESH_H
6
7#include "ComMod.h"
8#include "SolutionStates.h"
9
10#include "consts.h"
11
12namespace mesh {
13
14void construct_mesh(ComMod& com_mod, CepMod& cep_mod, const mshType& lM, const SolutionStates& solutions);
15
16};
17
18#endif
19
Definition CepMod.h:205
The ComMod class duplicates the data structures in the Fortran COMMOD module defined in MOD....
Definition ComMod.h:1525
This is the container for a mesh or NURBS patch, those specific to NURBS are noted.
Definition ComMod.h:871
Holds solution state at old, current, and intermediate time levels.
Definition SolutionStates.h:39