49 #ifndef __INTREPID2_HCURL_HEX_IN_FEM_HPP__
50 #define __INTREPID2_HCURL_HEX_IN_FEM_HPP__
64 typedef struct Hexahedron<8> cell_topology_type;
69 template<EOperator opType>
71 template<
typename outputValueViewType,
72 typename inputPointViewType,
73 typename workViewType,
74 typename vinvViewType>
75 KOKKOS_INLINE_FUNCTION
77 getValues( outputValueViewType outputValues,
78 const inputPointViewType inputPoints,
80 const vinvViewType vinvLine,
81 const vinvViewType vinvBubble );
83 KOKKOS_INLINE_FUNCTION
85 getWorkSizePerPoint(ordinal_type order) {
88 return 3*getPnCardinality<1>(order)+getPnCardinality<1>(order-1);
90 return 5*getPnCardinality<1>(order)+getPnCardinality<1>(order-1);
92 INTREPID2_TEST_FOR_ABORT(
true,
93 ">>> ERROR: (Intrepid2::Basis_HCURL_HEX_In_FEM::Serial::getWorkSizePerPoint) operator is not supported" );
100 template<
typename ExecSpaceType, ordinal_type numPtsPerEval,
101 typename outputValueValueType,
class ...outputValueProperties,
102 typename inputPointValueType,
class ...inputPointProperties,
103 typename vinvValueType,
class ...vinvProperties>
105 getValues( Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValues,
106 const Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPoints,
107 const Kokkos::DynRankView<vinvValueType, vinvProperties...> vinvLine,
108 const Kokkos::DynRankView<vinvValueType, vinvProperties...> vinvBubble,
109 const EOperator operatorType );
114 template<
typename outputValueViewType,
115 typename inputPointViewType,
116 typename vinvViewType,
117 typename workViewType,
119 ordinal_type numPtsEval>
121 outputValueViewType _outputValues;
122 const inputPointViewType _inputPoints;
123 const vinvViewType _vinvLine;
124 const vinvViewType _vinvBubble;
127 KOKKOS_INLINE_FUNCTION
128 Functor( outputValueViewType outputValues_,
129 inputPointViewType inputPoints_,
130 vinvViewType vinvLine_,
131 vinvViewType vinvBubble_,
133 : _outputValues(outputValues_), _inputPoints(inputPoints_),
134 _vinvLine(vinvLine_), _vinvBubble(vinvBubble_), _work(work_) {}
136 KOKKOS_INLINE_FUNCTION
137 void operator()(
const size_type iter)
const {
141 const auto ptRange = Kokkos::pair<ordinal_type,ordinal_type>(ptBegin, ptEnd);
142 const auto input = Kokkos::subview( _inputPoints, ptRange, Kokkos::ALL() );
144 typename workViewType::pointer_type ptr = _work.data() + _work.extent(0)*ptBegin*get_dimension_scalar(_work);
146 auto vcprop = Kokkos::common_view_alloc_prop(_work);
147 workViewType work(Kokkos::view_wrap(ptr,vcprop), (ptEnd-ptBegin)*_work.extent(0));
150 case OPERATOR_VALUE : {
151 auto output = Kokkos::subview( _outputValues, Kokkos::ALL(), ptRange, Kokkos::ALL() );
155 case OPERATOR_CURL : {
156 auto output = Kokkos::subview( _outputValues, Kokkos::ALL(), ptRange, Kokkos::ALL() );
161 INTREPID2_TEST_FOR_ABORT(
true,
162 ">>> ERROR: (Intrepid2::Basis_HCURL_HEX_In_FEM::Functor) operator is not supported." );
178 template<
typename ExecSpaceType = void,
179 typename outputValueType = double,
180 typename pointValueType =
double>
182 :
public Basis<ExecSpaceType,outputValueType,pointValueType> {
188 using ordinal_type_array_1d_host INTREPID2_DEPRECATED_TYPENAME_REPLACEMENT(
"use OrdinalTypeArray1DHost instead",
"OrdinalTypeArray1DHost") =
OrdinalTypeArray1DHost INTREPID2_DEPRECATED_TYPENAME_TRAILING_ATTRIBUTE(
"use OrdinalTypeArray1DHost instead");
189 using ordinal_type_array_2d_host INTREPID2_DEPRECATED_TYPENAME_REPLACEMENT(
"use OrdinalTypeArray2DHost instead",
"OrdinalTypeArray2DHost") =
OrdinalTypeArray2DHost INTREPID2_DEPRECATED_TYPENAME_TRAILING_ATTRIBUTE(
"use OrdinalTypeArray2DHost instead");
190 using ordinal_type_array_3d_host INTREPID2_DEPRECATED_TYPENAME_REPLACEMENT(
"use OrdinalTypeArray3DHost instead",
"OrdinalTypeArray3DHost") =
OrdinalTypeArray3DHost INTREPID2_DEPRECATED_TYPENAME_TRAILING_ATTRIBUTE(
"use OrdinalTypeArray3DHost instead");
195 const EPointType pointType = POINTTYPE_EQUISPACED);
201 using outputViewType INTREPID2_DEPRECATED_TYPENAME_REPLACEMENT(
"use OutputViewType instead",
"OutputViewType") =
OutputViewType INTREPID2_DEPRECATED_TYPENAME_TRAILING_ATTRIBUTE(
"use OutputViewType instead");
202 using pointViewType INTREPID2_DEPRECATED_TYPENAME_REPLACEMENT(
"use PointViewType instead",
"PointViewType") =
PointViewType INTREPID2_DEPRECATED_TYPENAME_TRAILING_ATTRIBUTE(
"use PointViewType instead");
203 using scalarViewType INTREPID2_DEPRECATED_TYPENAME_REPLACEMENT(
"use ScalarViewType instead",
"ScalarViewType") = ScalarViewType INTREPID2_DEPRECATED_TYPENAME_TRAILING_ATTRIBUTE(
"use ScalarViewType instead");
211 const EOperator operatorType = OPERATOR_VALUE )
const {
212 #ifdef HAVE_INTREPID2_DEBUG
213 Intrepid2::getValues_HCURL_Args(outputValues,
219 constexpr ordinal_type numPtsPerEval = 1;
220 Impl::Basis_HCURL_HEX_In_FEM::
221 getValues<ExecSpaceType,numPtsPerEval>( outputValues,
230 getDofCoords( ScalarViewType dofCoords )
const {
231 #ifdef HAVE_INTREPID2_DEBUG
233 INTREPID2_TEST_FOR_EXCEPTION( dofCoords.rank() != 2, std::invalid_argument,
234 ">>> ERROR: (Intrepid2::Basis_HCURL_HEX_In_FEM::getDofCoords) rank = 2 required for dofCoords array");
236 INTREPID2_TEST_FOR_EXCEPTION( static_cast<ordinal_type>(dofCoords.extent(0)) != this->
getCardinality(), std::invalid_argument,
237 ">>> ERROR: (Intrepid2::Basis_HCURL_HEX_In_FEM::getDofCoords) mismatch in number of dof and 0th dimension of dofCoords array");
239 INTREPID2_TEST_FOR_EXCEPTION( dofCoords.extent(1) != this->
getBaseCellTopology().getDimension(), std::invalid_argument,
240 ">>> ERROR: (Intrepid2::Basis_HCURL_HEX_In_FEM::getDofCoords) incorrect reference cell (1st) dimension in dofCoords array");
242 Kokkos::deep_copy(dofCoords, this->
dofCoords_);
247 getDofCoeffs( ScalarViewType dofCoeffs )
const {
248 #ifdef HAVE_INTREPID2_DEBUG
250 INTREPID2_TEST_FOR_EXCEPTION( dofCoeffs.rank() != 2, std::invalid_argument,
251 ">>> ERROR: (Intrepid2::Basis_HCURL_HEX_In_FEM::getDofCoeffs) rank = 2 required for dofCoeffs array");
253 INTREPID2_TEST_FOR_EXCEPTION( static_cast<ordinal_type>(dofCoeffs.extent(0)) != this->
getCardinality(), std::invalid_argument,
254 ">>> ERROR: (Intrepid2::Basis_HCURL_HEX_In_FEM::getDofCoeffs) mismatch in number of dof and 0th dimension of dofCoeffs array");
256 INTREPID2_TEST_FOR_EXCEPTION( dofCoeffs.extent(1) != this->
getBaseCellTopology().getDimension(), std::invalid_argument,
257 ">>> ERROR: (Intrepid2::Basis_HCURL_HEX_In_FEM::getDofCoeffs) incorrect reference cell (1st) dimension in dofCoeffs array");
259 Kokkos::deep_copy(dofCoeffs, this->
dofCoeffs_);
265 return "Intrepid2_HCURL_HEX_In_FEM";
277 Kokkos::DynRankView<typename ScalarViewType::value_type,ExecSpaceType>
vinvLine_, vinvBubble_;
Header file for the Intrepid2::Basis_HGRAD_LINE_Cn_FEM class.
Kokkos::View< ordinal_type *, typename ExecSpaceType::array_layout, Kokkos::HostSpace > OrdinalTypeArray1DHost
View type for 1d host array.
Kokkos::View< ordinal_type **, typename ExecSpaceType::array_layout, Kokkos::HostSpace > OrdinalTypeArray2DHost
View type for 2d host array.
Definition file for FEM basis functions of degree n for H(curl) functions on HEX cells.
An abstract base class that defines interface for concrete basis implementations for Finite Element (...
shards::CellTopology getBaseCellTopology() const
Returns the base cell topology for which the basis is defined. See Shards documentation https://trili...
See Intrepid2::Basis_HCURL_HEX_In_FEM.
Kokkos::DynRankView< scalarType, ExecSpaceType > dofCoords_
Coordinates of degrees-of-freedom for basis functions defined in physical space.
virtual bool requireOrientation() const
True if orientation is required.
See Intrepid2::Basis_HCURL_HEX_In_FEM.
Implementation of the default H(curl)-compatible FEM basis on Hexahedral cell.
ordinal_type getCardinality() const
Returns cardinality of the basis.
See Intrepid2::Basis_HCURL_HEX_In_FEM.
virtual const char * getName() const
Returns basis name.
virtual void getValues(OutputViewType outputValues, const PointViewType inputPoints, const EOperator operatorType=OPERATOR_VALUE) const
Evaluation of a FEM basis on a reference cell.
Kokkos::DynRankView< OutputValueType, Kokkos::LayoutStride, ExecSpaceType > OutputViewType
View type for basis value output.
Kokkos::View< ordinal_type ***, typename ExecSpaceType::array_layout, Kokkos::HostSpace > OrdinalTypeArray3DHost
View type for 3d host array.
Kokkos::DynRankView< PointValueType, Kokkos::LayoutStride, ExecSpaceType > PointViewType
View type for input points.
Basis_HCURL_HEX_In_FEM(const ordinal_type order, const EPointType pointType=POINTTYPE_EQUISPACED)
Constructor.
Kokkos::DynRankView< scalarType, Kokkos::LayoutStride, ExecSpaceType > ScalarViewType
View type for scalars.
Kokkos::DynRankView< scalarType, ExecSpaceType > dofCoeffs_
Coefficients for computing degrees of freedom for Lagrangian basis If P is an element of the space sp...
Kokkos::DynRankView< typename ScalarViewType::value_type, ExecSpaceType > vinvLine_
inverse of Generalized Vandermonde matrix (isotropic order)
Header file for the abstract base class Intrepid2::Basis.