LCOV - code coverage report
Current view: top level - src/materials - ADComputePlaneFiniteStrain.C (source / functions) Hit Total Coverage
Test: idaholab/moose solid_mechanics: f45d79 Lines: 24 34 70.6 %
Date: 2025-07-25 05:00:39 Functions: 4 4 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : //* This file is part of the MOOSE framework
       2             : //* https://mooseframework.inl.gov
       3             : //*
       4             : //* All rights reserved, see COPYRIGHT for full restrictions
       5             : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT
       6             : //*
       7             : //* Licensed under LGPL 2.1, please see LICENSE for details
       8             : //* https://www.gnu.org/licenses/lgpl-2.1.html
       9             : 
      10             : #include "ADComputePlaneFiniteStrain.h"
      11             : #include "UserObject.h"
      12             : 
      13             : registerMooseObject("SolidMechanicsApp", ADComputePlaneFiniteStrain);
      14             : 
      15             : InputParameters
      16          48 : ADComputePlaneFiniteStrain::validParams()
      17             : {
      18          48 :   InputParameters params = ADCompute2DFiniteStrain::validParams();
      19          48 :   params.addClassDescription("Compute strain increment and rotation increment for finite strain "
      20             :                              "under 2D planar assumptions.");
      21          96 :   params.addParam<UserObjectName>("subblock_index_provider",
      22             :                                   "SubblockIndexProvider user object name");
      23          96 :   params.addCoupledVar("scalar_out_of_plane_strain",
      24             :                        "Scalar variable for generalized plane strain");
      25          96 :   params.addCoupledVar("out_of_plane_strain", "Nonlinear variable for plane stress condition");
      26             : 
      27          48 :   return params;
      28           0 : }
      29             : 
      30          36 : ADComputePlaneFiniteStrain::ADComputePlaneFiniteStrain(const InputParameters & parameters)
      31             :   : ADCompute2DFiniteStrain(parameters),
      32         108 :     _subblock_id_provider(isParamValid("subblock_index_provider")
      33          36 :                               ? &getUserObject<SubblockIndexProvider>("subblock_index_provider")
      34             :                               : nullptr),
      35          36 :     _scalar_out_of_plane_strain_coupled(isCoupledScalar("scalar_out_of_plane_strain")),
      36          36 :     _out_of_plane_strain_coupled(isCoupled("out_of_plane_strain")),
      37          36 :     _out_of_plane_strain(_out_of_plane_strain_coupled ? adCoupledValue("out_of_plane_strain")
      38             :                                                       : _ad_zero),
      39          36 :     _out_of_plane_strain_old(_out_of_plane_strain_coupled ? coupledValueOld("out_of_plane_strain")
      40          72 :                                                           : _zero)
      41             : {
      42          36 :   if (_out_of_plane_strain_coupled && _scalar_out_of_plane_strain_coupled)
      43           0 :     mooseError("Must define only one of out_of_plane_strain or scalar_out_of_plane_strain");
      44             : 
      45          36 :   if (_scalar_out_of_plane_strain_coupled)
      46             :   {
      47           0 :     const auto nscalar_strains = coupledScalarComponents("scalar_out_of_plane_strain");
      48           0 :     _scalar_out_of_plane_strain.resize(nscalar_strains);
      49           0 :     _scalar_out_of_plane_strain_old.resize(nscalar_strains);
      50           0 :     for (unsigned int i = 0; i < nscalar_strains; ++i)
      51             :     {
      52           0 :       _scalar_out_of_plane_strain[i] = &adCoupledScalarValue("scalar_out_of_plane_strain", i);
      53           0 :       _scalar_out_of_plane_strain_old[i] = &coupledScalarValueOld("scalar_out_of_plane_strain", i);
      54             :     }
      55             :   }
      56          36 : }
      57             : 
      58             : ADReal
      59        2752 : ADComputePlaneFiniteStrain::computeOutOfPlaneGradDisp()
      60             : {
      61             :   /**
      62             :    * This is consistent with the approximation of stretch rate tensor
      63             :    * D = log(sqrt(Fhat^T * Fhat)) / dt
      64             :    */
      65        2752 :   if (_scalar_out_of_plane_strain_coupled)
      66           0 :     return std::exp((*_scalar_out_of_plane_strain[getCurrentSubblockIndex()])[0]) - 1.0;
      67             :   else
      68        5504 :     return std::exp(_out_of_plane_strain[_qp]) - 1.0;
      69             : }
      70             : 
      71             : Real
      72        2752 : ADComputePlaneFiniteStrain::computeOutOfPlaneGradDispOld()
      73             : {
      74        2752 :   if (_scalar_out_of_plane_strain_coupled)
      75           0 :     return std::exp((*_scalar_out_of_plane_strain_old[getCurrentSubblockIndex()])[0]) - 1.0;
      76             :   else
      77        2752 :     return std::exp(_out_of_plane_strain_old[_qp]) - 1.0;
      78             : }

Generated by: LCOV version 1.14