Skip to content

Commit

Permalink
Merge pull request #5278 from trilinos/fix-hdiv-bc-logic-for-panzer
Browse files Browse the repository at this point in the history
Panzer: Generalized logic to use DirichletResidual_FaceBasis for all …
  • Loading branch information
egphill authored May 29, 2019
2 parents 24bc91f + 5714cce commit adbe590
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ buildAndRegisterGatherAndOrientationEvaluators(PHX::FieldManager<panzer::Traits>
this->template registerEvaluator<EvalT>(fm, op);
}
// This assumes that dofs on faces are all named "<dof>_face"
else if(basis->isVectorBasis()&&(dofName.compare(dofName.substr(0,dofName.find_last_of("_"))+"_face")==0)) {
else if(basis->isVectorBasis()&&basis->supportsDiv()) {
RCP<const panzer::PointRule> pointRule = rcp(new panzer::PointRule(basis->name()+":BasisPoints",basis->cardinality(),cellData));

ParameterList p;
Expand Down

0 comments on commit adbe590

Please sign in to comment.