Skip to content
Snippets Groups Projects
Commit 631ac5e7 authored by graeser's avatar graeser
Browse files

Adjust rhs

parent 406ccd99
Branches
No related tags found
No related merge requests found
......@@ -96,7 +96,7 @@ int main(int argc, char** argv)
auto rhsFunction = [](auto x) {
return x.two_norm() < .5;
return (x.two_norm() < .5)*10.0;
};
assemblePoissonProblemPQ1(gridView, A, rhs, rhsFunction);
......
......@@ -144,7 +144,7 @@ int main(int argc, char** argv)
auto rhsFunction = [](auto x) {
return (x.two_norm() < .5)*100.0;
return (x.two_norm() < .5)*10.0;
};
assemblePoissonProblemPQ1(gridView, A, rhs, rhsFunction);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment