49 #ifndef __INTREPID2_HGRAD_WEDGE_C1_FEM_DEF_HPP__
50 #define __INTREPID2_HGRAD_WEDGE_C1_FEM_DEF_HPP__
58 template<EOperator opType>
59 template<
typename OutputViewType,
60 typename inputViewType>
61 KOKKOS_INLINE_FUNCTION
63 Basis_HGRAD_WEDGE_C1_FEM::Serial<opType>::
64 getValues( OutputViewType output,
65 const inputViewType input ) {
67 case OPERATOR_VALUE: {
68 const auto x = input(0);
69 const auto y = input(1);
70 const auto z = input(2);
73 output.access(0) = (1.0 - x - y)*(1.0 - z)/2.0;
74 output.access(1) = x*(1.0 - z)/2.0;
75 output.access(2) = y*(1.0 - z)/2.0;
76 output.access(3) = (1.0 - x - y)*(1.0 + z)/2.0;
77 output.access(4) = x*(1.0 + z)/2.0;
78 output.access(5) = y*(1.0 + z)/2.0;
82 const auto x = input(0);
83 const auto y = input(1);
84 const auto z = input(2);
87 output.access(0, 0) = -(1.0 - z)/2.0;
88 output.access(0, 1) = -(1.0 - z)/2.0;
89 output.access(0, 2) = -(1.0 - x - y)/2.0;
91 output.access(1, 0) = (1.0 - z)/2.0;
92 output.access(1, 1) = 0.0;
93 output.access(1, 2) = -x/2.0;
95 output.access(2, 0) = 0.0;
96 output.access(2, 1) = (1.0 - z)/2.0;
97 output.access(2, 2) = -y/2.0;
100 output.access(3, 0) = -(1.0 + z)/2.0;
101 output.access(3, 1) = -(1.0 + z)/2.0;
102 output.access(3, 2) = (1.0 - x - y)/2.0;
104 output.access(4, 0) = (1.0 + z)/2.0;
105 output.access(4, 1) = 0.0;
106 output.access(4, 2) = x/2.0;
108 output.access(5, 0) = 0.0;
109 output.access(5, 1) = (1.0 + z)/2.0;
110 output.access(5, 2) = y/2.0;
114 output.access(0, 0) = 0.0; output.access(3, 0) = 0.0;
115 output.access(0, 1) = 0.0; output.access(3, 1) = 0.0;
116 output.access(0, 2) = 0.5; output.access(3, 2) =-0.5;
117 output.access(0, 3) = 0.0; output.access(3, 3) = 0.0;
118 output.access(0, 4) = 0.5; output.access(3, 4) =-0.5;
119 output.access(0, 5) = 0.0; output.access(3, 5) = 0.0;
121 output.access(1, 0) = 0.0; output.access(4, 0) = 0.0;
122 output.access(1, 1) = 0.0; output.access(4, 1) = 0.0;
123 output.access(1, 2) =-0.5; output.access(4, 2) = 0.5;
124 output.access(1, 3) = 0.0; output.access(4, 3) = 0.0;
125 output.access(1, 4) = 0.0; output.access(4, 4) = 0.0;
126 output.access(1, 5) = 0.0; output.access(4, 5) = 0.0;
128 output.access(2, 0) = 0.0; output.access(5, 0) = 0.0;
129 output.access(2, 1) = 0.0; output.access(5, 1) = 0.0;
130 output.access(2, 2) = 0.0; output.access(5, 2) = 0.0;
131 output.access(2, 3) = 0.0; output.access(5, 3) = 0.0;
132 output.access(2, 4) =-0.5; output.access(5, 4) = 0.5;
133 output.access(2, 5) = 0.0; output.access(5, 5) = 0.0;
136 case OPERATOR_MAX : {
137 const ordinal_type jend = output.extent(1);
138 const ordinal_type iend = output.extent(0);
140 for (ordinal_type j=0;j<jend;++j)
141 for (ordinal_type i=0;i<iend;++i)
142 output.access(i, j) = 0.0;
146 INTREPID2_TEST_FOR_ABORT( opType != OPERATOR_VALUE &&
147 opType != OPERATOR_GRAD &&
148 opType != OPERATOR_D2 &&
149 opType != OPERATOR_MAX,
150 ">>> ERROR: (Intrepid2::Basis_HGRAD_WEDGE_C1_FEM::Serial::getValues) operator is not supported");
156 template<
typename SpT,
157 typename outputValueValueType,
class ...outputValueProperties,
158 typename inputPointValueType,
class ...inputPointProperties>
160 Basis_HGRAD_WEDGE_C1_FEM::
161 getValues( Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValues,
162 const Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPoints,
163 const EOperator operatorType ) {
164 typedef Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValueViewType;
165 typedef Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPointViewType;
166 typedef typename ExecSpace<typename inputPointViewType::execution_space,SpT>::ExecSpaceType ExecSpaceType;
169 const auto loopSize = inputPoints.extent(0);
170 Kokkos::RangePolicy<ExecSpaceType,Kokkos::Schedule<Kokkos::Static> > policy(0, loopSize);
172 switch (operatorType) {
174 case OPERATOR_VALUE: {
175 typedef Functor<outputValueViewType,inputPointViewType,OPERATOR_VALUE> FunctorType;
176 Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints) );
181 typedef Functor<outputValueViewType,inputPointViewType,OPERATOR_GRAD> FunctorType;
182 Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints) );
185 case OPERATOR_CURL: {
186 INTREPID2_TEST_FOR_EXCEPTION( operatorType == OPERATOR_CURL, std::invalid_argument,
187 ">>> ERROR (Basis_HGRAD_WEDGE_C1_FEM): CURL is invalid operator for rank-0 (scalar) functions in 3D");
192 INTREPID2_TEST_FOR_EXCEPTION( (operatorType == OPERATOR_DIV), std::invalid_argument,
193 ">>> ERROR (Basis_HGRAD_WEDGE_C1_FEM): DIV is invalid operator for rank-0 (scalar) functions in 3D");
198 typedef Functor<outputValueViewType,inputPointViewType,OPERATOR_D2> FunctorType;
199 Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints) );
210 typedef Functor<outputValueViewType,inputPointViewType,OPERATOR_MAX> FunctorType;
211 Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints) );
215 INTREPID2_TEST_FOR_EXCEPTION( !( Intrepid2::isValidOperator(operatorType) ), std::invalid_argument,
216 ">>> ERROR (Basis_HGRAD_WEDGE_C1_FEM): Invalid operator type");
223 template<
typename SpT,
typename OT,
typename PT>
226 this->basisCardinality_ = 6;
227 this->basisDegree_ = 1;
228 this->basisCellTopology_ = shards::CellTopology(shards::getCellTopologyData<shards::Wedge<6> >() );
229 this->basisType_ = BASIS_FEM_DEFAULT;
230 this->basisCoordinates_ = COORDINATES_CARTESIAN;
231 this->functionSpace_ = FUNCTION_SPACE_HGRAD;
236 const ordinal_type tagSize = 4;
237 const ordinal_type posScDim = 0;
238 const ordinal_type posScOrd = 1;
239 const ordinal_type posDfOrd = 2;
242 ordinal_type tags[24] = { 0, 0, 0, 1,
255 this->setOrdinalTagData(this->tagToOrdinal_,
258 this->basisCardinality_,
266 Kokkos::DynRankView<typename ScalarViewType::value_type,typename SpT::array_layout,Kokkos::HostSpace>
267 dofCoords(
"dofCoordsHost", this->basisCardinality_,this->basisCellTopology_.getDimension());
269 dofCoords(0,0) = 0.0; dofCoords(0,1) = 0.0; dofCoords(0,2) = -1.0;
270 dofCoords(1,0) = 1.0; dofCoords(1,1) = 0.0; dofCoords(1,2) = -1.0;
271 dofCoords(2,0) = 0.0; dofCoords(2,1) = 1.0; dofCoords(2,2) = -1.0;
272 dofCoords(3,0) = 0.0; dofCoords(3,1) = 0.0; dofCoords(3,2) = 1.0;
273 dofCoords(4,0) = 1.0; dofCoords(4,1) = 0.0; dofCoords(4,2) = 1.0;
274 dofCoords(5,0) = 0.0; dofCoords(5,1) = 1.0; dofCoords(5,2) = 1.0;
276 this->dofCoords_ = Kokkos::create_mirror_view(
typename SpT::memory_space(), dofCoords);
277 Kokkos::deep_copy(this->dofCoords_, dofCoords);
Kokkos::View< ordinal_type *, typename ExecSpaceType::array_layout, Kokkos::HostSpace > OrdinalTypeArray1DHost
View type for 1d host array.
Basis_HGRAD_WEDGE_C1_FEM()
Constructor.