You are here
Using Matlab to optimize the ABAQUS/Explicit FE mode
Mon, 2008-03-17 05:30 - alex_612
Hi,
Does anyone know how to use matlab to do optimzation?
So the matlab can change the input for the abaqus/explicit model and the abaqus/explicit model will output the result to the matlab.
Thank you very much
Forums:
how to run the abaqus using C++ language
hi
does anyone know how to run the abaqus using c++ language
thank u so much.
Re: how to run the abaqus using C++ language
In C++ you can use system()
which is defined as:
int system(
const char *command
);
Depending on the OS other functions might available. For example, for Windows
you might be interested in exec(), popen() and spawn() and their variants.