copy and paste error, wrong array was set
This commit is contained in:
parent
b0ce324213
commit
c2e91ae5e1
|
@ -98,14 +98,14 @@ subroutine CPFEM_init
|
||||||
groupHandle = HDF5_openGroup(fileHandle,'constituent')
|
groupHandle = HDF5_openGroup(fileHandle,'constituent')
|
||||||
do i = 1,size(phase_plasticity)
|
do i = 1,size(phase_plasticity)
|
||||||
write(datasetName,'(i0,a)') i,'_omega_plastic'
|
write(datasetName,'(i0,a)') i,'_omega_plastic'
|
||||||
call HDF5_read(groupHandle,plasticState(i)%state,datasetName)
|
call HDF5_read(groupHandle,plasticState(i)%state0,datasetName)
|
||||||
enddo
|
enddo
|
||||||
call HDF5_closeGroup(groupHandle)
|
call HDF5_closeGroup(groupHandle)
|
||||||
|
|
||||||
groupHandle = HDF5_openGroup(fileHandle,'materialpoint')
|
groupHandle = HDF5_openGroup(fileHandle,'materialpoint')
|
||||||
do i = 1, material_Nhomogenization
|
do i = 1, material_Nhomogenization
|
||||||
write(datasetName,'(i0,a)') i,'_omega_homogenization'
|
write(datasetName,'(i0,a)') i,'_omega_homogenization'
|
||||||
call HDF5_read(groupHandle,homogState(i)%state,datasetName)
|
call HDF5_read(groupHandle,homogState(i)%state0,datasetName)
|
||||||
enddo
|
enddo
|
||||||
call HDF5_closeGroup(groupHandle)
|
call HDF5_closeGroup(groupHandle)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue