Skip to content

Commit

Permalink
updates to match Amanzi PR of same branch
Browse files Browse the repository at this point in the history
  • Loading branch information
ecoon committed Oct 8, 2024
1 parent 414f81a commit edf4560
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/pks/pk_helpers.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,8 @@ applyDirichletBCs(const Operators::BCs& bcs, CompositeVector& u)
for (unsigned int f = 0; f != u_f.MyLength(); ++f) {
if (bcs.bc_model()[f] == Operators::OPERATOR_BC_DIRICHLET) { u_f[0][f] = bcs.bc_value()[f]; }
}
}

if (u.HasComponent("boundary_face")) {
} else if (u.HasComponent("boundary_face")) {
Epetra_MultiVector& u_bf = *u.ViewComponent("boundary_face", false);
const Epetra_MultiVector& u_c = *u.ViewComponent("cell", false);
const Epetra_Map& vandalay_map =
Expand Down

0 comments on commit edf4560

Please sign in to comment.