Panzer  Version of the Day
Panzer_ScatterDirichletResidual_BlockedTpetra.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_EVALUATOR_SCATTER_DIRICHLET_RESIDUAL_BLOCKEDTPETRA_HPP
44 #define PANZER_EVALUATOR_SCATTER_DIRICHLET_RESIDUAL_BLOCKEDTPETRA_HPP
45 
46 #include "Phalanx_config.hpp"
47 #include "Phalanx_Evaluator_Macros.hpp"
48 #include "Phalanx_MDField.hpp"
49 
51 
52 #include "PanzerDiscFE_config.hpp"
53 #include "Panzer_Dimension.hpp"
54 #include "Panzer_Traits.hpp"
57 
59 
60 namespace Thyra {
61  template <typename ScalarT> class ProductVectorBase;
62 }
63 
64 namespace panzer {
65 
66 template <typename LocalOrdinalT,typename GlobalOrdinalT>
67 class BlockedDOFManager; //forward declaration
68 
69 template <typename LocalOrdinalT,typename GlobalOrdinalT>
70 class UniqueGlobalIndexer; //forward declaration
71 
80 template <typename EvalT,typename TRAITS,typename LO,typename GO,typename NodeT=panzer::TpetraNodeType>
82  : public panzer::EvaluatorWithBaseImpl<TRAITS>,
83  public PHX::EvaluatorDerived<panzer::Traits::Residual, TRAITS>,
85 public:
86  typedef typename EvalT::ScalarT ScalarT;
88  { }
89 
91  const Teuchos::ParameterList& p);
92 
95 
96  void postRegistrationSetup(typename TRAITS::SetupData /* d */, PHX::FieldManager<TRAITS>& /* vm */)
97  { }
98  void evaluateFields(typename TRAITS::EvalData /* d */)
99  { std::cout << "unspecialized version of \"ScatterDirichletResidual_BlockedTpetra::evaluateFields\" on \""+PHX::typeAsString<EvalT>()+"\" should not be used!" << std::endl;
100  TEUCHOS_ASSERT(false); }
101 };
102 
103 // **************************************************************
104 // **************************************************************
105 // * Specializations
106 // **************************************************************
107 // **************************************************************
108 
109 
110 // **************************************************************
111 // Residual
112 // **************************************************************
113 template <typename TRAITS,typename LO,typename GO,typename NodeT>
115  : public panzer::EvaluatorWithBaseImpl<TRAITS>,
116  public PHX::EvaluatorDerived<panzer::Traits::Residual, TRAITS>,
118 
119 public:
121  : globalIndexer_(indexer) {}
122 
124  const Teuchos::ParameterList& p);
125 
126  void postRegistrationSetup(typename TRAITS::SetupData d,
128 
129  void preEvaluate(typename TRAITS::PreEvalData d);
130 
131  void evaluateFields(typename TRAITS::EvalData workset);
132 
135 
136 private:
138  typedef typename TRAITS::RealType RealType;
139 
141  typedef Tpetra::Vector<RealType,LO,GO,NodeT> VectorType;
142  typedef Tpetra::CrsMatrix<RealType,LO,GO,NodeT> CrsMatrixType;
143  typedef Tpetra::CrsGraph<LO,GO,NodeT> CrsGraphType;
144  typedef Tpetra::Map<LO,GO,NodeT> MapType;
145  typedef Tpetra::Import<LO,GO,NodeT> ImportType;
146  typedef Tpetra::Export<LO,GO,NodeT> ExportType;
147 
148  // dummy field so that the evaluator will have something to do
150 
151  // fields that need to be scattered will be put in this vector
152  std::vector< PHX::MDField<const ScalarT,Cell,NODE> > scatterFields_;
153 
154  // maps the local (field,element,basis) triplet to a global ID
155  // for scattering
157 
161  std::vector<Teuchos::RCP<const panzer::UniqueGlobalIndexer<LO,GO>>> fieldGlobalIndexers_;
162 
164  std::vector<int> fieldIds_;
165 
168  std::vector<int> productVectorBlockIndex_;
169 
170  // This maps the scattered field names to the DOF manager field
171  // For instance a Navier-Stokes map might look like
172  // fieldMap_["RESIDUAL_Velocity"] --> "Velocity"
173  // fieldMap_["RESIDUAL_Pressure"] --> "Pressure"
175 
177  Kokkos::View<LO**,PHX::Device> worksetLIDs_;
178 
180  std::vector<Kokkos::View<int*,PHX::Device>> fieldOffsets_;
181 
185  std::vector<Kokkos::View<int*,PHX::Device>> basisIndexForMDFieldOffsets_;
186 
187  std::size_t side_subcell_dim_;
188  std::size_t local_side_id_;
189 
191  std::string globalDataKey_; // what global data does this fill?
193 
196 
197  // If set to true, scattering an initial condition
199 
200  // Allows runtime disabling of dirichlet BCs on node-by-node basis
201  std::vector< PHX::MDField<const bool,Cell,NODE> > applyBC_;
202 
204 };
205 
206 // **************************************************************
207 // Jacobian
208 // **************************************************************
209 template <typename TRAITS,typename LO,typename GO,typename NodeT>
211  : public panzer::EvaluatorWithBaseImpl<TRAITS>,
212  public PHX::EvaluatorDerived<panzer::Traits::Jacobian, TRAITS>,
214 
215 public:
217  : globalIndexer_(indexer) {}
218 
220  const Teuchos::ParameterList& p);
221 
222  void preEvaluate(typename TRAITS::PreEvalData d);
223 
224  void postRegistrationSetup(typename TRAITS::SetupData d,
226 
227  void evaluateFields(typename TRAITS::EvalData workset);
228 
231 
232 private:
234  typedef typename TRAITS::RealType RealType;
235 
237  typedef Tpetra::Operator<RealType,LO,GO,NodeT> OperatorType;
238  typedef Tpetra::CrsMatrix<RealType,LO,GO,NodeT> CrsMatrixType;
239  typedef Tpetra::Map<LO,GO,NodeT> MapType;
240 
241  typedef Thyra::TpetraLinearOp<RealType,LO,GO,NodeT> ThyraLinearOp;
242 
243  // dummy field so that the evaluator will have something to do
245 
246  // fields that need to be scattered will be put in this vector
247  std::vector< PHX::MDField<const ScalarT,Cell,NODE> > scatterFields_;
248 
249  // maps the local (field,element,basis) triplet to a global ID
250  // for scattering
252 
253  std::vector<int> fieldIds_; // field IDs needing mapping
254 
257  std::vector<int> productVectorBlockIndex_;
258 
259  // This maps the scattered field names to the DOF manager field
260  // For instance a Navier-Stokes map might look like
261  // fieldMap_["RESIDUAL_Velocity"] --> "Velocity"
262  // fieldMap_["RESIDUAL_Pressure"] --> "Pressure"
264 
265  std::size_t side_subcell_dim_;
266  std::size_t local_side_id_;
267 
269  std::string globalDataKey_; // what global data does this fill?
271 
273  Kokkos::View<LO**,PHX::Device> worksetLIDs_;
274 
276  std::vector<Kokkos::View<int*,PHX::Device>> fieldOffsets_;
277 
281  std::vector<Kokkos::View<int*,PHX::Device>> basisIndexForMDFieldOffsets_;
282 
284  Kokkos::View<LO*,PHX::Device> blockOffsets_;
285 
288 
289  // Allows runtime disabling of dirichlet BCs on node-by-node basis
290  std::vector< PHX::MDField<const bool,Cell,NODE> > applyBC_;
291 
293  static constexpr int maxDerivativeArraySize_ = 256;
294 
296 };
297 
298 }
299 
300 #ifdef Panzer_BUILD_HESSIAN_SUPPORT
302 #endif
303 
304 // **************************************************************
305 #endif
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::side_subcell_dim_
std::size_t side_subcell_dim_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:187
Teuchos_ParameterList.hpp
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::local_side_id_
std::size_t local_side_id_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:266
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::RealType
TRAITS::RealType RealType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:234
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::ScatterDirichletResidual_BlockedTpetra
ScatterDirichletResidual_BlockedTpetra(const Teuchos::RCP< const BlockedDOFManager< LO, GO > > &indexer)
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:216
Panzer_Traits.hpp
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::dirichletCounter_
Teuchos::RCP< Thyra::ProductVectorBase< double > > dirichletCounter_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:268
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::applyBC_
std::vector< PHX::MDField< const bool, Cell, NODE > > applyBC_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:290
panzer::ScatterDirichletResidual_BlockedTpetra
Pushes residual values into the residual vector for a Newton-based solve.
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:81
panzer::Traits::Residual::ScalarT
RealType ScalarT
Definition: Panzer_Traits.hpp:103
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::scatterHolder_
Teuchos::RCP< PHX::FieldTag > scatterHolder_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:149
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::fieldGlobalIndexers_
std::vector< Teuchos::RCP< const panzer::UniqueGlobalIndexer< LO, GO > > > fieldGlobalIndexers_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:161
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::MapType
Tpetra::Map< LO, GO, NodeT > MapType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:144
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::checkApplyBC_
bool checkApplyBC_
If set to true, allows runtime disabling of dirichlet BCs on node-by-node basis.
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:195
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::basisIndexForMDFieldOffsets_
std::vector< Kokkos::View< int *, PHX::Device > > basisIndexForMDFieldOffsets_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:281
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::productVectorBlockIndex_
std::vector< int > productVectorBlockIndex_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:257
panzer::BlockedTpetraLinearObjContainer
Definition: Panzer_GatherSolution_BlockedTpetra.hpp:62
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::fieldIds_
std::vector< int > fieldIds_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:253
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::ExportType
Tpetra::Export< LO, GO, NodeT > ExportType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:146
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::CrsMatrixType
Tpetra::CrsMatrix< RealType, LO, GO, NodeT > CrsMatrixType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:238
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::globalIndexer_
Teuchos::RCP< const panzer::BlockedDOFManager< LO, GO > > globalIndexer_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:156
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::fieldMap_
Teuchos::RCP< const std::map< std::string, std::string > > fieldMap_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:174
panzer::ScatterDirichletResidual_BlockedTpetra::evaluateFields
void evaluateFields(typename TRAITS::EvalData)
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:98
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::ContainerType
BlockedTpetraLinearObjContainer< RealType, LO, GO, NodeT > ContainerType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:236
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::globalDataKey_
std::string globalDataKey_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:191
TEUCHOS_ASSERT
#define TEUCHOS_ASSERT(assertion_test)
Teuchos::rcp
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::MapType
Tpetra::Map< LO, GO, NodeT > MapType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:239
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:114
panzer::CloneableEvaluator
Non-templated empty base class for template managers.
Definition: Panzer_CloneableEvaluator.hpp:52
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::globalIndexer_
Teuchos::RCP< const panzer::BlockedDOFManager< LO, GO > > globalIndexer_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:251
Teuchos::RCP
Panzer_CloneableEvaluator.hpp
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::ScalarT
panzer::Traits::Residual::ScalarT ScalarT
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:137
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::worksetLIDs_
Kokkos::View< LO **, PHX::Device > worksetLIDs_
Local indices for unknowns.
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:273
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::ScalarT
panzer::Traits::Jacobian::ScalarT ScalarT
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:233
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::scatterHolder_
Teuchos::RCP< PHX::FieldTag > scatterHolder_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:244
Panzer_Evaluator_WithBaseImpl.hpp
Panzer_BlockedTpetraLinearObjContainer.hpp
panzer::ScatterDirichletResidual_BlockedTpetra::clone
virtual Teuchos::RCP< CloneableEvaluator > clone(const Teuchos::ParameterList &pl) const
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:93
panzer::BlockedDOFManager
Definition: Panzer_GatherSolution_BlockedTpetra.hpp:68
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::CrsMatrixType
Tpetra::CrsMatrix< RealType, LO, GO, NodeT > CrsMatrixType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:142
panzer::Traits::Jacobian
Definition: Panzer_Traits.hpp:104
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::basisIndexForMDFieldOffsets_
std::vector< Kokkos::View< int *, PHX::Device > > basisIndexForMDFieldOffsets_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:185
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::blockedContainer_
Teuchos::RCP< const BlockedTpetraLinearObjContainer< RealType, LO, GO, NodeT > > blockedContainer_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:192
panzer::ScatterDirichletResidual_BlockedTpetra::postRegistrationSetup
void postRegistrationSetup(typename TRAITS::SetupData, PHX::FieldManager< TRAITS > &)
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:96
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::fieldMap_
Teuchos::RCP< const std::map< std::string, std::string > > fieldMap_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:263
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::productVectorBlockIndex_
std::vector< int > productVectorBlockIndex_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:168
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::VectorType
Tpetra::Vector< RealType, LO, GO, NodeT > VectorType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:141
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::fieldOffsets_
std::vector< Kokkos::View< int *, PHX::Device > > fieldOffsets_
Offset into the cell lids for each field. Size of number of fields to scatter.
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:276
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::ThyraLinearOp
Thyra::TpetraLinearOp< RealType, LO, GO, NodeT > ThyraLinearOp
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:241
Panzer_ScatterDirichletResidual_BlockedTpetra_Hessian.hpp
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::CrsGraphType
Tpetra::CrsGraph< LO, GO, NodeT > CrsGraphType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:143
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::clone
virtual Teuchos::RCP< CloneableEvaluator > clone(const Teuchos::ParameterList &pl) const
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:229
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::ScatterDirichletResidual_BlockedTpetra
ScatterDirichletResidual_BlockedTpetra()
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:203
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::blockOffsets_
Kokkos::View< LO *, PHX::Device > blockOffsets_
The offset values of the blocked DOFs per element. Size of number of blocks in the product vector + 1...
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:284
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:210
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::side_subcell_dim_
std::size_t side_subcell_dim_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:265
panzer::ScatterDirichletResidual_BlockedTpetra::ScalarT
EvalT::ScalarT ScalarT
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:86
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::scatterFields_
std::vector< PHX::MDField< const ScalarT, Cell, NODE > > scatterFields_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:247
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::local_side_id_
std::size_t local_side_id_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:188
panzer::EvaluatorWithBaseImpl
Wrapper to PHX::EvaluatorWithBaseImpl that implements Panzer-specific helpers.
Definition: Panzer_Evaluator_WithBaseImpl.hpp:54
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::ContainerType
BlockedTpetraLinearObjContainer< RealType, LO, GO, NodeT > ContainerType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:140
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::ScatterDirichletResidual_BlockedTpetra
ScatterDirichletResidual_BlockedTpetra(const Teuchos::RCP< const BlockedDOFManager< LO, GO > > &indexer)
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:120
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::dirichletCounter_
Teuchos::RCP< Thyra::ProductVectorBase< double > > dirichletCounter_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:190
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::applyBC_
std::vector< PHX::MDField< const bool, Cell, NODE > > applyBC_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:201
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::worksetLIDs_
Kokkos::View< LO **, PHX::Device > worksetLIDs_
Local indices for unknowns.
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:177
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::RealType
TRAITS::RealType RealType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:138
panzer
Definition: Panzer_BasisValues_Evaluator_decl.hpp:54
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::globalDataKey_
std::string globalDataKey_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:269
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::checkApplyBC_
bool checkApplyBC_
If set to true, allows runtime disabling of dirichlet BCs on node-by-node basis.
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:287
Teuchos::ParameterList
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::fieldIds_
std::vector< int > fieldIds_
Field IDs in the local product vector block (not global field id)
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:164
PHX::FieldManager
Definition: Panzer_BCStrategy_Base.hpp:53
panzer::Traits::Jacobian::ScalarT
FadType ScalarT
Definition: Panzer_Traits.hpp:104
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::fieldOffsets_
std::vector< Kokkos::View< int *, PHX::Device > > fieldOffsets_
Offset into the cell lids for each field.
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:180
panzer::Traits::Residual
Definition: Panzer_Traits.hpp:103
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::OperatorType
Tpetra::Operator< RealType, LO, GO, NodeT > OperatorType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:237
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::scatterIC_
bool scatterIC_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:198
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::clone
virtual Teuchos::RCP< CloneableEvaluator > clone(const Teuchos::ParameterList &pl) const
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:133
panzer::ScatterDirichletResidual_BlockedTpetra::ScatterDirichletResidual_BlockedTpetra
ScatterDirichletResidual_BlockedTpetra(const Teuchos::RCP< const BlockedDOFManager< LO, GO > > &)
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:87
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::ImportType
Tpetra::Import< LO, GO, NodeT > ImportType
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:145
Thyra
Definition: Panzer_GatherSolution_BlockedEpetra_decl.hpp:79
Panzer_Dimension.hpp
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Jacobian, TRAITS, LO, GO, NodeT >::blockedContainer_
Teuchos::RCP< const BlockedTpetraLinearObjContainer< RealType, LO, GO, NodeT > > blockedContainer_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:270
panzer::ScatterDirichletResidual_BlockedTpetra< panzer::Traits::Residual, TRAITS, LO, GO, NodeT >::scatterFields_
std::vector< PHX::MDField< const ScalarT, Cell, NODE > > scatterFields_
Definition: Panzer_ScatterDirichletResidual_BlockedTpetra.hpp:152