From ae18cbd039a91d7162c53d9d5102f08b8117df18 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 18 Dec 2023 11:16:05 -0700 Subject: [PATCH] Fix the names of functions in step-42. --- examples/step-42/step-42.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/step-42/step-42.cc b/examples/step-42/step-42.cc index 9d1374c245..585f72a243 100644 --- a/examples/step-42/step-42.cc +++ b/examples/step-42/step-42.cc @@ -178,7 +178,7 @@ namespace Step42 // strain to the stress according to the projection given above, // when evaluated at a particular strain point. We need this // function to calculate the nonlinear residual in - // PlasticityContactProblem::residual_nl_system() where + // PlasticityContactProblem::compute_nonlinear_residual() where // we multiply this tensor with the strain given in a quadrature // point. The computations follow the formulas laid out in the // introduction. In comparing the formulas there with the @@ -226,8 +226,9 @@ namespace Step42 // linearization point. The function returns the derivative of the nonlinear // constitutive law in the variable stress_strain_tensor, as well as the // stress-strain tensor of the linearized problem in - // stress_strain_tensor_linearized. See - // PlasticityContactProblem::assemble_nl_system where this function is used. + // stress_strain_tensor_linearized. See + // `PlasticityContactProblem::assemble_newton_system()` where this function + // is used. template void ConstitutiveLaw::get_linearized_stress_strain_tensors( const SymmetricTensor<2, dim> &strain_tensor, -- 2.39.5