95 const ArrayScalar & inputPoints,
96 const EOperator operatorType)
const {
99#ifdef HAVE_INTREPID_DEBUG
100 Intrepid::getValues_HGRAD_Args<Scalar, ArrayScalar>(outputValues,
103 this -> getBaseCellTopology(),
104 this -> getCardinality() );
108 int dim0 = inputPoints.dimension(0);
115 switch (operatorType) {
118 for (
int i0 = 0; i0 < dim0; i0++) {
119 x = inputPoints(i0, 0);
120 y = inputPoints(i0, 1);
121 z = inputPoints(i0, 2);
124 outputValues(0, i0) = 1.0 - x - y -z;
125 outputValues(1, i0) = x;
126 outputValues(2, i0) = y;
127 outputValues(3, i0) = z;
133 for (
int i0 = 0; i0 < dim0; i0++) {
136 outputValues(0, i0, 0) = -1.0;
137 outputValues(0, i0, 1) = -1.0;
138 outputValues(0, i0, 2) = -1.0;
140 outputValues(1, i0, 0) = 1.0;
141 outputValues(1, i0, 1) = 0.0;
142 outputValues(1, i0, 2) = 0.0;
144 outputValues(2, i0, 0) = 0.0;
145 outputValues(2, i0, 1) = 1.0;
146 outputValues(2, i0, 2) = 0.0;
148 outputValues(3, i0, 0) = 0.0;
149 outputValues(3, i0, 1) = 0.0;
150 outputValues(3, i0, 2) = 1.0;
155 TEUCHOS_TEST_FOR_EXCEPTION( (operatorType == OPERATOR_CURL), std::invalid_argument,
156 ">>> ERROR (Basis_HGRAD_TET_C1_FEM): CURL is invalid operator for rank-0 (scalar) functions in 3D");
160 TEUCHOS_TEST_FOR_EXCEPTION( (operatorType == OPERATOR_DIV), std::invalid_argument,
161 ">>> ERROR (Basis_HGRAD_TET_C1_FEM): DIV is invalid operator for rank-0 (scalar) functions in 3D");
176 this -> basisCellTopology_.getDimension() );
177 for(
int dofOrd = 0; dofOrd <
this -> basisCardinality_; dofOrd++) {
178 for (
int i0 = 0; i0 < dim0; i0++) {
179 for(
int dkOrd = 0; dkOrd < DkCardinality; dkOrd++){
180 outputValues(dofOrd, i0, dkOrd) = 0.0;
188 ">>> ERROR (Basis_HGRAD_TET_C1_FEM): Invalid operator type");
void setOrdinalTagData(std::vector< std::vector< std::vector< int > > > &tagToOrdinal, std::vector< std::vector< int > > &ordinalToTag, const int *tags, const int basisCard, const int tagSize, const int posScDim, const int posScOrd, const int posDfOrd)
Fills ordinalToTag_ and tagToOrdinal_ by basis-specific tag data.