-
Hi, everyone. I have a question about the method |
Beta Was this translation helpful? Give feedback.
Answered by
Rfaelv
Jan 13, 2025
Replies: 1 comment 3 replies
-
Hi @Rfaelv MAPDL does not have an read-only mode. What is the intent of having a read-only mode? Sharing the model/results with someone? Or another reason? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @mikerife, thanks for the reply. I made a script to share with my co-researchers and I would like to allow them to open the GUI right before the analysis began to visualize and check the model, but without the permission to edit it.
By making small changes to the
open_gui
method I achieved this. When the parameterinplace
is False the current code is defined to resume after closing the GUI based on the database in the temp directory. I changed the code to always resume based on the database of therun_locale
directory. In this way, ifinplace=True
the changes made through the GUI are considered and ifinplace=False
doesn't. Then withinplace=False
the GUI opening behaves like in read-o…