Panzer
Version of the Day
Toggle main menu visibility
Loading...
Searching...
No Matches
disc-fe
src
Panzer_PointRule.hpp
Go to the documentation of this file.
1
// @HEADER
2
// ***********************************************************************
3
//
4
// Panzer: A partial differential equation assembly
5
// engine for strongly coupled complex multiphysics systems
6
// Copyright (2011) Sandia Corporation
7
//
8
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9
// the U.S. Government retains certain rights in this software.
10
//
11
// Redistribution and use in source and binary forms, with or without
12
// modification, are permitted provided that the following conditions are
13
// met:
14
//
15
// 1. Redistributions of source code must retain the above copyright
16
// notice, this list of conditions and the following disclaimer.
17
//
18
// 2. Redistributions in binary form must reproduce the above copyright
19
// notice, this list of conditions and the following disclaimer in the
20
// documentation and/or other materials provided with the distribution.
21
//
22
// 3. Neither the name of the Corporation nor the names of the
23
// contributors may be used to endorse or promote products derived from
24
// this software without specific prior written permission.
25
//
26
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37
//
38
// Questions? Contact Roger P. Pawlowski (rppawlo@sandia.gov) and
39
// Eric C. Cyr (eccyr@sandia.gov)
40
// ***********************************************************************
41
// @HEADER
42
43
#ifndef PANZER_POINT_RULE_HPP
44
#define PANZER_POINT_RULE_HPP
45
46
#include "Teuchos_ArrayRCP.hpp"
47
48
#include "Phalanx_DataLayout.hpp"
49
50
#include "Shards_CellTopology.hpp"
51
52
#include "
Panzer_PointDescriptor.hpp
"
53
54
namespace
panzer
{
55
56
class
CellData
;
57
61
class
PointRule
{
62
public
:
63
70
PointRule
(
const
std::string & ptName,
int
np,
const
panzer::CellData
& cell_data);
71
72
82
PointRule
(
const
std::string & point_rule_name,
83
const
int
num_cells,
84
const
int
num_points_per_cell,
85
const
int
num_faces,
86
const
int
num_points_per_face,
87
const
Teuchos::RCP<const shards::CellTopology> & cell_topology);
88
91
PointRule
(
const
panzer::PointDescriptor
& description,
92
const
Teuchos::RCP<const shards::CellTopology> & cell_topology,
93
const
int
num_cells);
94
96
virtual
~PointRule
() {}
97
98
void
setup
(
const
std::string & ptName,
int
np,
const
panzer::CellData
& cell_data);
99
100
// Returns true if this point rule is for a sideset
101
bool
isSide
()
const
;
102
105
const
std::string &
getName
()
const
;
106
107
Teuchos::RCP<const shards::CellTopology>
topology
;
108
109
Teuchos::RCP<shards::CellTopology>
side_topology
;
110
112
Teuchos::RCP<PHX::DataLayout>
dl_scalar
;
114
Teuchos::RCP<PHX::DataLayout>
dl_vector
;
116
Teuchos::RCP<PHX::DataLayout>
dl_tensor
;
117
119
Teuchos::RCP<PHX::DataLayout>
dl_vector3
;
120
122
Teuchos::RCP<PHX::DataLayout>
dl_tensor3x3
;
123
124
int
spatial_dimension
;
125
int
workset_size
;
126
int
num_points
;
127
129
int
side
;
130
132
virtual
void
print
(std::ostream & os);
133
134
// TODO: These need to be moved to a DataLayoutGenerator
135
136
Teuchos::RCP<PHX::DataLayout>
getCellDataLayout
()
const
;
137
Teuchos::RCP<PHX::DataLayout>
getCellDataLayout
(
const
int
dim0)
const
;
138
Teuchos::RCP<PHX::DataLayout>
getCellDataLayout
(
const
int
dim0,
const
int
dim1)
const
;
139
140
Teuchos::RCP<PHX::DataLayout>
getCellPointDataLayout
()
const
;
141
Teuchos::RCP<PHX::DataLayout>
getCellPointDataLayout
(
const
int
dim0)
const
;
142
Teuchos::RCP<PHX::DataLayout>
getCellPointDataLayout
(
const
int
dim0,
const
int
dim1)
const
;
143
144
Teuchos::RCP<PHX::DataLayout>
getFaceDataLayout
()
const
;
145
Teuchos::RCP<PHX::DataLayout>
getFaceDataLayout
(
const
int
dim0)
const
;
146
Teuchos::RCP<PHX::DataLayout>
getFaceDataLayout
(
const
int
dim0,
const
int
dim1)
const
;
147
148
Teuchos::RCP<PHX::DataLayout>
getFacePointDataLayout
()
const
;
149
Teuchos::RCP<PHX::DataLayout>
getFacePointDataLayout
(
const
int
dim0)
const
;
150
Teuchos::RCP<PHX::DataLayout>
getFacePointDataLayout
(
const
int
dim0,
const
int
dim1)
const
;
151
152
protected
:
153
PointRule
() :
side
(-1) {}
154
158
static
Teuchos::RCP<shards::CellTopology>
getSideTopology
(
const
CellData
& cell_data);
159
160
161
void
setup
(
const
std::string & point_rule_name,
162
const
int
num_cells,
163
const
int
num_points_per_cell,
164
const
int
num_faces,
165
const
int
num_points_per_face,
166
const
Teuchos::RCP<const shards::CellTopology> & cell_topology);
167
168
int
_num_faces
;
169
int
_num_points_per_face
;
170
171
private
:
172
std::string
point_name
;
173
};
174
175
}
176
177
#endif
Panzer_PointDescriptor.hpp
panzer::CellData
Data for determining cell topology and dimensionality.
Definition
Panzer_CellData.hpp:65
panzer::PointDescriptor
Definition
Panzer_PointDescriptor.hpp:60
panzer::PointRule::getFaceDataLayout
Teuchos::RCP< PHX::DataLayout > getFaceDataLayout() const
Definition
Panzer_PointRule.cpp:234
panzer::PointRule::getFacePointDataLayout
Teuchos::RCP< PHX::DataLayout > getFacePointDataLayout() const
Definition
Panzer_PointRule.cpp:247
panzer::PointRule::PointRule
PointRule(const std::string &ptName, int np, const panzer::CellData &cell_data)
Definition
Panzer_PointRule.cpp:54
panzer::PointRule::dl_vector
Teuchos::RCP< PHX::DataLayout > dl_vector
Data layout for vector fields.
Definition
Panzer_PointRule.hpp:114
panzer::PointRule::PointRule
PointRule()
Definition
Panzer_PointRule.hpp:153
panzer::PointRule::_num_points_per_face
int _num_points_per_face
Definition
Panzer_PointRule.hpp:169
panzer::PointRule::dl_vector3
Teuchos::RCP< PHX::DataLayout > dl_vector3
Data layout for vector fields - full (x,y,z).
Definition
Panzer_PointRule.hpp:119
panzer::PointRule::dl_scalar
Teuchos::RCP< PHX::DataLayout > dl_scalar
Data layout for scalar fields.
Definition
Panzer_PointRule.hpp:112
panzer::PointRule::_num_faces
int _num_faces
Definition
Panzer_PointRule.hpp:168
panzer::PointRule::getSideTopology
static Teuchos::RCP< shards::CellTopology > getSideTopology(const CellData &cell_data)
Definition
Panzer_PointRule.cpp:184
panzer::PointRule::side_topology
Teuchos::RCP< shards::CellTopology > side_topology
Definition
Panzer_PointRule.hpp:109
panzer::PointRule::spatial_dimension
int spatial_dimension
Definition
Panzer_PointRule.hpp:124
panzer::PointRule::num_points
int num_points
Definition
Panzer_PointRule.hpp:126
panzer::PointRule::print
virtual void print(std::ostream &os)
print information about the integration rule
Definition
Panzer_PointRule.cpp:260
panzer::PointRule::side
int side
Defaults to -1 if this is volume and not sideset.
Definition
Panzer_PointRule.hpp:129
panzer::PointRule::setup
void setup(const std::string &ptName, int np, const panzer::CellData &cell_data)
Definition
Panzer_PointRule.cpp:85
panzer::PointRule::dl_tensor3x3
Teuchos::RCP< PHX::DataLayout > dl_tensor3x3
Data layout for vector fields - full ((xx,xy,xz),(yx,yy,yz),(zx,zy,zz)) (or transpose?...
Definition
Panzer_PointRule.hpp:122
panzer::PointRule::workset_size
int workset_size
Definition
Panzer_PointRule.hpp:125
panzer::PointRule::getCellDataLayout
Teuchos::RCP< PHX::DataLayout > getCellDataLayout() const
Definition
Panzer_PointRule.cpp:208
panzer::PointRule::dl_tensor
Teuchos::RCP< PHX::DataLayout > dl_tensor
Data layout for rank-2 tensor fields.
Definition
Panzer_PointRule.hpp:116
panzer::PointRule::point_name
std::string point_name
Definition
Panzer_PointRule.hpp:172
panzer::PointRule::getCellPointDataLayout
Teuchos::RCP< PHX::DataLayout > getCellPointDataLayout() const
Definition
Panzer_PointRule.cpp:221
panzer::PointRule::~PointRule
virtual ~PointRule()
Destructor (Satisfying the compiler).
Definition
Panzer_PointRule.hpp:96
panzer::PointRule::topology
Teuchos::RCP< const shards::CellTopology > topology
Definition
Panzer_PointRule.hpp:107
panzer::PointRule::isSide
bool isSide() const
Definition
Panzer_PointRule.cpp:179
panzer::PointRule::getName
const std::string & getName() const
Definition
Panzer_PointRule.cpp:174
panzer
Computes .
Definition
Panzer_BasisValues_Evaluator_decl.hpp:54
Generated by
1.17.0