ParMooN
 All Classes Functions Variables Friends Pages
NF_B_Q_IB2_2D.h
1 // ***********************************************************************
2 // internal bubble of degree 2 (in the sense of Q2)
3 // ***********************************************************************
4 /*
5  TNodalFunctional2D(NodalFunctional2D id,
6  int n_allfunctionals, int n_edgefunctionals,
7  int n_pointsall, int n_pointsedge,
8  double *xi, double *eta, double *t,
9  DoubleFunctVect *evalall,
10  DoubleFunctVect *evaledge);
11 */
12 
13 static double NF_B_Q_IB2_2D_Xi[] = { 0 };
14 static double NF_B_Q_IB2_2D_Eta[] = { 0 };
15 static double *NF_B_Q_IB2_2D_T = NULL;
16 
17 void NF_B_Q_IB2_2D_EvalAll(TCollection *Coll, TBaseCell *Cell, double *PointValues,
18  double *Functionals)
19 {
20  Functionals[0] = PointValues[0];
21 }
22 
23 void NF_B_Q_IB2_2D_EvalEdge(TCollection *Coll, TBaseCell *Cell, int Joint, double *PointValues,
24  double *Functionals)
25 {
26 }
27 
28 TNodalFunctional2D *NF_B_Q_IB2_2D_Obj = new TNodalFunctional2D
29  (NF_B_Q_IB2_2D, 1, 0, 1, 0, NF_B_Q_IB2_2D_Xi, NF_B_Q_IB2_2D_Eta,
30  NF_B_Q_IB2_2D_T, NF_B_Q_IB2_2D_EvalAll, NF_B_Q_IB2_2D_EvalEdge);
store cells in an array, used by cell iterators
Definition: Collection.h:18
Definition: NodalFunctional2D.h:20
information for finite element data structure
Definition: BaseCell.h:25