better name
This commit is contained in:
parent
ebef12e446
commit
72b87b0a9b
|
@ -34,7 +34,8 @@ module mesh
|
||||||
mesh_microstructure !< homogenization ID of each element
|
mesh_microstructure !< homogenization ID of each element
|
||||||
|
|
||||||
integer(pInt), dimension(:,:), allocatable, public, protected :: &
|
integer(pInt), dimension(:,:), allocatable, public, protected :: &
|
||||||
mesh_element, & !< FEid, type(internal representation), material, texture, node indices as CP IDs
|
mesh_CPnodeID, &
|
||||||
|
mesh_element, & !DEPRECATED
|
||||||
mesh_sharedElem, & !< entryCount and list of elements containing node
|
mesh_sharedElem, & !< entryCount and list of elements containing node
|
||||||
mesh_nodeTwins !< node twins are surface nodes that lie exactly on opposite sides of the mesh (surfaces nodes with equal coordinate values in two dimensions)
|
mesh_nodeTwins !< node twins are surface nodes that lie exactly on opposite sides of the mesh (surfaces nodes with equal coordinate values in two dimensions)
|
||||||
|
|
||||||
|
@ -647,6 +648,7 @@ subroutine mesh_init(ip,el)
|
||||||
! better name
|
! better name
|
||||||
mesh_homogenization = mesh_element(3,:)
|
mesh_homogenization = mesh_element(3,:)
|
||||||
mesh_microstructure = mesh_element(4,:)
|
mesh_microstructure = mesh_element(4,:)
|
||||||
|
mesh_CPnodeID = mesh_element(5:4+mesh_NipsPerElem,:)
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
end subroutine mesh_init
|
end subroutine mesh_init
|
||||||
|
|
|
@ -39,7 +39,8 @@ use PETScis
|
||||||
real(pReal), public, protected :: charLength
|
real(pReal), public, protected :: charLength
|
||||||
|
|
||||||
integer(pInt), dimension(:,:), allocatable, public, protected :: &
|
integer(pInt), dimension(:,:), allocatable, public, protected :: &
|
||||||
mesh_element !< FEid, type(internal representation), material, texture, node indices as CP IDs
|
mesh_CPnodeID, &
|
||||||
|
mesh_element !DEPRECATED
|
||||||
|
|
||||||
real(pReal), dimension(:,:), allocatable, public :: &
|
real(pReal), dimension(:,:), allocatable, public :: &
|
||||||
mesh_node !< node x,y,z coordinates (after deformation! ONLY FOR MARC!!!)
|
mesh_node !< node x,y,z coordinates (after deformation! ONLY FOR MARC!!!)
|
||||||
|
@ -245,6 +246,7 @@ subroutine mesh_init(ip,el)
|
||||||
! better name
|
! better name
|
||||||
mesh_homogenization = mesh_element(3,:)
|
mesh_homogenization = mesh_element(3,:)
|
||||||
mesh_microstructure = mesh_element(4,:)
|
mesh_microstructure = mesh_element(4,:)
|
||||||
|
mesh_CPnodeID = mesh_element(5:4+mesh_NipsPerElem,:)
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
end subroutine mesh_init
|
end subroutine mesh_init
|
||||||
|
|
Loading…
Reference in New Issue