Intrepid
Intrepid_CubatureDirectLineGaussDef.hpp
Go to the documentation of this file.
1 // @HEADER
2 // ************************************************************************
3 //
4 // Intrepid 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 Pavel Bochev (pbboche@sandia.gov)
38 // Denis Ridzal (dridzal@sandia.gov), or
39 // Kara Peterson (kjpeter@sandia.gov)
40 //
41 // ************************************************************************
42 // @HEADER
43 
49 namespace Intrepid {
50 
51 template <class Scalar, class ArrayPoint, class ArrayWeight>
53  this->degree_ = degree;
54  this->dimension_ = 1;
55  TEUCHOS_TEST_FOR_EXCEPTION((degree < 0) || (degree > INTREPID_CUBATURE_LINE_GAUSS_MAX_ENUM),
56  std::out_of_range,
57  ">>> ERROR (CubatureDirectLineGauss): No cubature rule implemented for the desired polynomial degree.");
58 } // end constructor
59 
60 
61 
62 template <class Scalar, class ArrayPoint, class ArrayWeight>
64  return cubature_data_;
65 }
66 
67 
68 
69 template <class Scalar, class ArrayPoint, class ArrayWeight>
71  return INTREPID_CUBATURE_LINE_GAUSS_MAX_ENUM;
72 }
73 
74 
75 
76 template <class Scalar, class ArrayPoint, class ArrayWeight>
78  return cubature_name_;
79 } // end getName
80 
81 
82 
83 template <class Scalar, class ArrayPoint, class ArrayWeight>
84 const char* CubatureDirectLineGauss<Scalar,ArrayPoint,ArrayWeight>::cubature_name_ = "INTREPID_CUBATURE_LINE_GAUSS";
85 
86 
87 //-------------------------------------------------------------------------------------//
88 // Definition of cubature templates //
89 //-------------------------------------------------------------------------------------//
90 
91 /*
92  Cubature templates for lines are defined the reference cell:
93 
94  Line -> (-1,0,0),(1,0,0)
95 */
96 
97 /*
98  This static const member contains templates for Gauss(-Legendre) rules.
99 */
100 
101 template <class Scalar, class ArrayPoint, class ArrayWeight>
103 {
104 
105  // Collection of Gauss rules on [-1,1]
106  // The rule with array index i is exact for polynomials up to order i
107  {
108  1,
109  {{0e0, 0.0, 0.0}},
110  {2e0}
111  },
112  {
113  1,
114  {{0e0, 0.0, 0.0}},
115  {2e0}
116  },
117  {
118  2,
119  {{5.773502691896257645091487805019574556476e-1, 0.0, 0.0},
120  {-5.773502691896257645091487805019574556476e-1, 0.0, 0.0}},
121  {1e0,
122  1e0}
123  },
124  {
125  2,
126  {{5.773502691896257645091487805019574556476e-1, 0.0, 0.0},
127  {-5.773502691896257645091487805019574556476e-1, 0.0, 0.0}},
128  {1e0,
129  1e0}
130  },
131  {
132  3,
133  {{7.745966692414833770358530799564799221666e-1, 0.0, 0.0},
134  {0e0, 0.0, 0.0},
135  {-7.745966692414833770358530799564799221666e-1, 0.0, 0.0}},
136  {5.555555555555555555555555555555555555556e-1,
137  8.888888888888888888888888888888888888889e-1,
138  5.555555555555555555555555555555555555556e-1}
139  },
140  {
141  3,
142  {{7.745966692414833770358530799564799221666e-1, 0.0, 0.0},
143  {0e0, 0.0, 0.0},
144  {-7.745966692414833770358530799564799221666e-1, 0.0, 0.0}},
145  {5.555555555555555555555555555555555555556e-1,
146  8.888888888888888888888888888888888888889e-1,
147  5.555555555555555555555555555555555555556e-1}
148  },
149  {
150  4,
151  {{8.611363115940525752239464888928095050957e-1, 0.0, 0.0},
152  {3.399810435848562648026657591032446872006e-1, 0.0, 0.0},
153  {-3.399810435848562648026657591032446872006e-1, 0.0, 0.0},
154  {-8.611363115940525752239464888928095050957e-1, 0.0, 0.0}},