43 #ifndef __Panzer_Integerator_BasisTimesVector_decl_hpp__
44 #define __Panzer_Integerator_BasisTimesVector_decl_hpp__
56 #include "Kokkos_DynRankView.hpp"
63 #include "Phalanx_Evaluator_Derived.hpp"
64 #include "Phalanx_MDField.hpp"
80 template<
typename EvalT,
typename Traits>
84 public PHX::EvaluatorDerived<EvalT, Traits>
125 const std::string& resName,
126 const std::string& valName,
130 const std::vector<std::string>& fmNames =
131 std::vector<std::string>());
217 const PHX::FieldTag& resTag,
218 const PHX::FieldTag& valTag,
222 const std::vector<PHX::FieldTag>& multipliers =
223 std::vector<PHX::FieldTag>());
258 template<
int NUM_FIELD_MULT>
279 template<
int NUM_FIELD_MULT>
280 KOKKOS_INLINE_FUNCTION
284 const std::size_t& cell)
const;
336 PHX::MDField<ScalarT, panzer::Cell, panzer::BASIS>
field_;
342 PHX::MDField<const ScalarT, panzer::Cell, panzer::IP, panzer::Dim>
355 std::vector<PHX::MDField<const ScalarT, panzer::Cell, panzer::IP>>
363 Kokkos::View<Kokkos::View<const ScalarT**,typename PHX::DevLayout<ScalarT>::type,PHX::Device>*>
kokkosFieldMults_;
396 #endif // __Panzer_Integerator_BasisTimesVector_decl_hpp__
IntegrationDescriptor id_
The IntegrationDescriptor for the quadrature to use.
const panzer::EvaluatorStyle evalStyle_
An enum determining the behavior of this Evaluator.
PHX::MDField< double, panzer::Cell, panzer::BASIS, panzer::IP, panzer::Dim > basis_
The vector basis information necessary for integration.
bool useDescriptors_
A flag indicating whether or not to use the descriptor interface.
BasisDescriptor bd_
The BasisDescriptor for the basis to use.
EvaluatorStyle
An indication of how an Evaluator will behave.
int numQP_
The number of quadrature points for each cell.
std::size_t basisIndex_
The index in the Workset bases for our particular BasisIRLayout name.
double multiplier_
The scalar multiplier out in front of the integral ( ).
std::string basisName_
The name of the basis we're using.
Teuchos::RCP< Teuchos::ParameterList > getValidParameters() const
Get Valid Parameters.
double multiplier
The scalar multiplier out in front of the integral ( ).
PHX::MDField< ScalarT, panzer::Cell, panzer::BASIS > field_
A field to which we'll contribute, or in which we'll store, the result of computing this integral...
Wrapper to PHX::EvaluatorWithBaseImpl that implements Panzer-specific helpers.
void evaluateFields(typename Traits::EvalData workset)
Evaluate Fields.
panzer::EvaluatorStyle evalStyle
The EvaluatorStyle of the parent Integrator_CurlBasisDotVector object.
typename EvalT::ScalarT ScalarT
The scalar type.
This empty struct allows us to optimize operator()() depending on the number of field multipliers...
void postRegistrationSetup(typename Traits::SetupData sd, PHX::FieldManager< Traits > &fm)
Post-Registration Setup.
Kokkos::View< Kokkos::View< const ScalarT **, typename PHX::DevLayout< ScalarT >::type, PHX::Device > * > kokkosFieldMults_
The Kokkos::View representation of the (possibly empty) list of fields that are multipliers out in fr...
Integrator_BasisTimesVector(const panzer::EvaluatorStyle &evalStyle, const std::string &resName, const std::string &valName, const panzer::BasisIRLayout &basis, const panzer::IntegrationRule &ir, const double &multiplier=1, const std::vector< std::string > &fmNames=std::vector< std::string >())
Main Constructor.
PHX::MDField< const ScalarT, panzer::Cell, panzer::IP, panzer::Dim > vector_
A field representing the vector-valued function we're integrating ( ).
int numDim_
The dimensionality of our vector-valued fields.
std::vector< PHX::MDField< const ScalarT, panzer::Cell, panzer::IP > > fieldMults_
The (possibly empty) list of fields that are multipliers out in front of the integral ( ...
KOKKOS_INLINE_FUNCTION void operator()(const FieldMultTag< NUM_FIELD_MULT > &tag, const std::size_t &cell) const
Perform the integration.