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");
207#ifdef HAVE_INTREPID_DEBUG
209 TEUCHOS_TEST_FOR_EXCEPTION( !(DofCoords.rank() == 2), std::invalid_argument,
210 ">>> ERROR: (Intrepid::Basis_HGRAD_TET_C1_FEM::getDofCoords) rank = 2 required for DofCoords array");
212 TEUCHOS_TEST_FOR_EXCEPTION( !( DofCoords.dimension(0) == this -> basisCardinality_ ), std::invalid_argument,
213 ">>> ERROR: (Intrepid::Basis_HGRAD_TET_C1_FEM::getDofCoords) mismatch in number of DoF and 0th dimension of DofCoords array");
215 TEUCHOS_TEST_FOR_EXCEPTION( !( DofCoords.dimension(1) == (
int)(this -> basisCellTopology_.getDimension()) ), std::invalid_argument,
216 ">>> ERROR: (Intrepid::Basis_HGRAD_TET_C1_FEM::getDofCoords) incorrect reference cell (1st) dimension in DofCoords array");
219 DofCoords(0,0) = 0.0; DofCoords(0,1) = 0.0; DofCoords(0,2) = 0.0;
220 DofCoords(1,0) = 1.0; DofCoords(1,1) = 0.0; DofCoords(1,2) = 0.0;
221 DofCoords(2,0) = 0.0; DofCoords(2,1) = 1.0; DofCoords(2,2) = 0.0;
222 DofCoords(3,0) = 0.0; DofCoords(3,1) = 0.0; DofCoords(3,2) = 1.0;
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.