Software-Entwicklungswerkzeuge. Modelica Overview. Contents. 1. Modelica Introduction. 2. Modelica Users View. 3. Modelica Libraries
|
|
- Augustine Casey
- 1 years ago
- Views:
Transcription
1 Software-Entwicklungswerkzeuge Kapitel 41: Werkzeuge zur Simulation dynamischer Systeme Prof. Uwe Aßmann Softwaretechnologie TU Dresden Version 0.1, WS 09/10, 1/16/10 Modelica Overview by Martin Otter Abstract: This slide set gives an overview about the Modelica language, including users view, libraries and a sketch of the language elements. Copyright , Martin Otter. This material is provided "as is" without any warranty. It is licensed under the CC-BY-SA (Creative Commons Attribution-Sharealike 3.0 Unported) License, see next slide and Modelica is a registered trademark of the Modelica Association License This slide set is provided "as is" without any warranty. It is licensed under the CC-BY-SA (Creative Commons Attribution-Sharealike 3.0 Unported) License (= the license used by Wikipedia). Human-readable summary of the license text: You are free: to Share to copy, distribute and transmit the work, and to Remix to adapt the work Under the following conditions: Attribution You must attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work.) Share Alike If you alter, transform, or build upon this work, you may distribute the resulting work only under the same, similar or a compatible license. The legal license text and disclaimer is available from here: Contents 1. Modelica Introduction 2. Modelica Users View 3. Modelica Libraries 4. Modelica Language Elements Revisions: Martin Otter (DLR-RM and Chairman of Modelica Association): First version, based on material from courses given at Technical University of Munich Used in Course Software-Entwicklungswerkzeuge Prof. U. Aßmann, TU Dresden Slide 3 Slide 4
2 1. Modelica Introduction Goal of Modelica: Modeling the dynamic behavior of technical systems consisting of components from, e.g., mechanical, electrical, thermal, hydraulic, pneumatic, fluid, control and other domains in a convenient way. Models are described by differential, algebraic, and discrete equations. No description by partial differential equations, i.e., no FEM (finite element method) and no CFD (computational fluid dynamics), but using results of, e.g., FEM programs. Modelica is used in industry since year Example: detailed vehicle model Vehicle dynamics (3-dim. mechanics) Drive trains (1-dim. mechanics) Hydraulics Combustion Air Conditioning (Thermofluid systems) Electrical/electronic systems Electrical machines Hierarchical state machines courtesy Modelon AB courtesy: Modelon AB Control (Input/output blocks,...) Slide 5 Slide 6 Modelica Language und Simulation-Environments Commercial Modelica Simulation Environments (alphabetical list) Graphical editor for Modelica models Textual description on file (equations, "schematic", animation) Translation of Modelica models in C-Code, Simulation, and interactive scripting (plot, freq. resp.,...) Modelica simulation environment (free or commercial) Free Modelica language Modelica Simulationenvironment (free or commercial) CATIA Systems from Dassault Systèmes (based on Dymola kernel with PLM integration) Dymola from Dynasim AB, Sweden (Dynasim was acquired by Dassault Systèmes in 2006). LMS Imagine.Lab AMESim from LMS International MapleSim from MapleSoft, Canada. MathModelica from MathCore AB, Sweden. SimulationX from ITI GmbH, Dresden, Germany. Free Modelica Simulation Environments (alphabetical list) OpenModelica from Linköping University, Sweden (under development; subset of Modelica is available) SCICOS from INRIA, France (under development; subset of Modelica is available). An up-to-date list of Modelica tools is available from Slide 7 Slide 8
3 2. Modelica Users View Modelica Association Schematics Modelica is a free language and is developed by the (non-profit) Modelica Association since : First applications : Modelica : Modelica : Modelica 3.1 (actual) Develops also the largest, free library for multi-domain models (Modelica Standard Library) Connection Component/device Connector Each Icon represents a physical component. (electrical resistance, mechanical device, pump,...) 62nd Design Meeting in Lund, May 2009 (after release of Modelica 3.1) A connection line represents the actual physical 80 "individual" and 11 "organizational members" (interested in "active" individual members; Therefore requirement: participation at 2 Modelica Design Meetings in the last 12 months). coupling (wire, fluid flow, heat flow,...) A component consists of connected sub-components 6 International Modelica Conferences (Modelica'2008 with 250 participants) All infos under (Specification, simulation environments, free libraries, 300 papers,...) (= hierarchical structure) and/or is described by equations. By symbolic algorithms, the high level Modelica description is transformed into a set of explicit differential equations: Slide 9 Example: Industrial Robots (from Modelica.Mechanics.MultiBody.Examples.Systems.RobotR3.fullRobot) Slide 10 Example: Hardware-in-the-Loop Simulation of automatic gear boxes (different vehicle manufacturers) desired pressure Electronic Control Unit (Hardware) model Resistor extends OnePort; parameter Real R; equation v = R*i; end Resistor; 1000 non-trivial algebraic equations, 80 states. Faster as real-time on slow PC. Slide 11 (Simulation) + driver + engine + 1D vehicle dynamics Slide 12
4 3. Modelica Libraries Library Modelica is the Modelica Standard Library which is developed from the Modelica Association. It is freely available in source code and can be modified and used in commercial programs. Every months a new version is released. It is developed since Newest version from Jan. 2009: 780 generic models 550 functions 1450 packages (mostly media definitions) A new version 3.1 will be released in August Library Modelica: Electrical and Thermal Libraries Analog electric and electronic components, such as resistor, capacitor, transformers, diodes, transistors, transmission lines, switches, sources, sensors. Digital electrical components based on the VHDL standard, like basic logic blocks with 9-valued logic, delays, gates, sources, converters between 2-, 3-, 4-, and 9-valued logic. Electrical machines (uncontrolled asynchronous-, synchronous-, DC-machines) Simple thermo-fluid pipe flow, especially to model cooling of machines with air or water (pipes, pumps, valves, ambient, sensors, sources) and lumped heat transfer with heat capacitors, thermal conductors, convection, body radiation, sources and sensors. Slide 13 Slide 14 Library Modelica: Media and Mechanical Libraries Library Modelica: Control and Script Libraries Large media library with gases and mixtures between these gases. - table based media (h = h(t), etc.) - high precision model for water (IF97) - moist air. Continuous and discrete input/output blocks, e.g., PI, PID, transfer function, state space, filter, logical, non-linear, routing, table source blocks density as function of pressure and enthalpy for water 3-dim. mechanical systems consisting of joints, bodies, force and sensor elements. Joints can be driven by drive trains defined by 1-dim. mechanical system library. 1-dim. mechanical systems, e.g., drive trains, planetary gears, convenient definition of speed/torque dependent friction (clutches, brakes, bearings,..) A = [1,2,3; 3,4,5; 2,1,4]; b = {10,22,12}; x = Matrices.solve(A,b); Matrices.eigenValues(A); Hierarchical state machines with same modeling power as Statecharts. Modelica is used as synchronous action language, i.e. deterministic behavior is guaranteed (not the case for Statecharts) Logical blocks such as "and, or, edge, timer, ",... Functions on matrices, such as for solving linear systems, eigen and singular values etc., and functions operating on strings, streams, files, e.g., to copy and remove a file or sort a vector of strings. Slide 15 Slide 16
5 Library Modelica: Sublibraries that will be added in 3.1 More free libraries under Electro-magnetic devices with lumped magnetic networks. E.g. flux tubes, magnetic sources and sensors, magnetic materials. General library for fluid pipe flow for all media of Modelica.Media one and multiple substances one and multiple (homogenous) phases incompressible and compressible Slide 17 Slide 18 Quickly growing number of commercial libraries. Small selection: SmartElectricDrives (ATI, Austria) Controlled electrical machines with quasi-stationary and transient models, e.g., controllers (voltage/frequency, field-oriented, speed/position), power electronics (AD/DC, DC/AC, DC/DC converters, PWM), energy storages (batteries, supercaps, fuel cells), Modelica Language Elements Example: Definition of Capacitor Hydraulic/Pneumatic Libraries (Modelon AB, Sweden) Libraries to model pipe networks for oil and air. Contain all important standard components like pumps, valves, volumes, lines, sensors PowerTrain (DLR-RM, Germany) Library to model vehicle power trains and all type of planetary gearboxes. E.g. standard and planetary gears with losses, clutches with friction, flexible driveline models, automatic gearboxes, optional 3D effects (mounting on vehicle) Slide 19 Slide 20
6 Example: Hierarchical Modelica Model Many pre-defined connectors, e.g.: input/output signals textual representation model MotorDrive PI controller; Class name Ramp ramp; graphical representation Motor motor; Gearbox gear(ratio = 100); Inertia inertia(j = 10); Modifier SpeedSensor tacho; equation Instance name connect(controller.y, motor.i_ref); connect(motor.flange, gearbox.flange_a); connect(gearbox.flange_b, inertia.flange_a); connect(inertia.flange_b, tacho.flange); connect(tacho.w, controller.u_m); connect(ramp.y, controller.u_r); end MotorDrive; Connector electrical pins electrical plugs (multi-phase networks) VHDL digital input/output signals 3-dim. mechanical frame 1-dim. rotational mechanical flange 1-dim. translational mechanical flange 1-dim. heat transfer fluid port (for all media from Modelica.Media) signal bus Slide 21 Slide 22 Different types of variables in a connector definition Category Example Explanation input/output variable input Real u Connected variables are identical; block diagram connection restrictions potential variable Real v; Connected variables are identical flow variable flow Real i; Sum of the connected variables is zero stream variable stream Real h; Describes bi-directional flow of matter (more complicated definition) overdetermined variable set signal bus explandable connector Bus end Bus; Redundant set of variables with constraint equations, e.g., orientation matrix, dq0 transformation (more complicated def.) Content defined by signals connected to the connector. Other Language Elements Mathematical notation for matrices and arrays Arrays not only from numbers but also from models (e.g. arrays of resistors). Replaceable submodels, e.g., to change quickly between different versions of a transmission in a vehicle system model. Language elements to define conveniently discontinuous and variable structure systems, e.g., to model friction or ideal switches. Mathematical functions with varying number of input/output arguments. The procedural part of Modelica is used as scripting language. Convenient calling of C, Fortran, and Java functions within Modelica. Powerful library concept (Modelica tool has enough information to find model in the file system automatically, version handling, transformations between versions,...). Slide 23 Slide 24
Software-Entwicklungswerkzeuge
Software-Entwicklungswerkzeuge Kapitel 41: Werkzeuge zur Simulation dynamischer Systeme Prof. Uwe Aßmann Softwaretechnologie TU Dresden Version 0.1, WS 09/10, 1/16/10 Modelica Overview by Martin Otter
Modelica. Language, Libraries, Tools, and Conferences
odelica - Language, Libraries, Tools, and Conferences odelica Language, Libraries, Tools, and Conferences by artin Otter 1, Hilding Elmqvist 2 Deutsches Zentrum für Luft- und Raumfahrt e.. (DLR), Oberpfaffenhofen,
Rotational3D Efficient modelling of 3D effects in rotational mechanics
Rotational3D - Efficient Modelling of 3D Effects in Rotational Mechanics Rotational3D Efficient modelling of 3D effects in rotational mechanics Johan Andreasson Magnus Gäfvert Modelon AB Ideon Science
Physical Modelling with Simscape
Physical Modelling with Simscape Rick Hyde Control Electrical Embedded Software Mechanical 2015 The MathWorks, Inc. 1 Presentation overview Modelling physical systems Why model a physical system? Network
Scicos/Modelica for modeling and simulation
Scicos/Modelica for modeling and simulation Masoud Najafi, INRIA-Rocquencourt Zakia Benjelloun-Dabaghi, IFP Présentation à la journée LMCS, 17 avril 2008, EDF Outline Introduction to Scilab & Scicos Modeling
Simulation-based development of automotive control software with Modelica
Simulation-based development of automotive control software with Modelica Emmanuel Chrisofakis, Dr. Anton Rink, Daimler AG Dr. Andreas Junghanns, QTronic GmbH Christian Kehrer, ITI GmbH 8th International
MathWorks Technology Session at GE Physical System Modeling with Simulink / Simscape
SimPowerSystems SimMechanics SimHydraulics SimDriveline SimElectronics MathWorks Technology Session at GE Physical System Modeling with Simulink / Simscape Simscape MATLAB, Simulink September 13, 2012
MapleSim User's Guide
MapleSim User's Guide Copyright Maplesoft, a division of Waterloo Maple Inc. 2001-2009 MapleSim User's Guide Copyright Maplesoft, MapleSim, and Maple are all trademarks of Waterloo Maple Inc. Maplesoft,
Simulation of Piping 3D Designs Powered by Modelica
Xavier Rémond 1 Thierry Gengler 1 Christophe Chapuis 1 1 Dassault Systèmes, Vélizy Villacoublay, France, {Xavier.Remond, Thierry.Gengler, Christophe.Chapuis}@3ds.com Abstract Traditionally, piping systems
An Easy-to-use Generic Model Configurator for Models in Multiple Tool Formats
An Easy-to-use Generic Model Configurator for Models in Multiple Tool Formats Vadim Engelson 1, Peter Fritzson 1, Ulf Sellgren 2 1 Department of Computer and Information Science Linköping University SE-58183
Robust and computationally efficient dynamic simulation of ORC systems: the thermocycle Modelica library
Downloaded from orbit.dtu.dk on: Mar 11, 2018 Robust and computationally efficient dynamic simulation of ORC systems: the thermocycle Modelica library Quoilin, S.; Desideri, A.; Bell, I.; Wronski, Jorrit;
Simscape User s Guide. R2014a
Simscape User s Guide R2014a How to Contact MathWorks www.mathworks.com Web comp.soft-sys.matlab Newsgroup www.mathworks.com/contact_ts.html Technical Support suggest@mathworks.com bugs@mathworks.com doc@mathworks.com
Design optimisation of industrial robots using the Modelica multi-physics modeling language
Design optimisation of industrial robots using the Modelica multi-physics modeling language A. Kazi, G. Merk, M. Otter, H. Fan, (ArifKazi, GuentherMerk)@kuka-roboter.de (Martin.Otter, Hui.Fan)@dlr.de KUKA
Towards Unified System Modeling with the ModelicaML UML Profile
Towards Unified System Modeling with the ModelicaML UML Profile Adrian Pop, David Akhvlediani, Peter Fritzson Programming Environments Lab, Department of Computer and Information Science Linköping University,
System Level Cooling, Fatigue, and Durability. Co-Simulation. Stuart A. Walker, Ph.D.
System Level Cooling, Fatigue, and Durability Analysis via Multiphysics Co-Simulation Stuart A. Walker, Ph.D. swalker@altair.com Outline Motivation Presentation of process Presentation of tools Presentation
Modelica Environments and OpenModelica
Environments and Open 1 Peter Fritzson Dymola Dynasim (Dassault Systemes) Sweden First tool on the market Main focus on automotive industry www.dynasim.com 2 Peter Fritzson 1 Simulation X ITI Germany Mechatronic
Vom Konzept zum Modell physikalischer Systeme Smarter Modellieren mit Simscape
Vom Konzept zum Modell physikalischer Systeme Smarter Modellieren mit Simscape A B T P T + - 12V Up V- V+ Down Up Down M Maximilian Apfelbeck MathWorks München, 9.07.2014 2014 The MathWorks, Inc. 1 Key
Modeling, Simulation and Analysis of Integrated Building Energy and Control Systems. Michael Wetter. October 8, 2009
Modeling, Simulation and Analysis of Integrated Building Energy and Control Systems Michael Wetter Simulation Research Group Building Technologies Department Energy and Environmental Technologies Division
Electronic SD1, AS 8, ASR 14, ASR 20
Electronic SD1, AS 8, ASR 14, ASR 20 2 Electronic SD1, AS 8, ASR 14, ASR 20 Contents Page List of contents..................................................... 3 Function and characteristics.........................
FET 2018 FACT SHEET FIELD OF STUDY: MECHANICAL ENGINEERING. National Certificate: N1 Engineering Studies (Motor Mechanic)
National Certificate: N1 Engineering Studies DESCRIPTION During your studies in the motor mechanics field you will be taught how to adhere to workshop safety practice, and about the use of common tools
Advanced Modelica Tutorial Exercises
Advanced Modelica Tutorial Exercises Hilding Elmqvist, Dynasim Martin Otter, DLR Refine MultiBody/Engine Make Engine example model a reusable component 1. Manage parameters 2. Allow changing number of
ATV61HC31Y variable speed drive ATV61-310kW - 690V - without EMC filter
Product data sheet Characteristics ATV61HC31Y variable speed drive ATV61-310kW - 690V - without EMC filter Main Range of product Altivar 61 Product or component type Product specific application Component
Introducing the first PATENT PENDING solid state selfregulating
Introducing the first PATENT PENDING solid state selfregulating THERMOELECTRIC GENERATOR. Covered by 4 Patent applications. This novel thermoelectric TEG system will provide continuous power as long as
Introduction to C omputational F luid Dynamics. D. Murrin
Introduction to C omputational F luid Dynamics D. Murrin Computational fluid dynamics (CFD) is the science of predicting fluid flow, heat transfer, mass transfer, chemical reactions, and related phenomena
Comparison of Classic and Finned Piston Reciprocating Linear Air Compressor Using COMSOL Multiphysics
Comparison of Classic and Finned Piston Reciprocating Linear Air Compressor Using COMSOL Multiphysics M. Heidari*, P. Barrade, and A. Rufer LEI, École Polytechnique Fédérale de Lausanne, Lausanne, Switzerland
A Modelica Library for Scalable Modelling of Aircraft Environmental Control Systems
A Modelica Library for Scalable Modelling of Aircraft Environmental Control Systems Philip Jordan Gerhard Schmitz Hamburg University of Technology, Institute of Thermo-Fluid Dynamics Denickestr. 7, 275
ATV310HU30N4E variable speed drive ATV310-3 kw - 4 hp V - 3 phase
Characteristics variable speed drive ATV310-3 kw - 4 hp - 380...460 V - 3 phase Complementary Product destination Main Range of product Altivar Easy 310 Product or component type Product specific application
Hardware-in-the-Loop and Real-Time Testing Techniques
Hardware-in-the-Loop and Real-Time Testing Techniques Fanie Coetzer Application Engineer The Challenge of Complexity BMW 7 Series: 70 ECUs Lexus 460: 100 ECUs Embedded Control Systems Navigation Control
From versatile analysis methods to interactive simulation with a motion platform based on SimulationX and FMI
From versatile analysis methods to interactive simulation with a motion platform based on SimulationX and FMI SimulationX Tutorial, 8th Modelica Conference Dr. Ines Gubsch, IVMA, TUD Christian Schubert,
Digital electropneumatic Positioner for the integrated mounting on process control valves
Digital electropneumatic Positioner for the integrated mounting on process control valves Type 8696 can be combined with Digital smart positioner Automatic teach function Contact-free position sensor Compact
Automated Modelica Package Generation of Parameterized Multibody Systems in CATIA
Automated Modelica Package Generation of Parameterized Multibody Systems in CATIA Daniel Baumgartner, Andreas Pfeiffer German Aerospace Center (DLR), Institute of System Dynamics and Control 82234 Wessling,
Model Based Systems Engineering Engine Control: from concept to validation. Jan Smolders Technical Account Manager
Model Based Systems Engineering Engine Control: from concept to validation Jan Smolders Technical Account Manager Table of Content Model Driven Development MiL SiL HiL Model adaptation to Real-Time Towards
Apprenticeship Curriculum Standard. Level 3. Trade Code: 447A
Apprenticeship Curriculum Standard Instrumentation and Control Technician Level 3 Trade Code: 447A Development Date: 2008 Please Note: Apprenticeship Training and Curriculum Standards were developed by
Thermal DC-DC Control System TEC Series
Thermal DC-DC Control System TEC 54100 Series Thermal DC-DC Control System TEC 54100 Series Bidirectional driving with 150W (24V 8A), 300W (24V 13A), or 800W (40V 20A) output Filtered PWM output with >
Mathieu Dutré - Application Specialist MBSE. Analysis and optimization of physical models for HIL simulation
Mathieu Dutré - Application Specialist MBSE Analysis and optimization of physical models for HIL simulation Smarter decisions, better products. Industry drivers for HIL simulation Model Driven Virtual
Power and Thermal Models. for RAMP2
Power and Thermal Models for 2 Jose Renau Department of Computer Engineering, University of California Santa Cruz http://masc.cse.ucsc.edu Motivation Performance not the only first order design parameter
ANALYSIS AND COMPARISON OF A HYDRAULIC AND PNEUMATIC SYSTEM USING THE DYMOLA SOFTWARE
ANALYSIS AND COMPARISON OF A HYDRAULIC AND PNEUMATIC SYSTEM USING THE DYMOLA SOFTWARE Ângela Cunha 1, João Veiga 2, Luís F. Silva 3, Eurico Seabra 4 1,2,3,4 Department of Mechanical Engineering, University
Application. Automation Studio is now compatible with Windows 8.
March 2013 Application Automation Studio is now compatible with Windows 8. 2 Quick Access to Translations A new Translation Manager quick access button was added to the toolbar. It is also possible to
2008 International ANSYS Conference Strongly Coupled FSI Simulation Moving Compressible Pressure Pulse through a Tube
2008 International ANSYS Conference Strongly Coupled FSI Simulation Moving Compressible Pressure Pulse through a Tube Daniel L. Cler, US Army RDECOM/ ARDEC/ WSEC/ Benet Labs 1 Overview Background Problem
Experiment 6 SIMULINK
Experiment 6 SIMULINK Simulink Introduction to simulink SIMULINK is an interactive environment for modeling, analyzing, and simulating a wide variety of dynamic systems. SIMULINK provides a graphical user
TOX SoftWare Facts und Features
TOX SoftWare Facts und Features TOX SoftWare is a new, interactive Software Suite with completely integrated controls and monitoring functions specifically designed for press applications. The user will
LM903 Fluid Level Detector
LM903 Fluid Level Detector General Description The LM903 uses the thermal-resistive probe technique to measure the level of nonflammable fluids A low fluid level is indicated by a warning lamp operating
Pridgen Vermeer Robotics Xmega128 Manual
Features: 12x PWM signals with 5V supply 8x A/D Inputs with 3.3V supply 2x RS 232 Terminals 1x SPI Interface 4x 8-bit Digital IO ports 3.3V Power Bus LCD Header (4-bit mode) Smart Power Connecter Power
Modeling Structural - Dynamics Systems in MODELICA/Dymola, MODELICA/Mosilab and AnyLogic
Modeling Structural - Dynamics Systems in MODELICA/Dymola, MODELICA/Mosilab and AnyLogic Günther Zauner 1,2, Daniel Leitner 3, Felix Breitenecker 1 1 Vienna University of Technology, Wiedner Hauptstr.
Abaqus Technology Brief. Two-Pass Rolling Simulation
Abaqus Technology Brief Two-Pass Rolling Simulation TB-03-TPRS-1 Revised: April 2007. Summary Hot rolling is a basic metal forming technique that is used to transform preformed shapes into final products
Mixed Domain Modeling in Modelica
Mixed Domain Modeling in Modelica C. Clauss 1, H. Elmqvist 3, S. E. Mattsson 3, M. Otter 2, P. Schwarz 1 1 Fraunhofer Institute for Integrated Circuits, Design Automation Department, EAS, Dresden, Germany
ATV12H018M2 variable speed drive ATV kW hp V - 1ph
Characteristics variable speed drive ATV12-0.18kW - 0.25hp - 200..240V - 1ph Complementary Main Range of product Altivar 12 Product or component type Product destination Product specific application Assembly
Table of Contents 1. Overview Installation...6
(2003-01-31) Table of Contents 1. Overview...1 1.1. Introduction... 1 1.2. Product Description... 1 1.2.1. Mechanical Actuator Assembly with M2CP Electrical Enclosure... 1 1.2.2. Variable Frequency Controller
PART 1: GENERAL PART 2: PRODUCT. Effective: 12/29/10 Page 1 of 6 FECA-TE-104D
Specification Number: 23 09 33 Product Name: FRENIC-Eco AC Drives for Variable Torque Fan & Pump Applications (1-125Hp at 208/230V and 1-900Hp at 460V) PART 1: GENERAL 1.01 SUMMARY A. This specification
USE OF ADAMS IN DYNAMIC SIMULATION OF LANDING GEAR RETRACTION AND EXTENSION
USE OF ADAMS IN DYNAMIC SIMULATION OF LANDING GEAR RETRACTION AND EXTENSION Author : O. NOEL Messier-Dowty SA (Velizy, France) 1. ABSTRACT This paper presents the method in use at Messier-Dowty SA during
Electronic Control Unit RC
Industrial Hydraulics Electric Drives and Controls Linear Motion and Assembly Technologies Pneumatics Service Automation Mobile Hydraulics Electronic Control Unit RC RE 900/.0 /6 Replaces: 09.0 Series
ECS servo system MCS servo motors
ECS servo system MCS servo motors for multi-axis applications Lenze Global Drive dynamic, powerful, compact ECS, MCS dynamic, powerful, compact The ECS servo system Servo drives with a high overload capacity
Programming in MATLAB Part 2
Programming in MATLAB Part 2 A computer program is a sequence of computer commands. In a simple program the commands are executed one after the other in the order they are typed. MATLAB provides several
Tomas Skoglund Tetra Pak Processing Systems, Sweden: Simulation of Liquid Food Process in Modelica pp
Proceedings of the 3 rd International Modelica Conference, Linköping, November 3-4, 2003, Peter Fritzson (editor) Tomas Skoglund Tetra Pak Processing Systems, Sweden: Simulation of Liquid Food Process
L P Linn-Pumpen GmbH. Electric-gear-pumps series FKM
Electric-gear-pumps series FKM Construction Self-priming electric-gear-pumps, bellhousing with foot-flange, pump-casing in cast iron. Gear-pumps series FKM with motor-power up to 1,5. Suction- and -ports
Virtual Temperature Cycle Test (TCT) for validation of indirect Charge Air Coolers and Exhaust Gas Recirculation Coolers
Virtual Temperature Cycle Test (TCT) for validation of indirect Charge Air Coolers and Exhaust Gas Recirculation Coolers STAR Global Conference 2014 Vienna, March 17-19 G. Apostolopoulos, R. Stauch, C.
Maintenance & Reliability elearning Training Curriculum
Electrical MAINTENANCE AC/DC Theory AC/DC Theory: Current AC/DC Theory: Voltage AC/DC Theory: Resistance AC/DC Theory: Ohm's Law AC/DC Theory: Magnetism AC/DC Theory: Electrical Measurements AC/DC Theory:
The SF-586b Insertion Flow Meter For Compressed Air, Gases And Exhaust Air (up to 400 C) In Pipe Diameters From 25mm to 5000mm
The SF-586b Insertion Flow Meter For Compressed Air, Gases And Exhaust Air (up to 400 C) In Pipe Diameters From 25mm to 5000mm P in mw v in m/s page 1 of 12 The SF-586b Insertion Thermal Mass Flow Meter,
ATV32HU30N4 variable speed drive ATV32-3 kw V - 3 phase
Product datasheet Characteristics ATV32HU30N4 variable speed drive ATV32-3 kw - 400 V - 3 phase - with heat sink Complementary Line current Apparent power Prospective line Isc Nominal output current Maximum
Yosuke Ogata 1) Bruno Loyer 2) Antoine Viel 3)
20145255 433-20145255 New trends and methods for the co-simulation of strongly coupled systems using the Functional Mock-up Interface 2.0 Yosuke Ogata 1) Bruno Loyer 2) Antoine Viel 3) 1) LMS Japan, Arena
What is Mechatronics
Mechatronics What is Mechatronics What Is Mechatronics? Mechatronics is a methodology used for the optimal design of electromechanical products. Multi-disciplinary system design has employed a sequential
HIL. Hardware-in-the-loop system for Automotive ECU testing and validation
HIL Hardware-in-the-loop system for Automotive ECU testing and validation What we offer Custome made Hardware-in-the-loop systems for Automotive ECU testing and validation, based on National Instruments
Modeling of the wet end part of a paper mill with Dymola
Mathematics and Computers in Simulation 65 (2004) 31 38 Modeling of the wet end part of a paper mill with Dymola Gianantonio Bortolin a,, Stefan Borg b, Per Olof Gutman c a Optimization and Systems Theory,
EZ-24 EZ-24-HTB EZ-24-HTBS. Version May Publication PR-1100
FAMILY EZ-24 EZ-24-HTB EZ-24-HTBS Version 11.7 May 2017 Publication PR-1100 Module firmware and functionality is protected by U.S. and international patents. For complete patent information visit www.pulseroller.com/patents
Importing Models from Physical Modeling. Tools Using the FMI Standard
Importing Models from Physical Modeling Tools Using the FMI Standard Overview The objective of this tutorial is to demonstrate the workflow for the integration of FMUs in DYNA4. The following use case
Real-Time Simulation of Simscape Models
2010 The MathWorks, Inc. Real-Time Simulation of Simscape Models Vehicle Dynamics Motor Planetary Gear Electric Motor Electric Generator DC-DC Converter Battery Controller Hybrid Electric Vehicle Wit ursilo
Control Head for the integrated mounting on process valves
Control Head for the integrated mounting on process valves Type 8695 can be combined with Compact stainless steel design Integrated analog valve position registration (Teach function) Coloured illuminated
Functional Mockup Interface for Model Exchange and Co-Simulation
Functional Mockup Interface for Model Exchange and Co-Simulation Torsten Blochwitz (ITI Dresden, FMI MAP Project Leader) Members of the FMI Modelica Association Project Motivation Problems / Needs Component
Digital electropneumatic Positioner for the integrated mounting on process control valves
Digital electropneumatic Positioner for the integrated mounting on process s Type 8694 can be combined with Digital smart positioner Automatic teach function Contact-free position sensor Compact stainless
CH1. Figure 1: M3 LOG Advanced
TECHNICAL DOCUMENTATION 03/09/2003 GAUGE Notes: M3 LOG Advanced technical documentation, dimensions and pinout. Ver 1.05 M3 LOG Advanced Internal lateral accelerometer CH1 Beacon Speed COM Power CH2 CH3
EMCP 4.4 Simulator Manual. Author: Lucas Tolbert CIC Engineering 345 Center Street East Peoria, IL
EMCP 4.4 Simulator Manual Author: Lucas Tolbert CIC Engineering 345 Center Street East Peoria, IL Date of Origin: 11/23/2010 Overview This document will detail the features and operation of the EMCP 4.4
Temperature Analysis of Intel Server by using CFD and Experimentation
Temperature Analysis of Intel Server by using CFD and Experimentation Chetan A Gawande 1, Prof. S.M. Nakate 2, Prasad Chavan 3 ¹Dept. of Mechanical engineering, MIT Pune, Pune University, pune India ²Dept.
Using Sonnet in a Cadence Virtuoso Design Flow
Using Sonnet in a Cadence Virtuoso Design Flow Purpose of this document: This document describes the Sonnet plug-in integration for the Cadence Virtuoso design flow, for silicon accurate EM modelling of
Modern techniques bring system-level modeling to the automation industry
Modern techniques bring system-level modeling to the automation industry Philipp Wallner, Global Technology Manager, Bernecker + Rainer Industrie and Johannes Friebe, MapleSim Europe Director, Maplesoft
09/05/2014. Engaging electronics for the new D&T curriculum. Geoff Hampson Managing Director of Kitronik. Presentation overview
Presentation overview Engaging electronics for the new D&T curriculum Geoff Hampson Managing Director of Kitronik What to include Free web resources Electronic project ideas Using programmable components
Hyamaster r SPS. Intelligent single and multiple pump control system with continuous speed control by frequency inverter, with PLC SIMATIC r S7
Type Series Booklet 1964.5/2-10 Hyamaster r SPS Intelligent single and multiple pump control system with continuous speed control by frequency inverter, with PLC SIMATIC r S7 Fields of Application Industry:
TU Berlin - Tsinghua University (Beijing) Module Catalogue
Double Degree Master Program in Mechanical Engineering (DDMME) TU Berlin - Tsinghua University (Beijing) Module Catalogue The DDMPME shall consist of the following categories: At least 18 credits advanced
Integrating Hall-Effect Magnetic Sensor Technology into Modern Household Appliances
Integrating Hall-Effect Magnetic Sensor Technology into Modern Household Appliances by: Monica Thomas, Michael Doogue Allegro MicroSystems, Inc., Worcester, MA. USA With the extensive variety of solutions
HZS Internal Controller Expansion
HZS 532-2 Internal Controller Expansion Date of creation: 19.05.2016 Version date: 19.05.2016 Article number: 05-895-532-2E Publisher: SIGMATEK GmbH & Co KG A-5112 Lamprechtshausen Tel.: 06274/4321 Fax:
The fi rst programmable robot kit for everyone
The fi rst programmable robot kit for everyone Fun with learning the programmable ab robotic kit. Includes building the robot platform and learning the programming min by Logo language with iconic and
Electropneumatics Basic Level Textbook TP 201
Electropneumatics Basic Level Textbook TP 201 Festo Didactic 091181 en Order No.: 091181 Edition: 07/2004 Author: F. Ebel, G. Prede, D. Scholz Graphics: Doris Schwarzenberger Layout: 19.07.04, Susanne
Experiment 8 SIMULINK
Experiment 8 SIMULINK Simulink Introduction to simulink SIMULINK is an interactive environment for modeling, analyzing, and simulating a wide variety of dynamic systems. SIMULINK provides a graphical user
Flow Measurement Applications
Flow Measurement Applications ONICON has been a leading provider of the flow and energy measurement solutions required by the HVAC industry for the past 30 years. As the need for accurate and reliable
Digital electropneumatic Positioner for the integrated mounting on process control valves
Digital electropneumatic Positioner for the integd mounting on process control valves Type 8692 can be combined with Compact stainless steel design Graphic display with backlight Easy start-up by automatic
USER MANUAL MBAR EX By JETI model s.r.o
USER MANUAL MBAR EX By JETI model s.r.o. 14. 11. 2014 CONTENTS 1. INTRODUCTION...3 2. MAIN FEATURES...3 3. PLACEMENT OF MBAR EX SENSOR...3 4. CONNECTING THE MBAR EX SENSOR...4 5. SETTING VIA JETIBOX...5
EMBEDDED SYSTEMS COURSE CURRICULUM
On a Mission to Transform Talent EMBEDDED SYSTEMS COURSE CURRICULUM Table of Contents Module 1: Basic Electronics and PCB Software Overview (Duration: 1 Week)...2 Module 2: Embedded C Programming (Duration:
Proceedings of the 3 rd International Modelica Conference, Linköping, November 3-4, 2003, Peter Fritzson (editor)
Proceedings of the 3 rd International Modelica Conference, Linköping, November 3-4, 2003, Peter Fritzson (editor) Peter Beater and Martin Otter Fachhochschule Südwestfalen in Soest; DLR, Germany: Multi-Domain
VALLIAMMAI ENGINERING COLLEGE DEPARTMENT OF MECHANICAL ENGINEERING SUBJECT CODE / NAME: ME6702 / MECHATRONICS YEAR/SEM: IV /VII UNIT 1: INTRODUCTION 1. List out the types of systems. BT-1 2. Describe the
Scalable, robust fluid flow and thermal simulation solution
Scalable, robust fluid flow and thermal simulation solution Fast, accurate, and flexible solution to test the fluid flow and thermal performance of your design Accurately predict behavior, optimize designs,
MACHINE THEORY Bachelor in Mechanical Engineering INTRODUCTION TO MACHINE DESIGN
MACHINE THEORY Bachelor in Mechanical Engineering INTRODUCTION TO MACHINE DESIGN Ignacio Valiente Blanco José Luis Pérez Díaz David Mauricio Alba Lucero Efrén Díez Jiménez Timm Lauri Berit Sanders Machine
Indra Works DS Tuning Procedure
Indra Works DS Tuning Procedure Rexroth Indramat drives can be tuned in-house or in the field. The following procedures are written for a technician tuning a drive, in-house. Where an asterisk (*) appears,
HEAVY DUTY EQUIPMENT TECHNICIAN
Canadian Council of Directors of Apprenticeship Harmonization Project HEAVY DUTY EQUIPMENT TECHNICIAN Nova Scotia Apprenticeship Agency Industry Consultation February 25, 2015 Overview - Current Heavy
Standard Circulating Pumps
Product review Range: 1 1 3Q [ m³/h] Hz - North America 1 3 1 1 1.x1 1.x x x3 x 1 1 Q [ US gpm] >Single-head pumps: Seal-less circulator with flanged connection. Two speed, manually adjustable to match
DLR FF-DR-ER, Technical Report TR R101-93, March
DLR FF-DR-ER, Technical Report TR R101-93, March 1993. 1 The ANDECS Simulation Environment DSSIM Martin Otter Institute for Robotics and System Dynamics German Aerospace Research Establishment (DLR), Oberpfaenhofen
Unrestricted Siemens AG 2016 Realize innovation.
Automation and Standardization of CFD Workflows Dr. Wolfram Kühnel, MAHLE Behr GmbH & Co. KG Unrestricted Siemens AG 2016 Realize innovation. Outline The company Globalization Standardization Automation
Recent Approaches of CAD / CAE Product Development. Tools, Innovations, Collaborative Engineering.
Recent Approaches of CAD / CAE Product Development. Tools, Innovations, Collaborative Engineering. Author: Dr.-Ing. Peter Binde Abstract: In this paper, the latest approaches in the field of CAD-CAE product
ATV320U06N4C variable speed drive ATV kW V - 3 phase - compact
Characteristics variable speed drive ATV320-0.55kW - 380...500V - 3 phase - compact Main range of product product or component type product specific application device short name format of the drive product
Modeling Guidelines and Tools Comparison for Mechatronics System Design in Automotive Applications - Application to a Motorized Hatchback -
EMM 2009, 7 th European Mechatronics Meeting: Mechatronics for Vehicles and Production Modeling Guidelines and Tools Comparison for Mechatronics System Design in Automotive Applications - Application to
Functional Mockup Interface (FMI) A General Standard for Model Exchange and Simulator Coupling
Functional Mockup Interface (FMI) A General Standard for Model Exchange and Simulator Coupling Adeel Asghar and Willi Braun Linköping University University of Applied Sciene Bielefeld 2017-02-07 FMI Motivation
ATV32HU30N4 variable speed drive ATV32-3 kw V - 3 phase - with heat sink
Characteristics variable speed drive ATV32-3 kw - 400 V - 3 phase - with heat sink Product availability : Stock - Normally stocked in distribution facility Price* : 937.00 USD Main Range of product Altivar