svMultiPhysics
Loading...
Searching...
No Matches
eq_assem.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 EQ_ASSEM_H
5#define EQ_ASSEM_H
6
7#include "ComMod.h"
8#include "Simulation.h"
9
10namespace eq_assem {
11
12void b_assem_neu_bc(ComMod& com_mod, const faceType& lFa, const Vector<double>& hg, const Array<double>& Yg);
13
14void b_neu_folw_p(ComMod& com_mod, const bcType& lBc, const faceType& lFa, const Vector<double>& hg, const Array<double>& Dg);
15
16void fsi_ls_upd(ComMod& com_mod, const bcType& lBc, const faceType& lFa);
17
18void global_eq_assem(ComMod& com_mod, CepMod& cep_mod, const mshType& lM, const Array<double>& Ag, const Array<double>& Yg, const Array<double>& Dg);
19
20};
21
22#endif
23
Definition CepMod.h:193
The ComMod class duplicates the data structures in the Fortran COMMOD module defined in MOD....
Definition ComMod.h:1514
The Vector template class is used for storing int and double data.
Definition Vector.h:23
Boundary condition data type.
Definition ComMod.h:126
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