In this question, I asked how I can add a custom package to the MODELICAPATH on startup, but there was some ambiguity in the answers. Based on the answers, I can use either
openModel("path\to\file.mo")
or
openModelFile("Fully.Qualified.Model.Name")
I would like to know how these commands differ, if at all, and when to use one or the other.
EDIT: if you answer please provide sources in the Modelica documentation. I am not sure how to even navigate the documentation to find these commands so this is probably a big handicap.
Chad,
For any questions related to the "built-in" commands in Dymola, please be aware that you can get some basic documentation by using the
document(...)
function (apparently,help
was too pedestrian andelucidate
was too pretentious?). This command can be invoked from the command line on the bottom of the "Simulation" tab in Dymola. It takes a string of the function name as the argument. So, to answer your question:Sadly, I don't think the documentation quite captures the difference here. In fact, I would argue the names are really backward if you think about it.
openModel
takes a file as an argument and opens the definition contained in that file (typically apackage
but not necessarily). On the other hand,openModelFile
takes a model name as an argument and opens that model in the model browser (searching the MODELICAPATH, if necessary, to find and open the model).I hope that helps.