svMultiPhysics
Loading...
Searching...
No Matches
ris.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 RIS_H
5#define RIS_H
6
7#include "ComMod.h"
8#include "SolutionStates.h"
9
10namespace ris {
11
12void ris_meanq(ComMod& com_mod, CmMod& cm_mod, const SolutionStates& solutions);
13void ris_resbc(ComMod& com_mod, const SolutionStates& solutions);
14void setbc_ris(ComMod& com_mod, const bcType& lBc, const mshType& lM, const faceType& lFa,
15 const SolutionStates& solutions);
16
17void ris_updater(ComMod& com_mod, CmMod& cm_mod, SolutionStates& solutions);
18void ris_status(ComMod& com_mod, CmMod& cm_mod);
19
20void doassem_ris(ComMod& com_mod, const int d, const Vector<int>& eqN,
21 const Array3<double>& lK, const Array<double>& lR);
22
23void doassem_velris(ComMod& com_mod, const int d, const Array<int>& eqN,
24 const Array3<double>& lK, const Array<double>& lR);
25
26void clean_r_ris(ComMod& com_mod);
27void setbcdir_ris(ComMod& com_mod, const SolutionStates& solutions);
28
29// TODO: RIS 0D code
30void ris0d_bc(ComMod& com_mod, CmMod& cm_mod, const SolutionStates& solutions);
31void ris0d_status(ComMod& com_mod, CmMod& cm_mod, const SolutionStates& solutions);
32
33};
34
35#endif
36
The Array3 template class implements a simple interface to 3D arrays.
Definition Array3.h:25
The CmMod class duplicates the data structures in the Fortran CMMOD module defined in COMU....
Definition CmMod.h:35
The ComMod class duplicates the data structures in the Fortran COMMOD module defined in MOD....
Definition ComMod.h:1525
The Vector template class is used for storing int and double data.
Definition Vector.h:24
Boundary condition data type.
Definition ComMod.h:127
The face type containing mesh at boundary.
Definition ComMod.h:519
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