svMultiPhysics
Loading...
Searching...
No Matches
post.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 POST_H
5#define POST_H
6
7#include "Simulation.h"
8#include "consts.h"
9
10namespace post {
11
12void all_post(Simulation* simulation, Array<double>& res, const Array<double>& lY, const Array<double>& lD,
13 consts::OutputNameType outGrp, const int iEq);
14
15void bpost(Simulation* simulation, const mshType& lM, Array<double>& res, const Array<double>& lY, const Array<double>& lD,
16 consts::OutputNameType outGrp);
17
18void div_post(Simulation* simulation, const mshType& lM, Array<double>& res, const Array<double>& lY, const Array<double>& lD, const int iEq);
19
20void fib_algn_post(Simulation* simulation, const mshType& lM, Array<double>& res, const Array<double>& lD, const int iEq);
21
22void fib_dir_post(Simulation* simulation, const mshType& lM, const int nFn, Array<double>& res, const Array<double>& lD, const int iEq);
23
24void fib_strech(Simulation* simulation, const int iEq, const mshType& lM, const Array<double>& lD, Vector<double>& res);
25
26void post(Simulation* simulation, const mshType& lM, Array<double>& res, const Array<double>& lY, const Array<double>& lD,
27 consts::OutputNameType outGrp, const int iEq);
28
29void ppbin2vtk(Simulation* simulation);
30
31void shl_post(Simulation* simulation, const mshType& lM, const int m, Array<double>& res,
32 Vector<double>& resE, const Array<double>& lD, const int iEq, consts::OutputNameType outGrp);
33
34void tpost(Simulation* simulation, const mshType& lM, const int m, Array<double>& res, Vector<double>& resE, const Array<double>& lD,
35 const Array<double>& lY, const int iEq, consts::OutputNameType outGrp);
36
37};
38
39#endif
40
Definition Simulation.h:14
The Vector template class is used for storing int and double data.
Definition Vector.h:23
This is the container for a mesh or NURBS patch, those specific to NURBS are noted.
Definition ComMod.h:863