start of presentation © prof. dr. françois e. cellier 3 rd modprod workshop – keynote february...

36
February 4, 2009 Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote Technologies for Creating Easily Maintainable Component Model Libraries of Complex Physical Systems François E. Cellier Department of Computer Science ETH Zurich Switzerland

Post on 20-Dec-2015

218 views

Category:

Documents


2 download

TRANSCRIPT

Page 1: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Technologies for Creating Easily Maintainable Component

Model Libraries of Complex Physical Systems

François E. Cellier Department of Computer Science

ETH ZurichSwitzerland

Page 2: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

• The Modelica Standard Library (SL) is growing at an amazing pace. Whereas originally, the SL was meant as a small add-on created for the convenience of the end user, the library is now growing faster in terms of number of lines of code than the Modelica compilers themselves. Fairly soon, the SL will be larger in size than the compilers managing it.

• Maintaining such a large library has become a daunting task, especially since this is a highly distributed endeavor, i.e., there are many researchers contributing regularly to the SL.

• The developers of Modelica environments have long recognized this problem, and they are meanwhile offering quite sophisticated library management tools, such as version control, scripts for automated upgrading of libraries from one version of Modelica to the next, etc.

Page 3: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

• Yet, tools for managing potentially bad models offer only a partial answer to the problem. More important are tools that minimize the complexity of the individual model codes and that support the modeler in making sure that his or her models are correctly reflecting the physics of the underlying physical system to be modeled.

• This presentation offers a discussion of such methodologies.

Page 4: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

1. Graphical Modeling

• Modeling systems graphically is better than modeling them by means of equations.

• Graphical models are two-dimensional, whereas equations are one-dimensional.

• Hence missing connections can be identified more easily.

• The maintenance of graphical models is considerably easier than that of equation models.

Page 5: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

• Graphical modeling forces the modeler to structure his or her models such that each of them fits entirely onto one screen.

• Some graphical modeling environments offer a virtual canvas over which the physical screen can be shifted.

• Don’t use it! It’s a mistake. A model that doesn’t fit on a screen needs to be restructured.

• A Modelica environment that doesn’t offer a full-fledged graphical front end is not competitive.

Page 6: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

2. Bond Graph Modeling

• Bond graphs represent the lowest-level graphical model interface that is still fully object oriented.

• Bond graph modeling enables the modeler to model graphically further down than any other graphical modeling methodology.

• This minimizes the need for using equations, thereby making the so-built libraries easier maintainable.

• Bond graphs do not necessarily offer the best suited GUI for the end user.

Page 7: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

3. Model Wrapping

• Library designers should make use of the best suited graphical modeling methodology for representing their models to the end user.

• However, models can use more than one graphical layer.

• There is no need to implement the top graphical layer directly using equation models.

• Model wrapping enables the library designer to interpret one graphical modeling methodology in terms of another lower-level graphical modeling approach, such as a bond graph.

Page 8: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

A Crane Crab• Let us look at the following crane crab model:

yprismatic joint

revolutejoint

mass 1

mass 2

rod

x

Prismatic Joint

Revolute Joint

Rod

Mass 2

Mass 1

Page 9: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Multi-body System Representation

Page 10: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Crane Crab Simulation ResultsThe animation needs to be associated with the MBS layer, and not with the bond graph layer. Individual bonds cannot be animated. Consequently, the multi-bond graph is not suitable as a user interface.

Page 11: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Model Wrapping II

• Wrapped models contain wrapper models that convert the upper-layer connectors to the lower-layer connectors, and vice-versa.

• They use the protected keyword to hide the internal lower-layer variables from the simulation. In this way, the set of variables offered for display in the simulation window is identical in both libraries. This is called wrapping the model tight.

• The state select algorithm is used to ensure that the flattened Modelica model will employ the same state variables in both libraries.

Page 12: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

An Example• Given the following mechanical system:

Page 13: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

An Example II• Using the translational sub-library of the mechanics library

of the BondLib library, this system can be modeled as follows:

Page 14: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

The Sliding Mass Model• Let us look at the model of a sliding mass.

The two state variables are the f variable of the inductor model and the output of the internal integrator of the q sensor.

Page 15: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

The Sliding Mass Model II• The natural state variables of this

model are the internal variables I.f and sAbs.Integrator1.y. This is inconvenient.

• The user of the model would prefer to use the local variables v and s of the mass model as state variables.

• Modelica can be told to modify the equations such that, if possible, the desired variables are being used as state variables, i.e., show up in the simulation code with a der() operator.

Page 16: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

The Sliding Mass Model IV• One question that remains is for

which variables we now have to specify the initial conditions.

• Do we do it for the new state variables s and v, or do we still do it for the natural state variables?

• It turns out that we can do either or, but not both.

