RH72
Mechanical
- May 28, 2012
- 1
I have written a large Python application for Abaqus. The only issue that I have is how to output certain components to the .dat file using Python without having to alter my input files.
The part that I want my input file to contain is
*Output, field, variable=PRESELECT
*Node Output
CF,... (other output)
AND
** HISTORY OUTPUT: H-Output-1
**
*Output, history, variable=PRESELECT
*El Print, freq=1, POSITION=CENTROIDAL, ELSET=mySet1
VARIABLE NAME
I have been doing this by manually inserting this into the input file. What is the Python function that will simply allow me to output that data to the .dat file? (I'm assuming there is some "node print" or "element print")
Thanks
The part that I want my input file to contain is
*Output, field, variable=PRESELECT
*Node Output
CF,... (other output)
AND
** HISTORY OUTPUT: H-Output-1
**
*Output, history, variable=PRESELECT
*El Print, freq=1, POSITION=CENTROIDAL, ELSET=mySet1
VARIABLE NAME
I have been doing this by manually inserting this into the input file. What is the Python function that will simply allow me to output that data to the .dat file? (I'm assuming there is some "node print" or "element print")
Thanks