top of page
If using this toolbox for research or industrial purposes, please cite:
Advances in Engineering Software. Vol 105. March 2017. Pages 9-16. (2017)
Abaqus2Matlab v.3.0
A new way to post-process FEA
bottom of page
satta king is one of the trusted website from which you can earn money online.
Hello,
Yes, sure you can use the above code, but please check first that when the command "system" is called, the Matlab execution waits until the Abaqus analysis is completed, i.e. until the "system" command is fully executed.
Let me know if your code works, or if you need any help with this.
Best regards!
for k = 1:n
jobname{k} = ['job', num2str(k)];
end
for k = 1:n
cmd_str = ['abaqus job=', jobname{k}, ' input=', jobname{k}, '.inp interactive'];
disp(cmd_str);
system(cmd_str);
end
Dear Sir,
Can the above modification in system command be used in abaqus2matlab as i want several input files to run together?
Dear h.t p.s009,
You could setup a for loop in a Matlab script in which each repetition will run an Abaqus analysis. You can see some examples for running an Abaqus analysis through Matlab in the following links:
https://abaqus2matlab.wixsite.com/abaqus2matlab/forum/abaqus2matlab-users-forum/problem-in-running-abaqus-job
https://abaqus2matlab.wixsite.com/abaqus2matlab/forum/main/comment/5b52e93eb123ae00139fa713
https://abaqus2matlab.wixsite.com/abaqus2matlab/forum/main/comment/5def6247da78f100182a2f15
Best regards.