• Modelica will use the specified values as start values of an iteration and iterate on the unknown initial values of the new state variables, until it finds a set of initial conditions that is consistent with the information that has been specified by the user.

Page 17: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Wrapping Tightly – Protected Variables• Let’s now look at the expanded view of

the equation layer of the spring model.• I manually placed the keyword

protected in front of the declarations of variables to the inside of the wrapper models.

• The effect of this measure is to prevent these variables from being displayed in the simulation window.

• In this way, the model parameters will look exactly the same in the simulation window as using the corresponding model of the standard library.

• The model has been wrapped tightly.

Page 18: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

An Example III

The initial conditions were calculated correctly.

Due to information hiding (protected variables), only those variables external to the wrapper models are visible.

Page 19: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

2D Simulation of 1D Models II

Prismatic joints need to accompany the masses in order to limit their degrees of freedom to one.

BondLib

MultiBondLib

Page 20: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Translation LogsW

rapp

ed 1

D m

ech

anic

al b

ond

grap

h m

odel

Wrapped 2D

mech

anical bon

d graph m

odel

Page 21: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Simulation Logs

Page 22: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Simulation Results

Page 23: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Efficiency Considerations• The following table compares the efficiency of the

simulation code obtained using the multi-body library contained as part of the standard Modelica library with that obtained using the 3D mechanics sub-library of the multi-bond graph library.

Page 24: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

BondLib

• Beside from the standard 1D bond graph elements, BondLib offers additionally wrapped sub-libraries for electrical analog circuits; for mechanical 1D translational and rotational motions; a heat transfer sub-library; and a small hydraulics sub-library.

• The electrical sub-library contains in addition a full implementation of Spice.

Page 25: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Multiple Modeling Interfaces in BondLib

Page 26: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Thermal Modeling in BondLib (Biosphere 2)

Page 27: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Spice Implementation in BondLib

Page 28: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

MultiBondLib• Beside from the standard 2D and 3D mechanical multi-bond

graph elements, MultiBondLib offers additionally wrapped sub-libraries for planar mechanical motions and for 3D mechanical motions including fully automated animation.

• These wrapped sub-libraries are equivalent in power and efficiency to the multi-body system library contained as part of the Modelica standard library.

• In addition, MultiBondLib offers separate sub-libraries for planar mechanics; the possibility to model elastic and inelastic impacts between 3D bodies; as well as the possibility of modeling gravitational pools, such as needed for the simulation of planetary systems. These features are not currently available in the Modelica standard library.

Page 29: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Multiple Interfaces in MultiBondLib

Page 30: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

ThermoBondLib

• The ThermoBondLib library was designed for modeling convective flows (simultaneous flows of mass, volume, and heat) using thermo-bond graphs.

• There are currently no wrapped thermo-bond graph sub-libraries available yet.

• In the future, such wrapped sub-libraries will be added to replicate features of the media and fluid sub-libraries of the Modelica standard library.

Page 31: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Graphical Modeling in ThermoBondLib

Page 32: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

4. Multiple Implementations

• We can never be absolutely sure that our libraries don’t contain errors, or that neither the model compiler nor the simulation engine contain bugs.

• To reduce the likelihood of such errors, it is useful to have multiple implementations available.

• By comparing the simulation results of the standard library with those of the three bond graph libraries, we can verify the correctness of the libraries.

• By comparing the simulation results of e.g. Dymola with those of OpenModelica, we can verify the correctness of the model compilers and simulation engines.

Page 33: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

5. Unit Checking

• It is now possible to declare correct measurement units in Modelica.

• This feature helps dramatically in debugging models of physical systems.

• Bond graph models are generic (multi-domain), and therefore cannot declare measurement units.

• For this reason, it must be possible to inherit measurement units downwards from the higher to the lower layers of the model architecture.

• It is important that OpenModelica support unit checking in order to be competitive.

Page 34: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

5. Derived Data Types• In newer versions of Modelica, it is possible to declare

derived data types, such as variables with a reduced range.

• It is important that OpenModelica verifies that such constraints aren’t being violated during the simulation.

Page 35: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

6. Assertions• In newer versions of Modelica, it is possible to declare

assertions, representing a generalization of the derived data types mentioned earlier.

• It is important that OpenModelica verifies that also these constraints aren’t being violated during the simulation.

Page 36: Start of Presentation © Prof. Dr. François E. Cellier 3 rd MODPROD Workshop – Keynote February 4, 2009 Technologies for Creating Easily Maintainable Component

February 4, 2009Start of Presentation© Prof. Dr. François E. Cellier

3rd MODPROD Workshop – Keynote

Conclusions• In this presentation, I have looked at a number of

features that can help create safer models:1. graphical modeling2. bond graph modeling3. model wrapping4. multiple implementations5. derived data types6. assertions

• Together they offer means for creating Modelica libraries that are safer to use and easier to maintain.