1 #ifndef INTREPID_HGRAD_PYR_I2_FEMDEF_HPP
2 #define INTREPID_HGRAD_PYR_I2_FEMDEF_HPP
53 template<
class Scalar,
class ArrayScalar>
56 this -> basisCardinality_ = 13;
57 this -> basisDegree_ = 2;
58 this -> basisCellTopology_ = shards::CellTopology(shards::getCellTopologyData<shards::Pyramid<5> >() );
59 this -> basisType_ = BASIS_FEM_DEFAULT;
60 this -> basisCoordinates_ = COORDINATES_CARTESIAN;
61 this -> basisTagsAreSet_ =
false;
65 template<
class Scalar,
class ArrayScalar>
75 int tags[] = { 0, 0, 0, 1,
91 Intrepid::setOrdinalTagData(
this -> tagToOrdinal_,
92 this -> ordinalToTag_,
94 this -> basisCardinality_,
103 template<
class Scalar,
class ArrayScalar>
105 const ArrayScalar & inputPoints,
106 const EOperator operatorType)
const {
109 #ifdef HAVE_INTREPID_DEBUG
110 Intrepid::getValues_HGRAD_Args<Scalar, ArrayScalar>(outputValues,
113 this -> getBaseCellTopology(),
114 this -> getCardinality() );
118 int dim0 = inputPoints.dimension(0);
124 const Scalar eps = std::numeric_limits<Scalar>::epsilon( );
126 switch (operatorType) {
129 for (
int i0 = 0; i0 < dim0; i0++) {
130 x = inputPoints(i0, 0);
131 y = inputPoints(i0, 1);
132 z = inputPoints(i0, 2);
136 if(fabs(z-1.0) < eps) {
137 if(z <= 1.0) z = 1.0-eps;
142 Scalar w = 1.0/(1.0 - z);
145 outputValues(0, i0) = 0.25 * (-x - y - 1.0)*((1.0-x)*(1.0-y) - z + x*y*z*w);
146 outputValues(1, i0) = 0.25 * ( x - y - 1.0)*((1.0+x)*(1.0-y) - z - x*y*z*w);
147 outputValues(2, i0) = 0.25 * ( x + y - 1.0)*((1.0+x)*(1.0+y) - z + x*y*z*w);
148 outputValues(3, i0) = 0.25 * (-x + y - 1.0)*((1.0-x)*(1.0+y) - z - x*y*z*w);
150 outputValues(4, i0) = z * (2.0*z - 1.0);
152 outputValues(5, i0) = 0.5 * (1.0 + x - z)*(1.0 - x - z)*(1.0 - y - z)*w;
153 outputValues(6, i0) = 0.5 * (1.0 + y - z)*(1.0 - y - z)*(1.0 + x - z)*w;
154 outputValues(7, i0) = 0.5 * (1.0 + x - z)*(1.0 - x - z)*(1.0 + y - z)*w;
155 outputValues(8, i0) = 0.5 * (1.0 + y - z)*(1.0 - y - z)*(1.0 - x - z)*w;
157 outputValues(9, i0) = z*(1.0 - x - z)*(1.0 - y - z)*w;
158 outputValues(10,i0) = z*(1.0 + x - z)*(1.0 - y - z)*w;
159 outputValues(11,i0) = z*(1.0 + x - z)*(1.0 + y - z)*w;
160 outputValues(12,i0) = z*(1.0 - x - z)*(1.0 + y - z)*w;
166 for (
int i0 = 0; i0 < dim0; i0++) {
167 x = inputPoints(i0,0);
168 y = inputPoints(i0,1);
169 z = inputPoints(i0,2);
173 if(fabs(z-1.0) < eps) {
174 if(z <= 1.0) z = 1.0-eps;
178 Scalar w = 1.0/(1.0 - z);
181 outputValues(0, i0, 0) = 0.25*(-1.0-x-y)*(-1.0+y + y*z*w) - 0.25*((1.0-x)*(1.0-y)-z + x*y*z*w);
182 outputValues(0, i0, 1) = 0.25*(-1.0-x-y)*(-1.0+x + x*z*w) - 0.25*((1.0-x)*(1.0-y)-z + x*y*z*w);
183 outputValues(0, i0, 2) = 0.25*(-1.0-x-y)*(-1.0 + x*y*w + x*y*z*w*w);
185 outputValues(1, i0, 0) = 0.25*(-1.0+x-y)*( 1.0-y - y*z*w) + 0.25*((1.0+x)*(1.0-y)-z - x*y*z*w);
186 outputValues(1, i0, 1) = 0.25*(-1.0+x-y)*(-1.0-x - x*z*w) - 0.25*((1.0+x)*(1.0-y)-z - x*y*z*w);
187 outputValues(1, i0, 2) = 0.25*(-1.0+x-y)*(-1.0 - x*y*w - x*y*z*w*w);
189 outputValues(2, i0, 0) = 0.25*(-1.0+x+y)*(1.0+y + y*z*w) + 0.25*((1.0+x)*(1.0+y)-z + x*y*z*w);
190 outputValues(2, i0, 1) = 0.25*(-1.0+x+y)*(1.0+x + x*z*w) + 0.25*((1.0+x)*(1.0+y)-z + x*y*z*w);
191 outputValues(2, i0, 2) = 0.25*(-1.0+x+y)*(-1.0 + x*y*w + x*y*z*w*w);
193 outputValues(3, i0, 0) = 0.25*(-1.0-x+y)*(-1.0-y - y*z*w) - 0.25*((1.0-x)*(1.0+y)-z - x*y*z*w);
194 outputValues(3, i0, 1) = 0.25*(-1.0-x+y)*( 1.0-x - x*z*w) + 0.25*((1.0-x)*(1.0+y)-z - x*y*z*w);
195 outputValues(3, i0, 2) = 0.25*(-1.0-x+y)*(-1.0 - x*y*w - x*y*z*w*w);
197 outputValues(4, i0, 0) = 0.0;
198 outputValues(4, i0, 1) = 0.0;
199 outputValues(4, i0, 2) = -1.0 + 4.0*z;
201 outputValues(5, i0, 0) = -x*w*(1.0-y-z);
202 outputValues(5, i0, 1) = -0.5*(1.0-x-z)*(1.0+x-z)*w;
203 outputValues(5, i0, 2) = 0.5*y*x*x*w*w + 0.5*y - 1.0+z;
205 outputValues(6, i0, 0) = 0.5*(1.0-y-z)*(1.0+y-z)*w;
206 outputValues(6, i0, 1) = -y*w*(1.0+x-z);
207 outputValues(6, i0, 2) = -0.5*x*y*y*w*w - 0.5*x - 1.0+z;
209 outputValues(7, i0, 0) = -x*w*(1.0+y-z);
210 outputValues(7, i0, 1) = 0.5*(1.0-x-z)*(1.0+x-z)*w;
211 outputValues(7, i0, 2) = -0.5*y*x*x*w*w - 0.5*y - 1.0+z;
213 outputValues(8, i0, 0) = -0.5*(1.0-y-z)*(1.0+y-z)*w;
214 outputValues(8, i0, 1) = -y*w*(1.0-x-z);
215 outputValues(8, i0, 2) = 0.5*x*y*y*w*w + 0.5*x - 1.0+z;
217 outputValues(9, i0, 0) = -(1.0-y-z)*z*w;
218 outputValues(9, i0, 1) = -(1.0-x-z)*z*w;
219 outputValues(9, i0, 2) = x*y*w*w + 1.0 - x - y - 2.0*z;
221 outputValues(10,i0, 0) = (1.0-y-z)*z*w;
222 outputValues(10,i0, 1) = -(1.0+x-z)*z*w;
223 outputValues(10,i0, 2) = -x*y*w*w + 1.0 + x - y - 2.0*z;
225 outputValues(11,i0, 0) = (1.0+y-z)*z*w;
226 outputValues(11,i0, 1) = (1.0+x-z)*z*w;
227 outputValues(11,i0, 2) = x*y*w*w + 1.0 + x + y - 2.0*z;
229 outputValues(12,i0, 0) = -(1.0+y-z)*z*w;
230 outputValues(12,i0, 1) = (1.0-x-z)*z*w;
231 outputValues(12,i0, 2) = -x*y*w*w + 1.0 - x + y - 2.0*z;
237 TEUCHOS_TEST_FOR_EXCEPTION( (operatorType == OPERATOR_CURL), std::invalid_argument,
238 ">>> ERROR (Basis_HGRAD_PYR_I2_FEM): CURL is invalid operator for rank-0 (scalar) functions in 3D");
242 TEUCHOS_TEST_FOR_EXCEPTION( (operatorType == OPERATOR_DIV), std::invalid_argument,
243 ">>> ERROR (Basis_HGRAD_PYR_I2_FEM): DIV is invalid operator for rank-0 (scalar) functions in 3D");
247 for (
int i0 = 0; i0 < dim0; i0++) {
248 x = inputPoints(i0,0);
249 y = inputPoints(i0,1);
250 z = inputPoints(i0,2);
252 if(fabs(z-1.0) < eps) {
253 if(z <= 1.0) z = 1.0-eps;
256 Scalar w = 1.0/(1.0 - z);
258 outputValues(0, i0, 0) = -0.5*(-1.0+y+y*z*w);
259 outputValues(0, i0, 1) = -(-0.25 + 0.5*x + 0.5*y + 0.5*z)*w;
260 outputValues(0, i0, 2) = 0.25 + (-0.25*y-0.5*x*y-0.25*y*y)*w*w;
261 outputValues(0, i0, 3) = -0.5*(-1.0+x+x*z*w);
262 outputValues(0, i0, 4) = 0.25 + (-0.25*x*x-0.25*x-0.5*x*y)*w*w;
263 outputValues(0, i0, 5) = 0.5*x*y*(-1.0-x-y)*w*w*w;
265 outputValues(1, i0, 0) = 0.5*(1.0-y-y*z*w);
266 outputValues(1, i0, 1) =-(0.25 + 0.5*x - 0.5*y - 0.5*z)*w;
267 outputValues(1, i0, 2) = -0.25 + (0.25*y-0.5*x*y+0.25*y*y)*w*w;
268 outputValues(1, i0, 3) = -0.5*(-1.0-x-x*z*w);
269 outputValues(1, i0, 4) = 0.25 + (-0.25*x*x + 0.25*x + 0.5*x*y)*w*w;
270 outputValues(1, i0, 5) = -0.5*x*y*(-1.0+x-y)*w*w*w;
272 outputValues(2, i0, 0) = 0.5*(1.0+y+y*z*w);
273 outputValues(2, i0, 1) =-(-0.25 - 0.5*x - 0.5*y + 0.5*z)*w;
274 outputValues(2, i0, 2) = -0.25 + (-0.25*y+0.5*x*y+0.25*y*y)*w*w;
275 outputValues(2, i0, 3) = 0.5*(1.0+x+x*z*w);
276 outputValues(2, i0, 4) = -0.25 + (0.25*x*x -0.25*x + 0.5*x*y)*w*w;
277 outputValues(2, i0, 5) = 0.5*x*y*(-1.0+x+y)*w*w*w;
279 outputValues(3, i0, 0) = -0.5*(-1.0-y-y*z*w);
280 outputValues(3, i0, 1) =-(0.25 - 0.5*x + 0.5*y - 0.5*z)*w;
281 outputValues(3, i0, 2) = 0.25 + (0.25*y+0.5*x*y-0.25*y*y)*w*w;
282 outputValues(3, i0, 3) = 0.5*(1.0-x-x*z*w);
283 outputValues(3, i0, 4) = -0.25 + (0.25*x + 0.25*x*x - 0.5*x*y)*w*w;
284 outputValues(3, i0, 5) = -0.5*x*y*(-1.0-x+y)*w*w*w;
286 outputValues(4, i0, 0) = 0.0;
287 outputValues(4, i0, 1) = 0.0;
288 outputValues(4, i0, 2) = 0.0;
289 outputValues(4, i0, 3) = 0.0;
290 outputValues(4, i0, 4) = 0.0;
291 outputValues(4, i0, 5) = 4.0;
293 outputValues(5, i0, 0) = -(1.0-y-z)*w;
294 outputValues(5, i0, 1) = x*w;
295 outputValues(5, i0, 2) = x*y*w*w;
296 outputValues(5, i0, 3) = 0.0;
297 outputValues(5, i0, 4) = 0.5*x*x*w*w + 0.5;
298 outputValues(5, i0, 5) = x*x*y*w*w*w + 1.0;
300 outputValues(6, i0, 0) = 0.0;
301 outputValues(6, i0, 1) = -y*w;
302 outputValues(6, i0, 2) = -0.5*y*y*w*w - 0.5;
303 outputValues(6, i0, 3) =-(1.0+x-z)*w;
304 outputValues(6, i0, 4) = -x*y*w*w;
305 outputValues(6, i0, 5) = -x*y*y*w*w*w + 1.0;
307 outputValues(7, i0, 0) = -(1.0+y-z)*w;
308 outputValues(7, i0, 1) = -x*w;
309 outputValues(7, i0, 2) = -x*y*w*w;
310 outputValues(7, i0, 3) = 0.0;
311 outputValues(7, i0, 4) = -0.5*x*x*w*w - 0.5;
312 outputValues(7, i0, 5) = -x*x*y*w*w*w + 1.0;
314 outputValues(8, i0, 0) = 0.0;
315 outputValues(8, i0, 1) = y*w;
316 outputValues(8, i0, 2) = 0.5*y*y*w*w + 0.5;
317 outputValues(8, i0, 3) = -(1.0-x-z)*w;
318 outputValues(8, i0, 4) = x*y*w*w;
319 outputValues(8, i0, 5) = x*y*y*w*w*w + 1.0;
321 outputValues(9, i0, 0) = 0.0;
322 outputValues(9, i0, 1) = z*w;
323 outputValues(9, i0, 2) = y*w*w - 1.0;
324 outputValues(9, i0, 3) = 0.0;
325 outputValues(9, i0, 4) = x*w*w - 1.0;
326 outputValues(9, i0, 5) = 2.0*x*y*w*w*w - 2.0;
328 outputValues(10,i0, 0) = 0.0;
329 outputValues(10,i0, 1) = -z*w;
330 outputValues(10,i0, 2) = -y*w*w + 1.0;
331 outputValues(10,i0, 3) = 0.0;
332 outputValues(10,i0, 4) = -x*w*w - 1.0;
333 outputValues(10,i0, 5) = -2.0*x*y*w*w*w - 2.0;
335 outputValues(11,i0, 0) = 0.0;
336 outputValues(11,i0, 1) = z*w;
337 outputValues(11,i0, 2) = y*w*w + 1.0;
338 outputValues(11,i0, 3) = 0.0;
339 outputValues(11,i0, 4) = x*w*w + 1.0;
340 outputValues(11,i0, 5) = 2.0*x*y*w*w*w - 2.0;
342 outputValues(12,i0, 0) = 0.0;
343 outputValues(12,i0, 1) = -z*w;
344 outputValues(12,i0, 2) = -y*w*w - 1.0;
345 outputValues(12,i0, 3) = 0.0;
346 outputValues(12,i0, 4) = -x*w*w + 1.0;
347 outputValues(12,i0, 5) = -2.0*x*y*w*w*w - 2.0;
353 for (
int i0 = 0; i0 < dim0; i0++) {
354 x = inputPoints(i0,0);
355 y = inputPoints(i0,1);
356 z = inputPoints(i0,2);
358 if(fabs(z-1.0) < eps) {
359 if(z <= 1.0) z = 1.0-eps;
363 Scalar w = 1.0/(1.0 - z);
365 outputValues(0, i0, 0) = 0.0;
366 outputValues(0, i0, 1) = -0.5*w;
367 outputValues(0, i0, 2) = -0.5*y*w*w;
368 outputValues(0, i0, 3) = -0.5*w;
369 outputValues(0, i0, 4) =(-0.25 - 0.5*x - 0.5*y)*w*w;
370 outputValues(0, i0, 5) =-(0.5*y + x*y + 0.5*y*y)*w*w*w;
371 outputValues(0, i0, 6) = 0.0;
372 outputValues(0, i0, 7) = -0.5*x*w*w;
373 outputValues(0, i0, 8) =-(0.5*x + x*y + 0.5*x*x)*w*w*w;
374 outputValues(0, i0, 9) = 1.5*x*y*(-1.0 - x - y)*w*w*w*w;
376 outputValues(1, i0, 0) = 0.0;
377 outputValues(1, i0, 1) = -0.5*w;
378 outputValues(1, i0, 2) = -0.5*y*w*w;
379 outputValues(1, i0, 3) = 0.5*w;
380 outputValues(1, i0, 4) = (0.25 - 0.5*x - 0.5*y)*w*w;
381 outputValues(1, i0, 5) =-(-0.5*y + x*y - 0.5*y*y)*w*w*w;
382 outputValues(1, i0, 6) = 0.0;
383 outputValues(1, i0, 7) = 0.5*x*w*w;
384 outputValues(1, i0, 8) =-(-0.5*x - x*y + 0.5*x*x)*w*w*w;
385 outputValues(1, i0, 9) = -1.5*x*y*(-1.0 + x - y)*w*w*w*w;
387 outputValues(2, i0, 0) = 0.0;
388 outputValues(2, i0, 1) = 0.5*w;
389 outputValues(2, i0, 2) = 0.5*y*w*w;
390 outputValues(2, i0, 3) = 0.5*w;
391 outputValues(2, i0, 4) = (-0.25 + 0.5*x + 0.5*y)*w*w;
392 outputValues(2, i0, 5) =-(0.5*y - x*y - 0.5*y*y)*w*w*w;
393 outputValues(2, i0, 6) = 0.0;
394 outputValues(2, i0, 7) = 0.5*x*w*w;
395 outputValues(2, i0, 8) =-(0.5*x - x*y - 0.5*x*x)*w*w*w;
396 outputValues(2, i0, 9) = 1.5*x*y*(-1.0 + x + y)*w*w*w*w;
398 outputValues(3, i0, 0) = 0.0;
399 outputValues(3, i0, 1) = 0.5*w;
400 outputValues(3, i0, 2) = 0.5*y*w*w;
401 outputValues(3, i0, 3) = -0.5*w;
402 outputValues(3, i0, 4) = (0.25 + 0.5*x - 0.5*y)*w*w;
403 outputValues(3, i0, 5) =-(-0.5*y - x*y + 0.5*y*y)*w*w*w;
404 outputValues(3, i0, 6) = 0.0;
405 outputValues(3, i0, 7) = -0.5*x*w*w;
406 outputValues(3, i0, 8) =-(-0.5*x + x*y - 0.5*x*x)*w*w*w;
407 outputValues(3, i0, 9) = -1.5*x*y*(-1.0 - x + y)*w*w*w*w;
409 outputValues(4, i0, 0) = 0.0;
410 outputValues(4, i0, 1) = 0.0;
411 outputValues(4, i0, 2) = 0.0;
412 outputValues(4, i0, 3) = 0.0;
413 outputValues(4, i0, 4) = 0.0;
414 outputValues(4, i0, 5) = 0.0;
415 outputValues(4, i0, 6) = 0.0;
416 outputValues(4, i0, 7) = 0.0;
417 outputValues(4, i0, 8) = 0.0;
418 outputValues(4, i0, 9) = 0.0;
420 outputValues(5, i0, 0) = 0.0;
421 outputValues(5, i0, 1) = w;
422 outputValues(5, i0, 2) = y*w*w;
423 outputValues(5, i0, 3) = 0.0;
424 outputValues(5, i0, 4) = x*w*w;
425 outputValues(5, i0, 5) = 2.0*y*x*w*w*w;
426 outputValues(5, i0, 6) = 0.0;
427 outputValues(5, i0, 7) = 0.0;
428 outputValues(5, i0, 8) = x*x*w*w*w;
429 outputValues(5, i0, 9) = 3.0*x*x*y*w*w*w*w;
431 outputValues(6, i0, 0) = 0.0;
432 outputValues(6, i0, 1) = 0.0;
433 outputValues(6, i0, 2) = 0.0;
434 outputValues(6, i0, 3) = -w;
435 outputValues(6, i0, 4) = -y*w*w;
436 outputValues(6, i0, 5) = -y*y*w*w*w;
437 outputValues(6, i0, 6) = 0.0;
438 outputValues(6, i0, 7) = -x*w*w ;
439 outputValues(6, i0, 8) = -2.0*x*y*w*w*w;
440 outputValues(6, i0, 9) = -3.0*x*y*y*w*w*w*w;
442 outputValues(7, i0, 0) = 0.0;
443 outputValues(7, i0, 1) = -w;
444 outputValues(7, i0, 2) = -y*w*w;
445 outputValues(7, i0, 3) = 0.0;
446 outputValues(7, i0, 4) = -x*w*w;
447 outputValues(7, i0, 5) = -2.0*x*y*w*w*w;
448 outputValues(7, i0, 6) = 0.0;
449 outputValues(7, i0, 7) = 0.0;
450 outputValues(7, i0, 8) = -x*x*w*w*w;
451 outputValues(7, i0, 9) = -3.0*x*x*y*w*w*w*w;
453 outputValues(8, i0, 0) = 0.0;
454 outputValues(8, i0, 1) = 0.0;
455 outputValues(8, i0, 2) = 0.0;
456 outputValues(8, i0, 3) = w;
457 outputValues(8, i0, 4) = y*w*w;
458 outputValues(8, i0, 5) = y*y*w*w*w;
459 outputValues(8, i0, 6) = 0.0;
460 outputValues(8, i0, 7) = x*w*w;
461 outputValues(8, i0, 8) = 2.0*x*y*w*w*w;
462 outputValues(8, i0, 9) = 3.0*x*y*y*w*w*w*w ;
464 outputValues(9, i0, 0) = 0.0;
465 outputValues(9, i0, 1) = 0.0;
466 outputValues(9, i0, 2) = 0.0;
467 outputValues(9, i0, 3) = 0.0;
468 outputValues(9, i0, 4) = w*w;
469 outputValues(9, i0, 5) = 2.0*y*w*w*w;
470 outputValues(9, i0, 6) = 0.0;
471 outputValues(9, i0, 7) = 0.0;
472 outputValues(9, i0, 8) = 2.0*x*w*w*w;
473 outputValues(9, i0, 9) = 6.0*x*y*w*w*w*w;
475 outputValues(10,i0, 0) = 0.0;
476 outputValues(10,i0, 1) = 0.0;
477 outputValues(10,i0, 2) = 0.0;
478 outputValues(10,i0, 3) = 0.0;
479 outputValues(10,i0, 4) = -w*w;
480 outputValues(10,i0, 5) = -2.0*y*w*w*w;
481 outputValues(10,i0, 6) = 0.0;
482 outputValues(10,i0, 7) = 0.0;
483 outputValues(10,i0, 8) = -2.0*x*w*w*w;
484 outputValues(10,i0, 9) = -6.0*x*y*w*w*w*w;
486 outputValues(11,i0, 0) = 0.0;
487 outputValues(11,i0, 1) = 0.0;
488 outputValues(11,i0, 2) = 0.0;
489 outputValues(11,i0, 3) = 0.0;
490 outputValues(11,i0, 4) = w*w;
491 outputValues(11,i0, 5) = 2.0*y*w*w*w;
492 outputValues(11,i0, 6) = 0.0;
493 outputValues(11,i0, 7) = 0.0;
494 outputValues(11,i0, 8) = 2.0*x*w*w*w;
495 outputValues(11,i0, 9) = 6.0*x*y*w*w*w*w;
497 outputValues(12,i0, 0) = 0.0;
498 outputValues(12,i0, 1) = 0.0;
499 outputValues(12,i0, 2) = 0.0;
500 outputValues(12,i0, 3) = 0.0;
501 outputValues(12,i0, 4) = -w*w;
502 outputValues(12,i0, 5) = -2.0*y*w*w*w;
503 outputValues(12,i0, 6) = 0.0;
504 outputValues(12,i0, 7) = 0.0;
505 outputValues(12,i0, 8) = -2.0*x*w*w*w;
506 outputValues(12,i0, 9) = -6.0*x*y*w*w*w*w;
520 int DkCardinality = Intrepid::getDkCardinality(operatorType,
521 this -> basisCellTopology_.getDimension() );
522 for(
int dofOrd = 0; dofOrd <
this -> basisCardinality_; dofOrd++) {
523 for (
int i0 = 0; i0 < dim0; i0++) {
524 for(
int dkOrd = 0; dkOrd < DkCardinality; dkOrd++){
525 outputValues(dofOrd, i0, dkOrd) = 0.0;
533 TEUCHOS_TEST_FOR_EXCEPTION( !( Intrepid::isValidOperator(operatorType) ), std::invalid_argument,
534 ">>> ERROR (Basis_HGRAD_PYR_I2_FEM): Invalid operator type");
540 template<
class Scalar,
class ArrayScalar>
542 const ArrayScalar & inputPoints,
543 const ArrayScalar & cellVertices,
544 const EOperator operatorType)
const {
545 TEUCHOS_TEST_FOR_EXCEPTION( (
true), std::logic_error,
546 ">>> ERROR (Basis_HGRAD_PYR_I2_FEM): FEM Basis calling an FVD member function");
void getValues(ArrayScalar &outputValues, const ArrayScalar &inputPoints, const EOperator operatorType) const
FEM basis evaluation on a reference Pyramid cell.
void initializeTags()
Initializes tagToOrdinal_ and ordinalToTag_ lookup arrays.
Basis_HGRAD_PYR_I2_FEM()
Constructor.