GetActiveModel #372
-
Hi there, I would like to interact with an active model, without having to specify the name of the model. For now, in the initModel, you have to put the model_name like this: Is somebody have the solution ? In RFEM /VBA it works perfectly. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hello @jlemeriel , You can access active model in python by simply calling model with False and empty string. For example : Let us know if it works for you or not. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hello @jlemeriel ,
You can access active model in python by simply calling model with False and empty string. For example :
Model(False, '')
.Let us know if it works for you or not.