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.
Answered by
heetrojivadiya
May 31, 2024
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.
0 replies
Answer selected by
heetrojivadiya
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.