cell node definition needs to be stored
This commit is contained in:
parent
ed1d06d6f1
commit
004abc2d4e
|
@ -24,6 +24,11 @@ module mesh
|
||||||
implicit none
|
implicit none
|
||||||
private
|
private
|
||||||
|
|
||||||
|
type tCellNodeDefinition
|
||||||
|
integer, dimension(:,:), allocatable :: parents
|
||||||
|
integer, dimension(:,:), allocatable :: weights
|
||||||
|
end type tCellNodeDefinition
|
||||||
|
|
||||||
real(pReal), public, protected :: &
|
real(pReal), public, protected :: &
|
||||||
mesh_unitlength !< physical length of one unit in mesh
|
mesh_unitlength !< physical length of one unit in mesh
|
||||||
|
|
||||||
|
@ -38,7 +43,7 @@ module mesh
|
||||||
!--------------------------------------------------------------------------------------------------
|
!--------------------------------------------------------------------------------------------------
|
||||||
|
|
||||||
integer, dimension(:,:), allocatable :: &
|
integer, dimension(:,:), allocatable :: &
|
||||||
mesh_FEnodes
|
connectivity_elem
|
||||||
|
|
||||||
real(pReal), dimension(:,:), allocatable :: &
|
real(pReal), dimension(:,:), allocatable :: &
|
||||||
mesh_node, & !< node x,y,z coordinates (after deformation! ONLY FOR MARC!!!
|
mesh_node, & !< node x,y,z coordinates (after deformation! ONLY FOR MARC!!!
|
||||||
|
@ -164,7 +169,7 @@ subroutine mesh_init(ip,el)
|
||||||
allocate(microstructureAt(theMesh%nElems), source=0)
|
allocate(microstructureAt(theMesh%nElems), source=0)
|
||||||
allocate(homogenizationAt(theMesh%nElems), source=0)
|
allocate(homogenizationAt(theMesh%nElems), source=0)
|
||||||
|
|
||||||
mesh_FEnodes = mesh_marc_buildElements(theMesh%nElems,theMesh%elem%nNodes,FILEUNIT)
|
connectivity_elem = mesh_marc_buildElements(theMesh%nElems,theMesh%elem%nNodes,FILEUNIT)
|
||||||
call mesh_marc_buildElements2(microstructureAt,homogenizationAt, &
|
call mesh_marc_buildElements2(microstructureAt,homogenizationAt, &
|
||||||
mesh_nElems,theMesh%elem%nNodes,initialcondTableStyle,FILEUNIT)
|
mesh_nElems,theMesh%elem%nNodes,initialcondTableStyle,FILEUNIT)
|
||||||
if (myDebug) write(6,'(a)') ' Built elements'; flush(6)
|
if (myDebug) write(6,'(a)') ' Built elements'; flush(6)
|
||||||
|
@ -174,12 +179,12 @@ subroutine mesh_init(ip,el)
|
||||||
#if defined(DAMASK_HDF5)
|
#if defined(DAMASK_HDF5)
|
||||||
call results_openJobFile
|
call results_openJobFile
|
||||||
call HDF5_closeGroup(results_addGroup('geometry'))
|
call HDF5_closeGroup(results_addGroup('geometry'))
|
||||||
call results_writeDataset('geometry',mesh_FEnodes,'C',&
|
call results_writeDataset('geometry',connectivity_elem,'C',&
|
||||||
'connectivity of the elements','-')
|
'connectivity of the elements','-')
|
||||||
call results_closeJobFile
|
call results_closeJobFile
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
call buildCells(theMesh,theMesh%elem,mesh_FEnodes)
|
call buildCells(theMesh,theMesh%elem,connectivity_elem)
|
||||||
|
|
||||||
call mesh_build_cellconnectivity
|
call mesh_build_cellconnectivity
|
||||||
if (myDebug) write(6,'(a)') ' Built cell connectivity'; flush(6)
|
if (myDebug) write(6,'(a)') ' Built cell connectivity'; flush(6)
|
||||||
|
@ -641,14 +646,16 @@ function mesh_marc_buildElements(nElem,nNodes,fileUnit)
|
||||||
if (e /= 0) then ! disregard non CP elems
|
if (e /= 0) then ! disregard non CP elems
|
||||||
nNodesAlreadyRead = 0
|
nNodesAlreadyRead = 0
|
||||||
do j = 1,chunkPos(1)-2
|
do j = 1,chunkPos(1)-2
|
||||||
mesh_marc_buildElements(j,e) = mesh_FEasCP('node',IO_IntValue(line,chunkPos,j+2)) ! CP ids of nodes
|
mesh_marc_buildElements(j,e) = &
|
||||||
|
mesh_FEasCP('node',IO_IntValue(line,chunkPos,j+2))
|
||||||
enddo
|
enddo
|
||||||
nNodesAlreadyRead = chunkPos(1) - 2
|
nNodesAlreadyRead = chunkPos(1) - 2
|
||||||
do while(nNodesAlreadyRead < nNodes) ! read on if not all nodes in one line
|
do while(nNodesAlreadyRead < nNodes) ! read on if not all nodes in one line
|
||||||
read (fileUnit,'(A300)',END=620) line
|
read (fileUnit,'(A300)',END=620) line
|
||||||
chunkPos = IO_stringPos(line)
|
chunkPos = IO_stringPos(line)
|
||||||
do j = 1,chunkPos(1)
|
do j = 1,chunkPos(1)
|
||||||
mesh_marc_buildElements(nNodesAlreadyRead+j,e) = mesh_FEasCP('node',IO_IntValue(line,chunkPos,j)) ! CP ids of nodes
|
mesh_marc_buildElements(nNodesAlreadyRead+j,e) = &
|
||||||
|
mesh_FEasCP('node',IO_IntValue(line,chunkPos,j))
|
||||||
enddo
|
enddo
|
||||||
nNodesAlreadyRead = nNodesAlreadyRead + chunkPos(1)
|
nNodesAlreadyRead = nNodesAlreadyRead + chunkPos(1)
|
||||||
enddo
|
enddo
|
||||||
|
@ -731,6 +738,8 @@ subroutine buildCells(thisMesh,elem,connectivity_elem)
|
||||||
integer,dimension(:,:), allocatable :: parentsAndWeights,candidates_global, connectivity_cell_reshape
|
integer,dimension(:,:), allocatable :: parentsAndWeights,candidates_global, connectivity_cell_reshape
|
||||||
integer,dimension(:,:,:), allocatable :: connectivity_cell
|
integer,dimension(:,:,:), allocatable :: connectivity_cell
|
||||||
|
|
||||||
|
type(tCellNodeDefinition), dimension(:), allocatable :: cellNodeDefinition
|
||||||
|
|
||||||
real(pReal), dimension(:,:), allocatable :: nodes_new,nodes
|
real(pReal), dimension(:,:), allocatable :: nodes_new,nodes
|
||||||
integer :: e, n, c, p, s,i,m,j,nParentNodes,nCellNode,Nelem,candidateID
|
integer :: e, n, c, p, s,i,m,j,nParentNodes,nCellNode,Nelem,candidateID
|
||||||
|
|
||||||
|
@ -756,6 +765,8 @@ subroutine buildCells(thisMesh,elem,connectivity_elem)
|
||||||
nCellNode = thisMesh%nNodes
|
nCellNode = thisMesh%nNodes
|
||||||
|
|
||||||
|
|
||||||
|
allocate(cellNodeDefinition(elem%nNodes-1))
|
||||||
|
|
||||||
!---------------------------------------------------------------------------------------------------
|
!---------------------------------------------------------------------------------------------------
|
||||||
! set connectivity of cell nodes that are defined by 2,...,nNodes real nodes
|
! set connectivity of cell nodes that are defined by 2,...,nNodes real nodes
|
||||||
do nParentNodes = 2, elem%nNodes
|
do nParentNodes = 2, elem%nNodes
|
||||||
|
@ -816,6 +827,8 @@ subroutine buildCells(thisMesh,elem,connectivity_elem)
|
||||||
|
|
||||||
i = uniqueRows(candidates_global(1:2*nParentNodes,:))
|
i = uniqueRows(candidates_global(1:2*nParentNodes,:))
|
||||||
|
|
||||||
|
allocate(cellNodeDefinition(nParentNodes-1)%parents(i,nParentNodes))
|
||||||
|
allocate(cellNodeDefinition(nParentNodes-1)%weights(i,nParentNodes))
|
||||||
|
|
||||||
! calculate coordinates of cell nodes and insert their ID into the cell conectivity
|
! calculate coordinates of cell nodes and insert their ID into the cell conectivity
|
||||||
nodes_new = reshape([(0.0_pReal,j = 1, 3*i)], [3,i])
|
nodes_new = reshape([(0.0_pReal,j = 1, 3*i)], [3,i])
|
||||||
|
@ -840,9 +853,11 @@ subroutine buildCells(thisMesh,elem,connectivity_elem)
|
||||||
connectivity_cell(:,:,candidates_global(nParentNodes*2+1,n+j)) = nCellNode + i ! gets current new cell node id
|
connectivity_cell(:,:,candidates_global(nParentNodes*2+1,n+j)) = nCellNode + i ! gets current new cell node id
|
||||||
end where
|
end where
|
||||||
|
|
||||||
j = j + 1
|
j = j+1
|
||||||
enddo
|
enddo
|
||||||
i=i+1
|
cellNodeDefinition(nParentNodes-1)%parents(i,:) = parentsAndWeights(:,1)
|
||||||
|
cellNodeDefinition(nParentNodes-1)%weights(i,:) = parentsAndWeights(:,2)
|
||||||
|
i = i+1
|
||||||
n = n+j
|
n = n+j
|
||||||
|
|
||||||
enddo
|
enddo
|
||||||
|
@ -940,7 +955,7 @@ subroutine mesh_build_cellconnectivity
|
||||||
do n = 1,theMesh%elem%NcellnodesPerCell
|
do n = 1,theMesh%elem%NcellnodesPerCell
|
||||||
localCellnodeID = theMesh%elem%cell(n,i)
|
localCellnodeID = theMesh%elem%cell(n,i)
|
||||||
if (localCellnodeID <= FE_NmatchingNodes(theMesh%elem%geomType)) then ! this cell node is a matching node
|
if (localCellnodeID <= FE_NmatchingNodes(theMesh%elem%geomType)) then ! this cell node is a matching node
|
||||||
matchingNodeID = mesh_FEnodes(localCellnodeID,e)
|
matchingNodeID = connectivity_elem(localCellnodeID,e)
|
||||||
if (matchingNode2cellnode(matchingNodeID) == 0) then ! if this matching node does not yet exist in the glbal cell node list ...
|
if (matchingNode2cellnode(matchingNodeID) == 0) then ! if this matching node does not yet exist in the glbal cell node list ...
|
||||||
mesh_Ncellnodes = mesh_Ncellnodes + 1 ! ... count it as cell node ...
|
mesh_Ncellnodes = mesh_Ncellnodes + 1 ! ... count it as cell node ...
|
||||||
matchingNode2cellnode(matchingNodeID) = mesh_Ncellnodes ! ... and remember its global ID
|
matchingNode2cellnode(matchingNodeID) = mesh_Ncellnodes ! ... and remember its global ID
|
||||||
|
@ -994,7 +1009,7 @@ function mesh_build_cellnodes()
|
||||||
localCellnodeID = mesh_cellnodeParent(2,n)
|
localCellnodeID = mesh_cellnodeParent(2,n)
|
||||||
myCoords = 0.0_pReal
|
myCoords = 0.0_pReal
|
||||||
do m = 1,theMesh%elem%nNodes
|
do m = 1,theMesh%elem%nNodes
|
||||||
myCoords = myCoords + mesh_node(1:3,mesh_FEnodes(m,e)) &
|
myCoords = myCoords + mesh_node(1:3,connectivity_elem(m,e)) &
|
||||||
* theMesh%elem%cellNodeParentNodeWeights(m,localCellnodeID)
|
* theMesh%elem%cellNodeParentNodeWeights(m,localCellnodeID)
|
||||||
enddo
|
enddo
|
||||||
mesh_build_cellnodes(1:3,n) = myCoords / sum(theMesh%elem%cellNodeParentNodeWeights(:,localCellnodeID))
|
mesh_build_cellnodes(1:3,n) = myCoords / sum(theMesh%elem%cellNodeParentNodeWeights(:,localCellnodeID))
|
||||||
|
|
Loading…
Reference in New Issue