m_MEF90_DefMechAT2.F90 Source File


Source Code

#include "../MEF90/mef90.inc"
module m_MEF90_DefMechAT2
#include "petsc/finclude/petsc.h"
   use petscsys
   use m_MEF90_Parameters
   use m_MEF90_LinAlg

   use m_MEF90_DefMechAT_class
   implicit none(type)
   private
   public :: MEF90DefMechAT2_Type

   type, extends(MEF90DefMechAT_Type) :: MEF90DefMechAT2_Type

   contains
      procedure, pass(self) :: a => aAT2
      procedure, pass(self) :: Da => DaAT2
      procedure, pass(self) :: D2a => D2aAT2

      procedure, pass(self) :: w => wAT2
      procedure, pass(self) :: Dw => DwAT2
      procedure, pass(self) :: D2w => D2wAT2

      procedure, pass(self) :: setFromOptions => MEF90DefMechAT2_setFromOptions
   end type MEF90DefMechAT2_Type

contains

#undef __FUNCT__
#define __FUNCT__ "MEF90DefMechAT2_setFromOptions"
!!! author: Blaise Bourdin (2025, bourdin@mcmaster.ca)
!!!
!!!  MEF90DefMechAT2_setFromOptions: initializes a MEF90_DefMechAT2_Type from options
!!!
   subroutine MEF90DefMechAT2_setFromOptions(self,ierr)
      class(MEF90DefMechAT2_Type), intent(inout) :: self
      PetscErrorCode,intent(inout) :: ierr

      self%cw = 0.5_kr
      self%aorder = 2
      self%worder = 1
      self%type = 'MEF90DefMechAT2'

      PetscCall(MEF90DefMechAT_setFromOptions(self, ierr))
   end subroutine MEF90DefMechAT2_setFromOptions

#undef __FUNCT__
#define __FUNCT__ "aAT2"
!!! author: Blaise Bourdin (2020, bourdin@lsu.edu)
!!!
!!!  aAT2: the "a" function of the standard AT2 model, i.e. $a(\alpha) = \eta + (1-\eta)(1-\alpha)^2$
!!!
   PetscReal function aAT2(self, alpha)
      class(MEF90DefMechAT2_Type), intent(IN)          :: self
      PetscReal                                        :: alpha

      aAT2 = self%residualStiffness + (1.0_Kr - self%residualStiffness) * (1.0_kr - alpha)**2
   end function aAT2

#undef __FUNCT__
#define __FUNCT__ "DaAT2"
!!! author: Blaise Bourdin (2020, bourdin@lsu.edu)
!!!
!!!  DaAT2: the derivative of the "a" function of the standard AT2 model, i.e. $a'(\alpha) = -2(1-\eta)(1-\alpha)$
!!!
   PetscReal function DaAT2(self, alpha)
      class(MEF90DefMechAT2_Type), intent(IN)           :: self
      PetscReal                                         :: alpha

      DaAT2 = -2.0_kr * (1.0_Kr - self%residualStiffness) * (1.0_kr - alpha)
   end function DaAT2

#undef __FUNCT__
#define __FUNCT__ "D2aAT2"
!!! author: Blaise Bourdin (2020, bourdin@lsu.edu)
!!!
!!!  D2aAT2: the second derivative of the "a" function of the standard AT2 model, i.e. $a''(\alpha) = 2 ( 1-\eta)$
!!!
   PetscReal function D2aAT2(self, alpha)
      class(MEF90DefMechAT2_Type), intent(IN)           :: self
      PetscReal                                         :: alpha

      D2aAT2 = 2.0_kr * (1.0_Kr - self%residualStiffness)
   end function D2aAT2

#undef __FUNCT__
#define __FUNCT__ "wAT2"
!!! author: Blaise Bourdin (2020, bourdin@lsu.edu)
!!!
!!!  wAT2: the "w" function of the standard AT2 model, i.e. $w(\alpha) = \alpha^2$
!!!
   PetscReal function wAT2(self, alpha)
      class(MEF90DefMechAT2_Type), intent(IN)           :: self
      PetscReal                                         :: alpha

      wAT2 = alpha**2
   end function wAT2

#undef __FUNCT__
#define __FUNCT__ "DwAT2"
!!! author: Blaise Bourdin (2020, bourdin@lsu.edu)
!!!
!!!  DwAT2: the derivative of the "w" function of the standard AT2 model, i.e. $w'(\alpha) = 2\alpha$
!!!
   PetscReal function DwAT2(self, alpha)
      class(MEF90DefMechAT2_Type), intent(IN)           :: self
      PetscReal                                         :: alpha

      DwAT2 = 2.0_Kr * alpha
   end function DwAT2

#undef __FUNCT__
#define __FUNCT__ "D2wAT2"
!!! author: Blaise Bourdin (2020, bourdin@lsu.edu)
!!!
!!!  D2wAT2: the second derivative of the "w" function of the standard AT2 model, i.e. $w''(\alpha) = 2$
!!!
   PetscReal function D2wAT2(self, alpha)
      class(MEF90DefMechAT2_Type), intent(IN)           :: self
      PetscReal                                         :: alpha

      D2wAT2 = 2.0_Kr
   end function D2wAT2
end module m_MEF90_DefMechAT2