Skip to content
Snippets Groups Projects
Commit 4529a6a5 authored by Elias Pipping's avatar Elias Pipping Committed by Elias Pipping
Browse files

Drop obsolete parameter

parent b56adb3f
No related branches found
No related tags found
No related merge requests found
...@@ -57,7 +57,7 @@ Dune::shared_ptr<Dune::GlobalNonlinearity<MatrixType, VectorType> const> ...@@ -57,7 +57,7 @@ Dune::shared_ptr<Dune::GlobalNonlinearity<MatrixType, VectorType> const>
assemble_nonlinearity( assemble_nonlinearity(
Dune::ParameterTree const &parset, Dune::ParameterTree const &parset,
Dune::BlockVector<Dune::FieldVector<double, 1>> const &nodalIntegrals, Dune::BlockVector<Dune::FieldVector<double, 1>> const &nodalIntegrals,
Dune::BlockVector<Dune::FieldVector<double, 1>> const &state, double tau) { Dune::BlockVector<Dune::FieldVector<double, 1>> const &state) {
auto const size = nodalIntegrals.size(); auto const size = nodalIntegrals.size();
typedef Dune::BlockVector<Dune::FieldVector<double, 1>> SingletonVectorType; typedef Dune::BlockVector<Dune::FieldVector<double, 1>> SingletonVectorType;
......
...@@ -27,6 +27,6 @@ Dune::shared_ptr<Dune::GlobalNonlinearity<MatrixType, VectorType> const> ...@@ -27,6 +27,6 @@ Dune::shared_ptr<Dune::GlobalNonlinearity<MatrixType, VectorType> const>
assemble_nonlinearity( assemble_nonlinearity(
Dune::ParameterTree const &parset, Dune::ParameterTree const &parset,
Dune::BlockVector<Dune::FieldVector<double, 1>> const &nodalIntegrals, Dune::BlockVector<Dune::FieldVector<double, 1>> const &nodalIntegrals,
Dune::BlockVector<Dune::FieldVector<double, 1>> const &state, double h); Dune::BlockVector<Dune::FieldVector<double, 1>> const &state);
#endif #endif
...@@ -32,4 +32,4 @@ template Dune::shared_ptr< ...@@ -32,4 +32,4 @@ template Dune::shared_ptr<
assemble_nonlinearity<MatrixType, VectorType>( assemble_nonlinearity<MatrixType, VectorType>(
Dune::ParameterTree const &parset, Dune::ParameterTree const &parset,
Dune::BlockVector<Dune::FieldVector<double, 1>> const &nodalIntegrals, Dune::BlockVector<Dune::FieldVector<double, 1>> const &nodalIntegrals,
Dune::BlockVector<Dune::FieldVector<double, 1>> const &state, double tau); Dune::BlockVector<Dune::FieldVector<double, 1>> const &state);
...@@ -352,7 +352,7 @@ int main(int argc, char *argv[]) { ...@@ -352,7 +352,7 @@ int main(int argc, char *argv[]) {
for (size_t state_fpi = 1; state_fpi <= state_fpi_max; ++state_fpi) { for (size_t state_fpi = 1; state_fpi <= state_fpi_max; ++state_fpi) {
auto myGlobalNonlinearity = auto myGlobalNonlinearity =
assemble_nonlinearity<MatrixType, VectorType>( assemble_nonlinearity<MatrixType, VectorType>(
parset.sub("boundary.friction"), *nodalIntegrals, alpha, tau); parset.sub("boundary.friction"), *nodalIntegrals, alpha);
MyConvexProblemType const myConvexProblem( MyConvexProblemType const myConvexProblem(
problem_A, *myGlobalNonlinearity, problem_rhs); problem_A, *myGlobalNonlinearity, problem_rhs);
......
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