Running Abaqus from Matlab
显示 更早的评论
Hi All, I have a MATLAB script that generates an .inp file that is sent to the Abaqus solver through the command window by using the line of code below:
dos(‘abaqus job=job.inp’) %or
!abaqus job=job
The high level script is a while-loop and because it involves several iterations, Abaqus inputs files with different names are generated at pre-specified intervals (e.g. job1.inp, job2.inp, job3.inp, etc all created in the working folder). The challenge I am having is how to send these input files with different names to the command window. I have observed that the ‘dos’ statement above can only take ONE input value after the ‘=’ . Please your advice on how to solve this problem will be appreciated. Thanks in advance.
2 个评论
jahanzaib ahmad
2019-4-6
please can u share the script .i want to export matlab 3d figure to abaqus .
Federico De Bianchi
2020-3-23
Hod did you generate an .inp file? I generated this plot and I want to export this structure into Abaqus.
Best regards
Federico

采纳的回答
更多回答(1 个)
ELIAS ALI
2016-3-24
0 个投票
Hi all,
I am working on heat transfer MATLAB input file that will be used in Abaqus.However, I am getting error message "abaqus command line option "input" must have a value". Any one any idea?
Thank you in advance
1 个评论
George Papazafeiropoulos
2017-5-21
The suitable syntax if the name of the job is JOB and the name of the input file is INPUTFILE.inp is:
!abaqus job=JOB input=INPUTFILE
or
system('abaqus job=JOB input=INPUTFILE')
类别
在 帮助中心 和 File Exchange 中查找有关 File Operations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!