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

Nuke useless option

parent 14b2fced
No related branches found
No related tags found
No related merge requests found
......@@ -268,11 +268,9 @@ int main(int argc, char *argv[]) {
u4_diff[i][0] /= refinement_factor;
}
auto const fixed_point_iterations =
parset.get<bool>("boundary.friction.state.evolve")
? parset.get<size_t>("solver.tnnmg.fixed_point_iterations")
: 1;
for (size_t state_fpi = 0; state_fpi < fixed_point_iterations;
for (size_t state_fpi = 0;
state_fpi <
parset.get<size_t>("solver.tnnmg.fixed_point_iterations");
++state_fpi) {
auto myGlobalNonlinearity =
assemble_nonlinearity<MatrixType, VectorType>(
......@@ -291,9 +289,6 @@ int main(int argc, char *argv[]) {
false); // absolute error
overallSolver.solve();
if (!parset.get<bool>("boundary.friction.state.evolve"))
continue;
for (size_t i = 0; i < frictionalNodes.size(); ++i) {
if (frictionalNodes[i][0]) {
double const unorm = u4_diff[i].two_norm();
......
......@@ -71,7 +71,6 @@ eta = 1
model = Exponential
[boundary.friction.state]
evolve = true
# log(alpha(0))
initial = -2.23805
model = Dieterich # Ruina
......
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