UMAT-ABAQUS
A general framework to develop material models (UMAT) in ABAQUS
getoutput.py
Go to the documentation of this file.
1 # -*- coding: mbcs -*-
2 #
3 # Abaqus/Viewer Release 6.14-3 replay file
4 # Internal Version: 2015_02_02-21.14.46 134785
5 # Run by jferreira on Fri Dec 18 14:10:08 2015
6 #
7 
8 # from driverUtils import executeOnCaeGraphicsStartup
9 # executeOnCaeGraphicsStartup()
10 #: Executing "onCaeGraphicsStartup()" in the site directory ...
11 import os
12 from abaqus import *
13 from abaqusConstants import *
14 
15 session.Viewport(name='Viewport: 1', origin=(0.0, 0.0), width=243.416656494141,
16  height=165.277770996094)
17 session.viewports['Viewport: 1'].makeCurrent()
18 session.viewports['Viewport: 1'].maximize()
19 from viewerModules import *
20 from driverUtils import executeOnCaeStartup
21 executeOnCaeStartup()
22 
23 odb_file = os.path.join(os.getcwd(), 'cube_umat.odb')
24 
25 o1 = session.openOdb(name=odb_file)
26 session.viewports['Viewport: 1'].setValues(displayedObject=o1)
27 #: Model: /mnt/hgfs/GoogleDrive/abaqus_umat/Hyperelastic/Hyperelastic_cube/cube_umat.odb
28 #: Number of Assemblies: 1
29 #: Number of Assembly instances: 0
30 #: Number of Part instances: 1
31 #: Number of Meshes: 1
32 #: Number of Element Sets: 3
33 #: Number of Node Sets: 10
34 #: Number of Steps: 1
35 session.viewports['Viewport: 1'].odbDisplay.display.setValues(plotState=(
36  CONTOURS_ON_DEF, ))
37 odb = session.odbs[odb_file]
38 session.xyDataListFromField(odb=odb, outputPosition=NODAL, variable=(('U',
39  NODAL, ((COMPONENT, 'U2'), )), ('S', INTEGRATION_POINT, ((INVARIANT,
40  'Max. Principal'), )), ('SDV_DET', INTEGRATION_POINT), ), nodePick=((
41  'PART-1-1', 1, ('[#1 ]', )), ), )
42 xy1 = session.xyDataObjects['U:U2 PI: PART-1-1 N: 1']
43 xy2 = session.xyDataObjects['S:Max Principal (Avg: 75%) PI: PART-1-1 N: 1']
44 xy3 = combine(xy1+1, xy2)
45 xy3.setValues(
46  sourceDescription='combine ( "U:U2 PI: PART-1-1 N: 1"+1,"S:Max Principal (Avg: 75%) PI: PART-1-1 N: 1" )')
47 tmpName = xy3.name
48 session.xyDataObjects.changeKey(tmpName, 'Displacement vs SMax_Principal')
49 x0 = session.xyDataObjects['Displacement vs SMax_Principal']
50 session.writeXYReport(fileName='output.txt', xyData=(x0, ))
51