svMultiPhysics
Loading...
Searching...
No Matches
l_elas.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 L_ELAS_H
5#define L_ELAS_H
6
7#include "ComMod.h"
8
9namespace l_elas {
10
11void b_l_elas(ComMod& com_mod, const int eNoN, const double w, const Vector<double>& N, const double h,
12 const Vector<double>& nV, Array<double>& lR);
13
14void construct_l_elas(ComMod& com_mod, const mshType& lM, const Array<double>& Ag, const Array<double>& Dg);
15
16void l_elas_2d(ComMod& com_mod, const int eNoN, const double w, const Vector<double>& N,
17 const Array<double>& Nx, const Array<double>& al, const Array<double>& dl, const Array<double>& bfl,
18 const Array<double>& pS0l, Vector<double>& pSl, Array<double>& lR, Array3<double>& lK);
19
20void l_elas_3d(ComMod& com_mod, const int eNoN, const double w, const Vector<double>& N,
21 const Array<double>& Nx, const Array<double>& al, const Array<double>& dl, const Array<double>& bfl,
22 const Array<double>& pS0l, Vector<double>& pSl, Array<double>& lR, Array3<double>& lK);
23
24};
25
26#endif
27
The Array3 template class implements a simple interface to 3D arrays.
Definition Array3.h:25
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
This is the container for a mesh or NURBS patch, those specific to NURBS are noted.
Definition ComMod.h:863