Skip to content Skip to sidebar Skip to footer

Can't Connect Abaqus Pde To Abaqus/cae

When I try to run Abaqus PDE (Python development environment) for example from the windows command line with the command: abaqus cae -pde I get the following error in the command

Solution 1:

That's probably because you installed (or tried to install) a cracked version of Abaqus in the past. When you do so, you modify the way sockets created by Abaqus access the DNS service (so that the license isn't checked), and these changes also affect sockets that connect different programs within Abaqus. (In this case Abaqus/PDE and Abaqus/CAE.) That's why you get that "getaddrinfo failed" message. (getaddrinfo is a function of the Python module socket.)

What I did to solve this issue was to uninstall the version of Abaqus I had, restart my computer in safe mode, delete the folder C:\SIMULIA, restart again in normal mode and install my version of Abaqus again. I have to say that PDE will never connect to CAE if you use a cracked version of Abaqus.

Solution 2:

You need to check your temp path if there are abaqus commands. Also You can try re install abaqus.

You can also write these lines in your script then can try again. It will work.

#from part import *
from material import *
from section import *
from optimization import *
from assembly import *
from step import *
from interaction import *
from load import *
from mesh import *
from job import *
from sketch import *
from visualization import *
from connectorBehavior import *
import __main__
import section
import regionToolset
import displayGroupMdbToolset as dgm
import part
import material
import assembly
import step
import interaction
import load
import mesh
import job
import sketch
import visualization
import xyPlot
import displayGroupOdbToolset as dgo
import connectorBehavior
import odbAccess
#
session.viewports['Viewport: 1'].setValues(displayedObject=None)
#

Post a Comment for "Can't Connect Abaqus Pde To Abaqus/cae"