8#include "SolutionStates.h"
14void cmm_3d(
ComMod& com_mod,
const int eNoN,
const double w,
const Vector<double>& N,
const Array<double>& Nx,
15 const Array<double>& al,
const Array<double>& yl,
const Array<double>& bfl,
const Array<double>& Kxi,
18void cmm_b(
ComMod& com_mod,
const faceType& lFa,
const int e,
const Array<double>& al,
const Array<double>& dl,
22void bcmmi(
ComMod& com_mod,
const int eNoN,
const int idof,
const double w,
const Vector<double>& N,
const Array<double>& Nxi,
23 const Array<double>& xl,
const Array<double>& tfl, Array<double>& lR);
25void cmmi(
ComMod& com_mod,
const mshType& lM,
const Array<double>& al,
const Array<double>& dl,
const Array<double>& xl,
31void cmm_stiffness(
ComMod& com_mod,
const Array<double>& Nxi,
const Array<double>& xl,
const Array<double>& dl,
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
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
These subroutines implement the Coupled Momentum Method (CMM).
Definition cmm.cpp:16
void construct_cmm(ComMod &com_mod, const mshType &lM, const SolutionStates &solutions)
Reproduces Fortran 'CONSTRUCT_CMM'.
Definition cmm.cpp:758
void cmmi(ComMod &com_mod, const mshType &lM, const Array< double > &al, const Array< double > &dl, const Array< double > &xl, const Array< double > &bfl, const Vector< double > &pS0l, const Vector< double > &vwp, const Vector< int > &ptr)
CMM initialization (interior).
Definition cmm.cpp:351
Holds solution state at old, current, and intermediate time levels.
Definition SolutionStates.h:39