Skip to content
Snippets Groups Projects
Commit 015b149a authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

fix Neumann bc for L-shape problem some more

[[Imported from SVN: r9280]]
parent 1850bd37
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,6 @@ struct NeumannFunction ...@@ -94,7 +94,6 @@ struct NeumannFunction
void evaluate(const FieldVector<double, dim>& x, FieldVector<double,3>& out) const { void evaluate(const FieldVector<double, dim>& x, FieldVector<double,3>& out) const {
out = 0; out = 0;
out.axpy(homotopyParameter_, values_); out.axpy(homotopyParameter_, values_);
out[2] = -40*homotopyParameter_;
} }
FieldVector<double,3> values_; FieldVector<double,3> values_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment