Can I call OpenSees interpreter from inside my C++ code?
Moderators: silvia, selimgunay, Moderators
Can I call OpenSees interpreter from inside my C++ code?
I was wondering if I can run OpenSees interpreter from inside my C++ code. For example I have a C++ code which does Finite Element Analysis and I want to use OpenSees capabilities in my Finite Element C++ code. Is it possible? If so, is there any guide on how to do it? If it's not possible, is there any workaround to use OpenSees in C++ code?
Re: Can I call OpenSees interpreter from inside my C++ code?
if you just want the fe capabilities, just use the individual classes (you do not need the interpreter to use them) .. if you have set up your own c++ cod with classes, etc. you should need no guide .. you may need to convert between opensees vectors and matrices and your own.
Re: Can I call OpenSees interpreter from inside my C++ code?
Got you, thanks.