From: Matthias Maier Date: Tue, 21 May 2019 20:00:59 +0000 (-0500) Subject: use AffineConstraints X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cdcb607b5c7ba4f64f1712d72f01b922c8c981f0;p=code-gallery.git use AffineConstraints --- 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;