28 const Teuchos::ParameterList& p)
30 std::string residual_name = p.get<std::string>(
"Residual Name");
31 std::string flux_name = p.get<std::string>(
"Flux Name");
32 std::string normal_name = p.get<std::string>(
"Normal Name");
33 std::string normal_dot_flux_name = normal_name +
" dot " + flux_name;
35 const Teuchos::RCP<const panzer::PureBasis> basis =
36 p.get< Teuchos::RCP<const panzer::PureBasis> >(
"Basis");
38 const Teuchos::RCP<const panzer::IntegrationRule> ir =
39 p.get< Teuchos::RCP<const panzer::IntegrationRule> >(
"IR");
42 residual = PHX::MDField<ScalarT>(residual_name, basis->functional);
43 normal_dot_flux = PHX::MDField<ScalarT>(normal_dot_flux_name, ir->dl_scalar);
44 flux = PHX::MDField<const ScalarT>(flux_name, ir->dl_vector);
45 normal = PHX::MDField<const ScalarT>(normal_name, ir->dl_vector);
47 this->addEvaluatedField(residual);
48 this->addEvaluatedField(normal_dot_flux);
49 this->addDependentField(normal);
50 this->addDependentField(flux);
54 std::string n =
"Interface Residual Evaluator";
82 residual.deep_copy(
ScalarT(0.0));
84 for (index_t cell = 0; cell < workset.
num_cells; ++cell) {
85 for (std::size_t ip = 0; ip < num_ip; ++ip) {
86 normal_dot_flux(cell,ip) =
ScalarT(0.0);
87 for (std::size_t dim = 0; dim < num_dim; ++dim) {
88 normal_dot_flux(cell,ip) += normal(cell,ip,dim) * flux(cell,ip,dim);
94 const Teuchos::RCP<const BasisValues2<double> > bv = this->wda(workset).bases[basis_index];
95 for (index_t cell = 0; cell < workset.
num_cells; ++cell) {
96 for (std::size_t basis = 0; basis < residual.extent(1); ++basis) {
97 for (std::size_t qp = 0; qp < num_ip; ++qp) {
98 residual(cell,basis) += normal_dot_flux(cell,qp)*bv->weighted_basis_scalar(cell,basis,qp);
104 Intrepid2::FunctionSpaceTools<PHX::exec_space>::
105 integrate(residual.get_view(),
106 normal_dot_flux.get_view(),
107 (this->wda(workset).bases[basis_index])->weighted_basis_scalar.get_view());
std::vector< std::string >::size_type getBasisIndex(std::string basis_name, const panzer::Workset &workset, WorksetDetailsAccessor &wda)
Returns the index in the workset bases for a particular BasisIRLayout name.