Hi all,
I'm looking for the way to get the coordinates from integration points directly from an odb with python. Currently I can just get the nodes coordinates (instance.nodes[i].coordinates[1]).
Thanks in advance,
alex
I think it could be possible to do this with a python script... You should have a look on your replay file (default : abaqus.rpy) when you do that with your CAE model and then try to rebuilt a clean python file.
rgds
Thanks again vumat for your contribution.
But, which .env file do you mean ? I looked up at every *.env in my Abaqus directory, and I didn't find "ask_delete" somewhere.
Hi all,
I run Abaqus on batch mode. I have a script which launch few calculus, and I wonder how setting the command line to assume a 'yes' to this question :
Old job files exist. Overwrite (y/n)?
I don't want to stay in front of my PC and fill a 'y' every time.
Thanks in advance,
Alex
Hi vumat721 and thanks for your valuable contribution.
Yes it creates a .log file which apparently record an error. How could I fix it ?
Abaqus JOB debuguage
Abaqus Version 6.8-2
Socket error: (-2, 'Name or service not known')
Begin Analysis Input File Processor
Wed Mar 25 11:14:41 2009
Run...
Thanks RGX for your answer,
Indeed, I could do that. But in fact, this command is included in a loop.
This is something like :
for myodb in ODBbase:
abaqus viewer noGUI=writeDisp.py myodb
end
(This is just ti illustrate)
So the question is, how giving an argument to my python file...
Hi all,
I'd like to run Abaqus without GUI (Graphical User Interface) but I have a python file with arguments required.
The following command line doesn't work :
abaqus viewer noGUI=writeDisp.py /home/workspace/test.odb
(writeDisp has a path as argument)
Does anybody know how using the...
Thanks corus,
Actually this is what I'm trying to do from CAE : from the Job Module I click on submit, and my_Job is submitted. At this point the PC does nothing else, no error message, no freezing, no calculus...
My_Job is just wrote in my folder (my_Job.inp), and CAE is still prompting...
Hi all,
Since I run Abaqus from Linux, I have the following problem : my job is submitted but it never runs. Apparently CAE writes the .inp file and then I can run the job from the X :
abaqus job = 'my Job'
Normally I thought I should just submit my Job in CAE and get back the result...
Actually I defined different element sets from my mesh and different sections(with different materials). Then I assigned properties with this type of syntax :
myPart.SectionAssignment(region = elSet[i-1],sectionName = tab_nomSection[i-1])
Thank you for your answer !
Hi All !
I didn't find anything on the forum unfortunetly.
Here is my situation :
- I have a 2D domain meshed (by instance).
- I'd like to assign 2 different materials to 2 different groups of elements.
- I want to keep my mesh.
For the moment I just splitted my domain into 2 groups of...