base access on cell numbers
DAMASK does not care about elem, IP, etc..
This commit is contained in:
parent
4d9949547c
commit
690777ac88
|
@ -39,8 +39,9 @@ module discretization_marc
|
||||||
connectivity_cell !< cell connectivity for each element,ip/cell
|
connectivity_cell !< cell connectivity for each element,ip/cell
|
||||||
|
|
||||||
public :: &
|
public :: &
|
||||||
discretization_marc_init, &
|
discretization_Marc_init, &
|
||||||
discretization_marc_UpdateNodeAndIpCoords
|
discretization_Marc_updateNodeAndIpCoords, &
|
||||||
|
discretization_Marc_FEM2DAMASK_cell
|
||||||
|
|
||||||
contains
|
contains
|
||||||
|
|
||||||
|
@ -48,7 +49,7 @@ contains
|
||||||
!> @brief initializes the mesh by calling all necessary private routines the mesh module
|
!> @brief initializes the mesh by calling all necessary private routines the mesh module
|
||||||
!! Order and routines strongly depend on type of solver
|
!! Order and routines strongly depend on type of solver
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
subroutine discretization_marc_init
|
subroutine discretization_Marc_init
|
||||||
|
|
||||||
real(pReal), dimension(:,:), allocatable :: &
|
real(pReal), dimension(:,:), allocatable :: &
|
||||||
node0_elem, & !< node x,y,z coordinates (initially!)
|
node0_elem, & !< node x,y,z coordinates (initially!)
|
||||||
|
@ -114,13 +115,13 @@ subroutine discretization_marc_init
|
||||||
call geometry_plastic_nonlocal_setIPneighborhood(IPneighborhood(elem))
|
call geometry_plastic_nonlocal_setIPneighborhood(IPneighborhood(elem))
|
||||||
call geometry_plastic_nonlocal_results
|
call geometry_plastic_nonlocal_results
|
||||||
|
|
||||||
end subroutine discretization_marc_init
|
end subroutine discretization_Marc_init
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
!> @brief Calculate and set current nodal and IP positions (including cell nodes)
|
!> @brief Calculate and set current nodal and IP positions (including cell nodes)
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
subroutine discretization_marc_UpdateNodeAndIpCoords(d_n)
|
subroutine discretization_Marc_updateNodeAndIpCoords(d_n)
|
||||||
|
|
||||||
real(pReal), dimension(:,:), intent(in) :: d_n
|
real(pReal), dimension(:,:), intent(in) :: d_n
|
||||||
|
|
||||||
|
@ -132,7 +133,24 @@ subroutine discretization_marc_UpdateNodeAndIpCoords(d_n)
|
||||||
call discretization_setNodeCoords(node_cell)
|
call discretization_setNodeCoords(node_cell)
|
||||||
call discretization_setIPcoords(buildIPcoordinates(node_cell))
|
call discretization_setIPcoords(buildIPcoordinates(node_cell))
|
||||||
|
|
||||||
end subroutine discretization_marc_UpdateNodeAndIpCoords
|
end subroutine discretization_Marc_updateNodeAndIpCoords
|
||||||
|
|
||||||
|
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
!> @brief Calculate and set current nodal and IP positions (including cell nodes)
|
||||||
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
function discretization_marc_FEM2DAMASK_cell(IP_FEM,elem_FEM) result(cell)
|
||||||
|
|
||||||
|
integer, intent(in) :: IP_FEM, elem_FEM
|
||||||
|
integer :: cell
|
||||||
|
|
||||||
|
real(pReal), dimension(:,:), allocatable :: node_cell
|
||||||
|
|
||||||
|
|
||||||
|
cell = (discretization_Marc_FEM2DAMASK_elem(elem_FEM)-1)*discretization_nIPs + IP_FEM
|
||||||
|
|
||||||
|
|
||||||
|
end function discretization_marc_FEM2DAMASK_cell
|
||||||
|
|
||||||
|
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue