added missing lp output to crystallite
This commit is contained in:
parent
de3fc70a02
commit
831e905b16
|
@ -273,7 +273,6 @@ subroutine constitutive_phenopowerlaw_init(fileUnit)
|
|||
tag = IO_lc(IO_stringValue(line,positions,1_pInt)) ! extract key
|
||||
select case(tag)
|
||||
case ('plasticity','elasticity')
|
||||
cycle
|
||||
case ('(output)')
|
||||
constitutive_phenopowerlaw_Noutput(i) = constitutive_phenopowerlaw_Noutput(i) + 1_pInt
|
||||
constitutive_phenopowerlaw_output(constitutive_phenopowerlaw_Noutput(i),i) = &
|
||||
|
|
|
@ -308,6 +308,7 @@ subroutine crystallite_init(temperature)
|
|||
if (IO_getTag(line,'[',']') /= '') then ! next section
|
||||
section = section + 1_pInt
|
||||
output = 0_pInt ! reset output counter
|
||||
cycle ! skip to next line
|
||||
endif
|
||||
if (section > 0_pInt) then
|
||||
positions = IO_stringPos(line,maxNchunks)
|
||||
|
@ -343,6 +344,8 @@ subroutine crystallite_init(temperature)
|
|||
crystallite_outputID(output,section) = fe_ID
|
||||
case ('fp')
|
||||
crystallite_outputID(output,section) = fp_ID
|
||||
case ('lp')
|
||||
crystallite_outputID(output,section) = lp_ID
|
||||
case ('e')
|
||||
crystallite_outputID(output,section) = e_ID
|
||||
case ('ee')
|
||||
|
|
Loading…
Reference in New Issue