FEM: ccx writer, write peeq output request to input file if nonlinear material analysis,

by sodelo
This commit is contained in:
Bernd Hahnebach 2017-02-20 06:32:06 +01:00 committed by wmayer
parent b3bcef5189
commit eb14ba516e

View File

@ -844,7 +844,10 @@ class FemInputWriterCcx(FemInputWriter.FemInputWriter):
else:
f.write('U\n')
f.write('*EL FILE\n')
f.write('S, E\n')
if self.solver_obj.MaterialNonlinearity == 'nonlinear':
f.write('S, E, PEEQ\n')
else:
f.write('S, E\n')
f.write('** outputs --> dat file\n')
f.write('*NODE PRINT , NSET=Nall \n')
f.write('U \n')