Reputation: 1232
I am learning to debug the modelica model in dymola, I could see that dymola divides all the equations into different groups. For example, in the dslog.txt file, there is information about the iteration variables used to solve 7th equation set, but where could I find the equations used in the 7th group?
Here is the setting I used currently
Upvotes: 2
Views: 113
Reputation: 6655
Check the dsmodel.mof file, which Dymola creates when the corresponding translation flag is activated in the simulation setup window:
Now you will get the file dsmodel.mof in your working directory. This file contains the horizontally and vertically sorted equations. If nonlinear systems of equations occur, you find them grouped in that file, along with a tag, which should correspond to the system of equation number.
Upvotes: 4