2019-05-14 15:02:25 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @author Philip Eisenlohr, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Christoph Koords, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Martin Diehl, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @brief Geometric information about the IP cells needed for the nonlocal
|
|
|
|
! plasticity model
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
module geometry_plastic_nonlocal
|
|
|
|
use prec
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
private
|
2019-06-07 11:08:04 +05:30
|
|
|
|
|
|
|
integer, public, protected :: &
|
|
|
|
geometry_plastic_nonlocal_nIPneighbors
|
|
|
|
|
|
|
|
integer, dimension(:,:,:,:), allocatable, public, protected :: &
|
|
|
|
geometry_plastic_nonlocal_IPneighborhood !< 6 or less neighboring IPs as [element ID, IP ID, face ID that point to me]
|
2019-05-14 15:02:25 +05:30
|
|
|
|
2019-06-06 14:38:58 +05:30
|
|
|
real(pReal), dimension(:,:), allocatable, public, protected :: &
|
|
|
|
geometry_plastic_nonlocal_IPvolume0 !< volume associated with IP (initially!)
|
|
|
|
|
|
|
|
real(pReal), dimension(:,:,:), allocatable, public, protected :: &
|
|
|
|
geometry_plastic_nonlocal_IParea0 !< area of interface to neighboring IP (initially!)
|
|
|
|
|
|
|
|
real(pReal), dimension(:,:,:,:), allocatable, public, protected :: &
|
|
|
|
geometry_plastic_nonlocal_IPareaNormal0 !< area normal of interface to neighboring IP (initially!)
|
|
|
|
|
2019-05-14 15:02:25 +05:30
|
|
|
|
2019-05-14 15:22:28 +05:30
|
|
|
public :: &
|
|
|
|
geometry_plastic_nonlocal_set_IPneighborhood, &
|
2019-06-07 11:08:04 +05:30
|
|
|
geometry_plastic_nonlocal_set_IPvolume, &
|
|
|
|
geometry_plastic_nonlocal_set_IParea, &
|
|
|
|
geometry_plastic_nonlocal_set_IPareaNormal
|
2019-05-14 15:22:28 +05:30
|
|
|
|
2019-06-07 11:08:04 +05:30
|
|
|
contains
|
|
|
|
|
|
|
|
!---------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief Set the integration point (IP) neighborhood
|
|
|
|
!> @details: The IP neighborhood for element ID (last index), IP ID (second but last index) and
|
|
|
|
! face ID (second index) gives the element ID (1 @ first index), IP ID (2 @ first index)
|
|
|
|
! and face ID (3 @ first index).
|
|
|
|
! A triangle (2D) has 3 faces, a quadrilateral (2D) had 4 faces, a tetrahedron (3D) has
|
|
|
|
! 4 faces, and a hexahedron (3D) has 6 faces.
|
|
|
|
!---------------------------------------------------------------------------------------------------
|
2019-05-14 15:22:28 +05:30
|
|
|
subroutine geometry_plastic_nonlocal_set_IPneighborhood(IPneighborhood)
|
|
|
|
|
|
|
|
integer, dimension(:,:,:,:), intent(in) :: IPneighborhood
|
|
|
|
|
|
|
|
geometry_plastic_nonlocal_IPneighborhood = IPneighborhood
|
2019-06-07 11:08:04 +05:30
|
|
|
geometry_plastic_nonlocal_nIPneighbors = size(IPneighborhood,2)
|
|
|
|
|
2019-05-14 15:22:28 +05:30
|
|
|
|
|
|
|
end subroutine geometry_plastic_nonlocal_set_IPneighborhood
|
|
|
|
|
|
|
|
|
2019-06-07 11:08:04 +05:30
|
|
|
!---------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief Set the initial volume associated with an integration point
|
|
|
|
!---------------------------------------------------------------------------------------------------
|
2019-05-14 15:22:28 +05:30
|
|
|
subroutine geometry_plastic_nonlocal_set_IPvolume(IPvolume)
|
|
|
|
|
|
|
|
real(pReal), dimension(:,:), intent(in) :: IPvolume
|
|
|
|
|
2019-06-06 14:38:58 +05:30
|
|
|
geometry_plastic_nonlocal_IPvolume0 = IPvolume
|
2019-05-14 15:22:28 +05:30
|
|
|
|
|
|
|
end subroutine geometry_plastic_nonlocal_set_IPvolume
|
|
|
|
|
2019-05-14 15:02:25 +05:30
|
|
|
|
2019-06-07 11:08:04 +05:30
|
|
|
!---------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief Set the initial areas of the unit triangle/unit quadrilateral/tetrahedron/hexahedron
|
|
|
|
! encompassing an integration point
|
|
|
|
!---------------------------------------------------------------------------------------------------
|
|
|
|
subroutine geometry_plastic_nonlocal_set_IParea(IParea)
|
|
|
|
|
|
|
|
real(pReal), dimension(:,:,:), intent(in) :: IParea
|
|
|
|
|
|
|
|
geometry_plastic_nonlocal_IParea0 = IParea
|
|
|
|
|
|
|
|
end subroutine geometry_plastic_nonlocal_set_IParea
|
|
|
|
|
|
|
|
|
|
|
|
!---------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief Set the direction normal of the areas of the triangle/quadrilateral/tetrahedron/hexahedron
|
|
|
|
! encompassing an integration point
|
|
|
|
!---------------------------------------------------------------------------------------------------
|
|
|
|
subroutine geometry_plastic_nonlocal_set_IPareaNormal(IPareaNormal)
|
|
|
|
|
|
|
|
real(pReal), dimension(:,:,:,:), intent(in) :: IPareaNormal
|
|
|
|
|
|
|
|
geometry_plastic_nonlocal_IPareaNormal0 = IPareaNormal
|
|
|
|
|
|
|
|
end subroutine geometry_plastic_nonlocal_set_IPareaNormal
|
|
|
|
|
|
|
|
|
2019-05-14 15:02:25 +05:30
|
|
|
end module geometry_plastic_nonlocal
|