[skip ci] nicer reporting

This commit is contained in:
Martin Diehl 2019-02-01 12:43:14 +01:00
parent 614a8d694c
commit 8e0556fe3e
2 changed files with 16 additions and 19 deletions

View File

@ -904,26 +904,18 @@ contains
self%nIPneighbors = size(self%IPneighbor,1)
write(6,*) 'tElement_init'
write(6,*)'elemType ',self%elemType
write(6,*)'geomType ',self%geomType
write(6,*)'cellType ',self%cellType
write(6,*)'Nnodes ',self%Nnodes
write(6,*)'Ncellnodes ',self%Ncellnodes
write(6,*)'NcellnodesPerCell ',self%NcellnodesPerCell
write(6,*)'nIPs ',self%nIPs
write(6,*)'nIPneighbors ',self%nIPneighbors
write(6,*)'maxNnodeAtIP ',self%maxNnodeAtIP
write(6,*)'Cell ',self%Cell
write(6,*)'NnodeAtIP ',self%NnodeAtIP
write(6,*)'IPneighbor ',self%IPneighbor
write(6,*)'cellFace ',self%cellFace
write(6,*)'cellNodeParentNodeWeights',self%cellNodeParentNodeWeights
write(6,'(/,a)') ' <<<+- element_init -+>>>'
write(6,*)' element type ',self%elemType
write(6,*)' geom type ',self%geomType
write(6,*)' cell type ',self%cellType
write(6,*)' # node ',self%Nnodes
write(6,*)' # IP ',self%nIPs
write(6,*)' # cellnode ',self%Ncellnodes
write(6,*)' # cellnode/cell ',self%NcellnodesPerCell
write(6,*)' # IP neighbor ',self%nIPneighbors
write(6,*)' max # node at IP ',self%maxNnodeAtIP
end subroutine tElement_init
end module element

View File

@ -57,10 +57,15 @@ subroutine tMesh_base_init(self,meshType,elemType,nodes)
integer(pInt), intent(in) :: elemType
real(pReal), dimension(:,:), intent(in) :: nodes
write(6,'(/,a)') ' <<<+- mesh_base_init -+>>>'
write(6,*)' mesh type ',meshType
write(6,*)' # node ',size(nodes,2)
self%type = meshType
call self%elem%init(elemType)
self%node0 = nodes
end subroutine tMesh_base_init
end module mesh_base