From cdcb607b5c7ba4f64f1712d72f01b922c8c981f0 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Tue, 21 May 2019 15:00:59 -0500 Subject: [PATCH] use AffineConstraints --- ElastoplasticTorsion/ElastoplasticTorsion.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ElastoplasticTorsion/ElastoplasticTorsion.cc b/ElastoplasticTorsion/ElastoplasticTorsion.cc index 4c4640a..dd9580e 100644 --- a/ElastoplasticTorsion/ElastoplasticTorsion.cc +++ b/ElastoplasticTorsion/ElastoplasticTorsion.cc @@ -62,7 +62,7 @@ #include #include #include -#include +#include #include #include @@ -345,18 +345,18 @@ namespace nsp ParameterHandler &prm; - Triangulation triangulation; - DoFHandler dof_handler; - ConstraintMatrix hanging_node_constraints; - SparsityPattern sparsity_pattern; + Triangulation triangulation; + DoFHandler dof_handler; + AffineConstraints hanging_node_constraints; + SparsityPattern sparsity_pattern; SparseMatrix system_matrix; ConvergenceTable convergence_table; ConvergenceTable dual_convergence_table; - Vector present_solution; - Vector newton_update; - Vector system_rhs; - Vector grad_norm; - Vector lambda; + Vector present_solution; + Vector newton_update; + Vector system_rhs; + Vector grad_norm; + Vector lambda; double step_length,phi_zero,phi_alpha,phip,phip_zero; -- 2.39.5