8#include "SolutionStates.h"
12void b_heats(
ComMod& com_mod,
const int eNoN,
const double w,
const Vector<double>& N,
const double h, Array<double>& lR);
16void heats_2d(
ComMod& com_mod,
const int eNoN,
const double w,
const Vector<double>& N,
const Array<double>& Nx,
17 const Array<double>& al,
const Array<double>& yl, Array<double>& lR,
Array3<double>& lK);
19void heats_3d(
ComMod& com_mod,
const int eNoN,
const double w,
const Vector<double>& N,
const Array<double>& Nx,
20 const Array<double>& al,
const Array<double>& yl, Array<double>& lR,
Array3<double>& lK);
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:1525
The Vector template class is used for storing int and double data.
Definition Vector.h:24
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