How to run an input file from Matlab!!
How to run an input file from Matlab!!
(OP)
Hi,
I am currently working in some parametric analyses. I would like to know if there is any way to run my models from Matlab, in order to avoid doing this with the Abaqus command each time that I need to run a model. I have tons of input files, so it would be really efficient to have such an application.
Thanks,
I am currently working in some parametric analyses. I would like to know if there is any way to run my models from Matlab, in order to avoid doing this with the Abaqus command each time that I need to run a model. I have tons of input files, so it would be really efficient to have such an application.
Thanks,





RE: How to run an input file from Matlab!!
you could write a Excel sheet that read in the text file into the cells of excel in batch. from there, you could create muti ABAQUS text comment in excel with the mathlab data. then output as text files and run them in batch.
RE: How to run an input file from Matlab!!
Thanks
RE: How to run an input file from Matlab!!
RE: How to run an input file from Matlab!!
My input files are created in Matlab, I just want to complete my program code with a function that calls abaqus and run the models, all with the same program in Matlab.
RE: How to run an input file from Matlab!!
for example if your .inp file is in /home/user/abaqus/model1.inp:
>>!abaqus job=/home/user/abaqus/model1.inp
Same as starting abaqus with a job from the command line, just with a '!' before it.
RE: How to run an input file from Matlab!!
I really appreciate it.