rstupplebeen
Mechanical
- May 9, 2007
- 1,281
I was doing some manipulating of my enviroment file and thought that it could be a good resource to others especially if other people post theirs.
Background
The environment file is located at C:\Abaqus\6.8-1\site\abaqus_v6.env or something like that. It controls many options for the solver and cae such as memory, temp files, and visualization.
Below is the small section that I have customized. I hope others have more impressive customizations.
abaqus_no_hardware_acceleration=ON #unsupported video card that I inherited
ask_delete=OFF
def onCaeStartup():
def setVisPreferences(module,userData):
import visualization
session.defaultOdbDisplay.contourOptions.setValues(
renderStyle=FILLED,visibleEdges=EXTERIOR,
contourStyle=CONTINUOUS,
minAutoCompute=OFF,
minValue=0)
addImportCallback('visualization',setVisPreferences)
Background
The environment file is located at C:\Abaqus\6.8-1\site\abaqus_v6.env or something like that. It controls many options for the solver and cae such as memory, temp files, and visualization.
Below is the small section that I have customized. I hope others have more impressive customizations.
abaqus_no_hardware_acceleration=ON #unsupported video card that I inherited
ask_delete=OFF
def onCaeStartup():
def setVisPreferences(module,userData):
import visualization
session.defaultOdbDisplay.contourOptions.setValues(
renderStyle=FILLED,visibleEdges=EXTERIOR,
contourStyle=CONTINUOUS,
minAutoCompute=OFF,
minValue=0)
addImportCallback('visualization',setVisPreferences)