Noutput not needed anymore
This commit is contained in:
parent
a678e9b94f
commit
a0c3a65b39
|
@ -193,17 +193,14 @@ subroutine homogenization_init
|
||||||
select case(homogenization_type(p)) ! split per homogenization type
|
select case(homogenization_type(p)) ! split per homogenization type
|
||||||
case (HOMOGENIZATION_NONE_ID)
|
case (HOMOGENIZATION_NONE_ID)
|
||||||
outputName = HOMOGENIZATION_NONE_label
|
outputName = HOMOGENIZATION_NONE_label
|
||||||
thisNoutput => null()
|
|
||||||
thisOutput => null()
|
thisOutput => null()
|
||||||
thisSize => null()
|
thisSize => null()
|
||||||
case (HOMOGENIZATION_ISOSTRAIN_ID)
|
case (HOMOGENIZATION_ISOSTRAIN_ID)
|
||||||
outputName = HOMOGENIZATION_ISOSTRAIN_label
|
outputName = HOMOGENIZATION_ISOSTRAIN_label
|
||||||
thisNoutput => null()
|
|
||||||
thisOutput => null()
|
thisOutput => null()
|
||||||
thisSize => null()
|
thisSize => null()
|
||||||
case (HOMOGENIZATION_RGC_ID)
|
case (HOMOGENIZATION_RGC_ID)
|
||||||
outputName = HOMOGENIZATION_RGC_label
|
outputName = HOMOGENIZATION_RGC_label
|
||||||
thisNoutput => homogenization_RGC_Noutput
|
|
||||||
thisOutput => homogenization_RGC_output
|
thisOutput => homogenization_RGC_output
|
||||||
thisSize => homogenization_RGC_sizePostResult
|
thisSize => homogenization_RGC_sizePostResult
|
||||||
case default
|
case default
|
||||||
|
@ -215,7 +212,7 @@ subroutine homogenization_init
|
||||||
write(FILEUNIT,'(a,i4)') '(ngrains)'//char(9),homogenization_Ngrains(p)
|
write(FILEUNIT,'(a,i4)') '(ngrains)'//char(9),homogenization_Ngrains(p)
|
||||||
if (homogenization_type(p) /= HOMOGENIZATION_NONE_ID .and. &
|
if (homogenization_type(p) /= HOMOGENIZATION_NONE_ID .and. &
|
||||||
homogenization_type(p) /= HOMOGENIZATION_ISOSTRAIN_ID) then
|
homogenization_type(p) /= HOMOGENIZATION_ISOSTRAIN_ID) then
|
||||||
do e = 1,thisNoutput(i)
|
do e = 1,size(thisOutput(:,i))
|
||||||
write(FILEUNIT,'(a,i4)') trim(thisOutput(e,i))//char(9),thisSize(e,i)
|
write(FILEUNIT,'(a,i4)') trim(thisOutput(e,i))//char(9),thisSize(e,i)
|
||||||
enddo
|
enddo
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -200,6 +200,7 @@ subroutine homogenization_RGC_init(fileUnit)
|
||||||
end select
|
end select
|
||||||
if (outputID /= undefined_ID) then
|
if (outputID /= undefined_ID) then
|
||||||
homogenization_RGC_output(i,instance) = outputs(i)
|
homogenization_RGC_output(i,instance) = outputs(i)
|
||||||
|
print*, homogenization_RGC_output(i,instance)
|
||||||
homogenization_RGC_sizePostResult(i,instance) = outputSize
|
homogenization_RGC_sizePostResult(i,instance) = outputSize
|
||||||
prm%outputID = [prm%outputID , outputID]
|
prm%outputID = [prm%outputID , outputID]
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue