Intrepid2
Intrepid2_HCURL_TET_I1_FEMDef.hpp
Go to the documentation of this file.
1 // @HEADER
2 // ************************************************************************
3 //
4 // Intrepid2 Package
5 // Copyright (2007) Sandia Corporation
6 //
7 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
8 // license for use of this work by or on behalf of the U.S. Government.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions are
12 // met:
13 //
14 // 1. Redistributions of source code must retain the above copyright
15 // notice, this list of conditions and the following disclaimer.
16 //
17 // 2. Redistributions in binary form must reproduce the above copyright
18 // notice, this list of conditions and the following disclaimer in the
19 // documentation and/or other materials provided with the distribution.
20 //
21 // 3. Neither the name of the Corporation nor the names of the
22 // contributors may be used to endorse or promote products derived from
23 // this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 //
37 // Questions? Contact Kyungjoo Kim (kyukim@sandia.gov), or
38 // Mauro Perego (mperego@sandia.gov)
39 //
40 // ************************************************************************
41 // @HEADER
42 
49 #ifndef __INTREPID2_HCURL_TET_I1_FEM_DEF_HPP__
50 #define __INTREPID2_HCURL_TET_I1_FEM_DEF_HPP__
51 
52 namespace Intrepid2 {
53 
54  // -------------------------------------------------------------------------------------
55  namespace Impl {
56 
57  template<EOperator opType>
58  template<typename OutputViewType,
59  typename inputViewType>
60  KOKKOS_INLINE_FUNCTION
61  void
62  Basis_HCURL_TET_I1_FEM::Serial<opType>::
63  getValues( OutputViewType output,
64  const inputViewType input ) {
65  switch (opType) {
66  case OPERATOR_VALUE: {
67  const auto x = input(0);
68  const auto y = input(1);
69  const auto z = input(2);
70 
71  // output is subview of a rank-3 array with dimensions (basisCardinality_, dim0, spaceDim), dim0 is iteration from range
72  output.access(0, 0) = 2.0*(1.0 - y - z);
73  output.access(0, 1) = 2.0*x;
74  output.access(0, 2) = 2.0*x;
75 
76  output.access(1, 0) =-2.0*y;
77  output.access(1, 1) = 2.0*x;
78  output.access(1, 2) = 0.0;
79 
80  output.access(2, 0) = -2.0*y;
81  output.access(2, 1) = 2.0*(-1.0 + x + z);
82  output.access(2, 2) = -2.0*y;
83 
84  output.access(3, 0) = 2.0*z;
85  output.access(3, 1) = 2.0*z;
86  output.access(3, 2) = 2.0*(1.0 - x - y);
87 
88  output.access(4, 0) =-2.0*z;
89  output.access(4, 1) = 0.0;
90  output.access(4, 2) = 2.0*x;
91 
92  output.access(5, 0) = 0.0;
93  output.access(5, 1) =-2.0*z;
94  output.access(5, 2) = 2.0*y;
95  break;
96  }
97  case OPERATOR_CURL: {
98  // output is subview of a rank-3 array with dimensions (basisCardinality_, dim0, spaceDim), dim0 is iteration from range
99  output.access(0, 0) = 0.0;
100  output.access(0, 1) =-4.0;
101  output.access(0, 2) = 4.0;
102 
103  output.access(1, 0) = 0.0;
104  output.access(1, 1) = 0.0;
105  output.access(1, 2) = 4.0;
106 
107  output.access(2, 0) =-4.0;
108  output.access(2, 1) = 0.0;
109  output.access(2, 2) = 4.0;
110 
111  output.access(3, 0) =-4.0;
112  output.access(3, 1) = 4.0;
113  output.access(3, 2) = 0.0;
114 
115  output.access(4, 0) = 0.0;
116  output.access(4, 1) =-4.0;
117  output.access(4, 2) = 0.0;
118 
119  output.access(5, 0) = 4.0;
120  output.access(5, 1) = 0.0;
121  output.access(5, 2) = 0.0;
122  break;
123  }
124  default: {
125  INTREPID2_TEST_FOR_ABORT( opType != OPERATOR_VALUE &&
126  opType != OPERATOR_CURL,
127  ">>> ERROR: (Intrepid2::Basis_HCURL_TET_I1_FEM::Serial::getValues) operator is not supported");
128  }
129  }
130  }
131 
132  template<typename DT,
133  typename outputValueValueType, class ...outputValueProperties,
134  typename inputPointValueType, class ...inputPointProperties>
135  void
136  Basis_HCURL_TET_I1_FEM::
137  getValues( const typename DT::execution_space& space,
138  Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValues,
139  const Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPoints,
140  const EOperator operatorType ) {
141  typedef Kokkos::DynRankView<outputValueValueType,outputValueProperties...> outputValueViewType;
142  typedef Kokkos::DynRankView<inputPointValueType, inputPointProperties...> inputPointViewType;
143  typedef typename ExecSpace<typename inputPointViewType::execution_space,typename DT::execution_space>::ExecSpaceType ExecSpaceType;
144 
145  // Number of evaluation points = dim 0 of inputPoints
146  const auto loopSize = inputPoints.extent(0);
147  Kokkos::RangePolicy<ExecSpaceType,Kokkos::Schedule<Kokkos::Static> > policy(space, 0, loopSize);
148 
149  switch (operatorType) {
150 
151  case OPERATOR_VALUE: {
152  typedef Functor<outputValueViewType, inputPointViewType, OPERATOR_VALUE> FunctorType;
153  Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints) );
154  break;
155  }
156  case OPERATOR_CURL: {
157  typedef Functor<outputValueViewType, inputPointViewType, OPERATOR_CURL> FunctorType;
158  Kokkos::parallel_for( policy, FunctorType(outputValues, inputPoints) );
159  break;
160  }
161  case OPERATOR_DIV: {
162  INTREPID2_TEST_FOR_EXCEPTION( (operatorType == OPERATOR_DIV), std::invalid_argument,
163  ">>> ERROR (Basis_HCURL_TET_I1_FEM): DIV is invalid operator for HCURL Basis Functions");
164  break;
165  }
166  case OPERATOR_GRAD: {
167  INTREPID2_TEST_FOR_EXCEPTION( (operatorType == OPERATOR_GRAD), std::invalid_argument,
168  ">>> ERROR (Basis_HCURL_TET_I1_FEM): GRAD is invalid operator for HCURL Basis Functions");
169  break;
170  }
171  case OPERATOR_D1:
172  case OPERATOR_D2:
173  case OPERATOR_D3:
174  case OPERATOR_D4:
175  case OPERATOR_D5:
176  case OPERATOR_D6:
177  case OPERATOR_D7:
178  case OPERATOR_D8:
179  case OPERATOR_D9:
180  case OPERATOR_D10: {
181  INTREPID2_TEST_FOR_EXCEPTION( ( (operatorType == OPERATOR_D1) ||
182  (operatorType == OPERATOR_D2) ||
183  (operatorType == OPERATOR_D3) ||
184  (operatorType == OPERATOR_D4) ||
185  (operatorType == OPERATOR_D5) ||
186  (operatorType == OPERATOR_D6) ||
187  (operatorType == OPERATOR_D7) ||
188  (operatorType == OPERATOR_D8) ||
189  (operatorType == OPERATOR_D9) ||
190  (operatorType == OPERATOR_D10) ),
191  std::invalid_argument,
192  ">>> ERROR (Basis_HCURL_TET_I1_FEM): Invalid operator type");
193  break;
194  }
195  default: {
196  INTREPID2_TEST_FOR_EXCEPTION( ( (operatorType != OPERATOR_VALUE) &&
197  (operatorType != OPERATOR_GRAD) &&
198  (operatorType != OPERATOR_CURL) &&
199  (operatorType != OPERATOR_DIV) &&
200  (operatorType != OPERATOR_D1) &&
201  (operatorType != OPERATOR_D2) &&
202  (operatorType != OPERATOR_D3) &&
203  (operatorType != OPERATOR_D4) &&
204  (operatorType != OPERATOR_D5) &&
205  (operatorType != OPERATOR_D6) &&
206  (operatorType != OPERATOR_D7) &&
207  (operatorType != OPERATOR_D8) &&
208  (operatorType != OPERATOR_D9) &&
209  (operatorType != OPERATOR_D10) ),
210  std::invalid_argument,
211  ">>> ERROR (Basis_HCURL_TET_I1_FEM): Invalid operator type");
212  }
213  }
214  }
215  }
216 
217 
218  // -------------------------------------------------------------------------------------
219 
220  template< typename DT, typename OT, typename PT >
223  this->basisCardinality_ = 6;
224  this->basisDegree_ = 1;
225  this->basisCellTopology_ = shards::CellTopology(shards::getCellTopologyData<shards::Tetrahedron<4> >() );
226  this->basisType_ = BASIS_FEM_DEFAULT;
227  this->basisCoordinates_ = COORDINATES_CARTESIAN;
228  this->functionSpace_ = FUNCTION_SPACE_HCURL;
229 
230  // initialize tags
231  {
232  // Basis-dependent intializations
233  const ordinal_type tagSize = 4; // size of DoF tag
234  const ordinal_type posScDim = 0; // position in the tag, counting from 0, of the subcell dim
235  const ordinal_type posScOrd = 1; // position in the tag, counting from 0, of the subcell ordinal
236  const ordinal_type posDfOrd = 2; // position in the tag, counting from 0, of DoF ordinal relative to the subcell
237 
238  // An array with local DoF tags assigned to basis functions, in the order of their local enumeration
239  ordinal_type tags[24] = {
240  1, 0, 0, 1,
241  1, 1, 0, 1,
242  1, 2, 0, 1,
243  1, 3, 0, 1,
244  1, 4, 0, 1,
245  1, 5, 0, 1 };
246 
247  //host tags
248  OrdinalTypeArray1DHost tagView(&tags[0], 24);
249 
250  // Basis-independent function sets tag and enum data in tagToOrdinal_ and ordinalToTag_ arrays:
251  this->setOrdinalTagData(this->tagToOrdinal_,
252  this->ordinalToTag_,
253  tagView,
254  this->basisCardinality_,
255  tagSize,
256  posScDim,
257  posScOrd,
258  posDfOrd);
259  }
260  // dofCoords on host and create its mirror view to device
261  Kokkos::DynRankView<typename ScalarViewType::value_type,typename DT::execution_space::array_layout,Kokkos::HostSpace>
262  dofCoords("dofCoordsHost", this->basisCardinality_,this->basisCellTopology_.getDimension());
263 
264  dofCoords(0,0) = 0.5; dofCoords(0,1) = 0.0; dofCoords(0,2) = 0.0;
265  dofCoords(1,0) = 0.5; dofCoords(1,1) = 0.5; dofCoords(1,2) = 0.0;
266  dofCoords(2,0) = 0.0; dofCoords(2,1) = 0.5; dofCoords(2,2) = 0.0;
267  dofCoords(3,0) = 0.0; dofCoords(3,1) = 0.0; dofCoords(3,2) = 0.5;
268  dofCoords(4,0) = 0.5; dofCoords(4,1) = 0.0; dofCoords(4,2) = 0.5;
269  dofCoords(5,0) = 0.0; dofCoords(5,1) = 0.5; dofCoords(5,2) = 0.5;
270 
271  this->dofCoords_ = Kokkos::create_mirror_view(typename DT::memory_space(), dofCoords);
272  Kokkos::deep_copy(this->dofCoords_, dofCoords);
273 
274  // dofCoeffs on host and create its mirror view to device
275  Kokkos::DynRankView<typename ScalarViewType::value_type,typename DT::execution_space::array_layout,Kokkos::HostSpace>
276  dofCoeffs("dofCoeffsHost", this->basisCardinality_,this->basisCellTopology_.getDimension());
277 
278  dofCoeffs(0,0) = 0.5; dofCoeffs(0,1) = 0.0; dofCoeffs(0,2) = 0.0;
279  dofCoeffs(1,0) = -0.5; dofCoeffs(1,1) = 0.5; dofCoeffs(1,2) = 0.0;
280  dofCoeffs(2,0) = 0.0; dofCoeffs(2,1) = -0.5; dofCoeffs(2,2) = 0.0;
281  dofCoeffs(3,0) = 0.0; dofCoeffs(3,1) = 0.0; dofCoeffs(3,2) = 0.5;
282  dofCoeffs(4,0) = -0.5; dofCoeffs(4,1) = 0.0; dofCoeffs(4,2) = 0.5;
283  dofCoeffs(5,0) = 0.0; dofCoeffs(5,1) = -0.5; dofCoeffs(5,2) = 0.5;
284 
285  this->dofCoeffs_ = Kokkos::create_mirror_view(typename DT::memory_space(), dofCoeffs);
286  Kokkos::deep_copy(this->dofCoeffs_, dofCoeffs);
287 
288  }
289 
290 
291 }// namespace Intrepid2
292 #endif
Kokkos::View< ordinal_type *, typename ExecutionSpace::array_layout, Kokkos::HostSpace > OrdinalTypeArray1DHost
View type for 1d host array.