Machine Design
  • Resources
  • Members
  • Directory
  • Webinars
  • WISE
  • CAD Models
  • Advertise
    • Search
  • 3D Printing & CAD
  • AUTOMATION & IIOT
  • Robotics
  • Motion Systems
  • Materials
  • Video
  • Data Sheets
  • Topics
    Industry Markets3D Printing & CADAutomation & IIoTFastening & JoiningMaterialsMechanical & Motion Systems Medical DesignRobotics
    Resources
    Machine Design ResourcesWISE (Workers in Science & Engineering)Company DirectorySearch Data SheetsContributeDigital Edition ArchivesCSIA Exchange
    Members
    ContentBenefitsSubscribe
    Advertise
    https://www.facebook.com/MachineDesignMagazine/
    https://www.linkedin.com/company/10998894
    https://twitter.com/MachineDesign
    https://www.youtube.com/channel/UCXKEiQ9dob20rIqTA7ONfJg
    Machinedesign 5923 12374eesystem 1 0
    1. 3D Printing & CAD
    2. FEA and Simulation

    System modeling: Review of open-source Modelica

    June 6, 2013
    System modeling is on the rise. Open-source tools now simulate mechanical, thermal, electrical, electronic, hydraulic, and control domains in one place.
    Laurent Bernardin

    Many designs involve multiple engineering domains. For example, hybrid vehicles balance engine performance with emissions limits; UAVs balance thermal limitations on their batteries with cooling-system energy consumption.

    Traditional design approaches and software fail to resolve such competing requirements. Nor do they address cost and regulatory constraints — mostly because they force engineers to follow a rigid series of sequential design steps, remain in segregated design teams, and use discrete documents and reference materials that don’t allow global model changes. In contrast, model-based system engineering (MBSE), or system modeling, optimizes even complex designs on the fly. This approach integrates relevant information in one big model to verify designs automatically.

    Traditional design work

    Machinedesign Com Sites Machinedesign com Files Uploads 2013 06 12374eesystem 1
    For their new Symbolic Control project, Toyota Motor Engineering

    Many engineering organizations don’t model new designs at all. Instead, they use trial and error and build multiple iterations of hardware prototypes. Sometimes, designs are based on previous versions or artificially narrow sets of parameters. Even when information about a design’s components and their interactions abound, designs may not use it to flesh out the concept. Efforts to predict whether a design will fail take place late in the game, after its basic format is decided.

    When modeling is used, it often takes the form of traditional signal-flow analysis. First, engineers manually derive differential equations that describe the system. Next, those equations are converted into a block diagram (consisting of adders, integrators, and so on) that specifies how the equations are to be solved. This is causal modeling — profiling designs through cause-effect and input-output relationships. Causal modeling has been around a long time and tools to execute causal modeling are mature. In addition, many engineers are familiar with this approach. Even so, the manual derivation of signal-flow equations is time consuming and error prone. The number of blocks required to implement the equations can grow quickly into the tens of thousands, making models hard to build, understand, and maintain.

    Even traditional design software limits flexibility, because most programs only model one engineering domain — just electrical parts, for example — causing problems when an engineer wants to use those submodels in a comprehensive model.

    System modeling

    System modeling allows integrated simulations of multiple component types in one place, to note physical interactions and design limitations early in product development. In aerospace and automotive, nearly 100% of engineering takes place through system modeling. Other industries rarely conduct design work through system modeling — though that’s changing.

    Machinedesign Com Sites Machinedesign com Files Uploads 2013 06 12374 Ee System 2
    Double spring-mass-damper: Causal model | Traditional software generates causal models — as this one for our example system — that reference the flow of system interactions. Acausal models omit such rigid constraints. Modelica can generate both causal and more versatile acausal models.

    Open-source software called Modelica is one standard for this breed of system-level and production-process development. Its core is a modeling language supported by a standard library of electrical, mechanical, thermal, and fluidic components. They adhere to Modelica Association directives, just as open-source VHDL-AMS (sharing many goals with Modelica) adheres to IEEE guidelines. This makes Modelica models and component libraries portable between software tools, so engineers aren’t stuck using only one vendor.

    The standard library consists of nearly 1,300 generic model components and 1,000 functions, and other free and commercial libraries abound. Component models seamlessly combine into system-level models at myriad levels of fidelity. Modelica code also describes library components themselves and lets engineers write new components. Code for existing parts can be inspected, copied, and modified.

    There are two ways to build designs in Modelica: Through a graphical diagram or by directly writing source code.

    Acausal models

    The common way of using Modelica is to graphically build a model in the software by selecting, connecting, and then configuring individual components from a library. Consider the assembly of a double spring-mass-damper system in a suspension model: Connect a step-input signal to a force driver, followed by two sets of sliding masses connected to spring-damper components. The last spring-damper connects to a fixed reference frame.

    Machinedesign Com Sites Machinedesign com Files Uploads 2013 06 12374 Ee System 3
    Double spring-mass-damper: Acausal model | Modelica’s acausal model encodes governing equations into each component. Consider the equations embedded into each of our system’s two sliding masses. Variables s(t), v(t), and a(t) represent displacement, velocity, and acceleration of the component and m denotes its mass. Variables f·a(t) and f·b(t) are the forces acting to the left and right of the mass, respectively. Though not always necessary, Maplesoft’s MapleSim allows extraction of such equations for analysis.
    Machinedesign Com Sites Machinedesign com Files Uploads 2013 06 12374 Ee Soft Rev 2
    Each component encodes dynamic equations describing its behavior. These equations omit assumptions about how the component is connected to its surroundings. They also omit assumptions about the direction of force on the mass ends. This acausal modeling contrasts with causal languages such as Simulink, in which flow directions must be explicitly modeled. Acausal subsystem models are reusable in different contexts. Their diagrams are also easier to understand and modify than those of causal models, because they more closely resemble the physical systems to be built.

    Diagrams: Equation placeholders

    Blackbox component models are models that are partially locked or in inaccessible code. They’re often from suppliers wanting to share a component model with a manufacturer without divulging all its inner workings, or of legacy products built by engineers that have retired. These models are often useless when key details are missing or it’s impossible to figure out what assumptions were made during the original design iteration.

    Machinedesign Com Sites Machinedesign com Files Uploads 2013 06 12374 Ee System 4
    Simulation results | Simulation output is data tables, plots, or three-dimensional visualizations.

    In contrast, Modelica tools can extract the equations from models of components and subsystems for advanced analysis. This extraction isn’t always necessary: The graphical diagram abstracts all underlying mathematics, so dissecting the equations isn’t necessary if an engineer only needs simulation results. In that case, the tool automatically generates the entire set of equations for the system diagram, typically in the form of hybrid differential algebraic equations. It does so by combining the equations from each component with equations derived from component connections.

    For example, assume we have a mechanical connection between one end of the sliding mass and a spring damper. Displacement of the connected extremities is identical, so their force interactions cancel each other. The software simplifies the equations describing the joint, and compiles and executes generated C code in a differential-equation solver to get simulation results.

    Machinedesign Com Sites Machinedesign com Files Uploads 2013 06 12374 Ee System 5
    This Modelica code underlies the system diagram for the double spring-mass-damper system. Models and libraries described in Modelica can be exchanged between engineering teams and organizations or between tools from different vendors.

    Symbolic simplification is crucial. It transforms the set of equations into a solvable set, reduces total equation size, and simplifies output simulation code while maintaining model fidelity. This code executes within Modelica or exports to other tools as Simulink S functions or FMU/FMI, a standard for model exchange.

    When an engineer needs full access to all of a model’s details, it’s easy to drill down to Modelica’s language level. Consider underlying Modelica code for our double-spring mass-damper system.

    Within the code describing this design are declarations such as Modelica.Blocks.Sources.Step, which refers to a Modelica Standard Library component, and Connect statements, which describe how components are linked. Typically, Modelica code includes annotations that specify how model diagrams and component sizes, locations, and connections display in graphical presentations.

    Edited by Elisabeth Eitel

    Continue Reading

    Stratus Offering Predictive Fault Tolerant Computing Platforms for Sustainable Operations

    Multiphysics Modeling of Electronic Components

    Sponsored Recommendations

    Smart Factory Solutions that Connect and Protect from Amphenol RF

    Nov. 28, 2023

    Stay Connected and In Control of Your Future Factories with Littelfuse

    Nov. 28, 2023

    Turn to NKK Switches for the Widest Range of Industrial-Savvy Electromechanical Switches

    Nov. 28, 2023

    Unlocking Operational Flexibility in Manufacturing with Industria IoT

    Nov. 28, 2023

    Voice your opinion!

    To join the conversation, and become an exclusive member of Machine Design, create an account today!

    I already have an account

    New

    EXAIR Introduces PEEK ½ NPT Super Air Nozzle

    Using Natural Language Understanding to Power Productivity

    Intelligent Assistant Platforms Improve Conversations with Industrial Robots

    Most Read

    Universal Robots Unveils UR30: Relief for Heavy Lifting

    The Cyber-physical Training Module

    Edge Computing & Gaining Value

    Sponsored

    TT Electronics and TTI: Setting the New Standard in Industrial Excellence

    Bourns Stifles Surges, Diminishes Downtime and Protects Parts

    Unlocking Operational Flexibility in Manufacturing with Industria IoT

    Machine Design
    https://www.facebook.com/MachineDesignMagazine/
    https://www.linkedin.com/company/10998894
    https://twitter.com/MachineDesign
    https://www.youtube.com/channel/UCXKEiQ9dob20rIqTA7ONfJg
    • About Us
    • Contact Us
    • Advertise
    • Do Not Sell or Share
    • Privacy & Cookie Policy
    • Terms of Service
    © 2023 Endeavor Business Media, LLC. All rights reserved.
    Endeavor Business Media Logo