Using Matlab to optimize the ABAQUS/Explicit FE mode

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


how to run the abaqus using C++ language

hi

     does anyone know how to run the abaqus using c++ language

thank u so  much.


Dan Cojocaru's picture

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.