A Brief Introduction to Functional Safety

Größe: px
Ab Seite anzeigen:

Download "A Brief Introduction to Functional Safety"

Transkript

1 Who Am I? Name: Profession: Department: Field of Work: Background: Research: Uwe Creutzburg Professor at University of Applied Sciences, Stralsund, Germany Electrical Engineering and Computer Science Embedded Systems and Microprocessor Technology > 10 Years of employment in the automotive industry at AUDI, Continental, Volkswagen Research & Development for EPS, ABS, Infotainment, HW/SW, Tools & Processes Electric Power Steering (Volkswagen) Elche 1-1 Agenda Part I Part II A Brief Introduction to Functional Safety Elche 1-2 1

2 Agenda A Short Story About Model-Based Design Part I: Model Based Design Model Based Design currently is the most popular method used in the automotive industry for the development of new functionality in chassis and power-train applications. The idea is to use state-of-the-art techniques in order to - speed-up the development process of complex systems - enhance the quality of work products - and to safe money! Elche 1-3 Example: Magnetic Ball (or Levitation) F G Iron Core Coil Hollow Sphere Elche 1-4 2

3 Actuator - Active F M F G Iron Core Coil Current Hollow Sphere Elche 1-5 Magnetic Ball Physical Modeling Elche 1-6 3

4 Model Based Design Plant Model Elche 1-7 Model Based Design Plant Model Force Electromagnetic Force 1 0,1 0,01 0,05 0,15 0,25 0,35 0,45 Distance Elche 1-8 4

5 Sensor Basic Idea Plexiglass Tube LC-Oscillator: f 0 ~ 10kHz Elche 1-9 Sensor Ball is up Plexiglass Tube rel. Voltage µc Timer Output Matched Resistor R LC-Oscillator Voltage 1,0 0,8 0,5 0,3 0,0-0,3-0,5-0,8-1, Time/µs Elche

6 Sensor Ball is down rel. Voltage R LC-Oscillator Voltage 1,0 0,8 0,5 0,3 0,0-0,3-0,5-0,8-1, Time/µs Elche 1-11 Sensor - Lock-In Amplifier (analog equivalent) Elche

7 Actuator Power Electronics F M F G Elche 1-13 Agenda Discussion - What is the advantage of using a Lock-In-Amplifier - Why is it necessary to use a Reverse-Diode? - My approach is to measure the amplitude of the sinus. What else could be feasible? - Is the sensor linear with respect to the height? Elche

8 Model Based Design Closed Loop Input IF Controller IF Sensor Plant Elche 1-15 Model Based Design Plant Model (TMW) Elche

9 Model Based Design Plant Model (Derived) Magnetic Ball Boundaries Not brilliant, I know! Elche 1-17 Model Based Design Plant Model Force Electromagnetic Force 1 0,1 0,01 0,05 0,15 0,25 0,35 0,45 Distance Elche

10 Model Based Design Rapid Control Prototyping Sensor Interface Power Electronics Elche 1-19 Model Based Design Rapid Control Prototyping EMagnet_Power_GND EMagnet_Power_Plus -15V_out Analog_GND +15V_out PWM_GND PWM_Sig LIA_out EMagnet_Current LC_out LC_GND Supply_Neg Supply_GND Supply_Pos Elche

11 Model Based Design Development of Controller Elche 1-21 Model Based Design Online Adjustment of Controller Elche

12 Model Based Design Success!! Elche 1-23 Agenda Discussion - Everything is non-linear in this setup. Why can we use a simple PID-Controller that normally requires a linear plant? - How to find the Parameters for the PID-Controller? Elche

13 Program Sequence Chart Config Control ISR POR Init - Clock - ADC - Timer - IO - Interrupt X Sleep Mode Application - Get ADC - Call Controller - Set PWM X Sleep Mode Timer Event Restore State of µc Elche 1-25 Program Sequence Chart Config Control ISR POR Init - Clock - ADC - Timer - IO - Interrupt X Sleep Mode Application - Get ADC - Call Controller - Set PWM X Sleep Mode Timer Event Restore State of µc Elche

14 Model Based Design Code-Generation with TargetLink Elche 1-27 Model Based Design Code-Generation with TargetLink Elche

15 Sensor Lock-In Amplifier Equivalent rel. Voltage Synchronous Sampling! LC-Oscillator Voltage 1,0 0,8 0,5 0,3 0,0-0,3-0,5-0,8-1, Time/µs Elche 1-29 Sensor Generated Code Excerpt I (Interface) struct tag_alev alev = { 0 /* Reference: LSB: 2^0 OFF: 0 MIN/MAX: */, 0 /* Sensor: LSB: 2^0 OFF: 0 MIN/MAX: */, 0 /* Output: LSB: 2^0 OFF: 0 MIN/MAX: */, 1 /* */ /* Ki: LSB: 2^-12 OFF: 0 MIN/MAX: */, 51 /* 0.8 */ /* Kp: LSB: 2^-6 OFF: 0 MIN/MAX: */, 40 /* 10. */ /* Kd: LSB: 2^-2 OFF: 0 MIN/MAX: */, 2 /* 0.5 */ /* Ad: LSB: 2^-2 OFF: 0 MIN/MAX: */ }; Elche

16 Sensor Generated Code Excerpt I Void Controller(Void) { static Int16 X_SLEV1_xd = 0 /* LSB: 2^-2 OFF: 0 MIN/MAX: */; static Int16 X_SLEV1_xi = 0 /* LSB: 2^-7 OFF: 0 MIN/MAX: */; /* Sum: Controller/e */ SLEV1_e = (Int16) (((Int16) (((UInt16) alev.reference) - ((UInt16) alev.sensor))) << 6); /* Gain: Controller/Ki */ SLEV1_Ki = (Int16) ((((Int32) SLEV1_e) * ((Int32) alev.ki)) >> 11); /* Sum: Controller/s_i */ SLEV1_s_i = SLEV1_Ki + X_SLEV1_xi; if ((SLEV1_Ki >= 0) && (X_SLEV1_xi >= 0) && (SLEV1_s_i < 0)) { SLEV1_s_i = 32767; } else { if ((SLEV1_Ki < 0) && (X_SLEV1_xi < 0) && (SLEV1_s_i >= 0)) { SLEV1_s_i = ; } } *** Elche 1-31 Sensor Generated Code Excerpt II Void Controller(Void) { *** /* Gain: Controller/Kd */ Aux_S32 = ((Int32) SLEV1_e) * ((Int32) alev.kd); SLEV1_Kd = C I16SHRI32C6_LT16_SATb(Aux_S32, 6, , ); /* Sum: Controller/s_D */ SLEV1_s_D = (Int16) (((UInt16) X_SLEV1_xd) + ((UInt16) SLEV1_Kd)); /* Gain: Controller/Kp */ Aux_S32 = ((Int32) SLEV1_e) * ((Int32) alev.kp); /* Sum: Controller/s_PID # combined # Sum: Controller/s_PI */ SLEV1_s_PID = (Int16) (((Int16) (((Int16) (X_SLEV1_xi >> 7)) + ((Int16) (C I16SHRI32C6_LT16_SATb(Aux_S32, 6, , ) >> 6)))) + ((Int16) (SLEV1_s_D >> 2))); } /* TargetLink outport: Controller/output # combined # Saturation: Controller/sat_Out */ alev.output = C I16SATI16_SATb(SLEV1_s_PID, 511 /* 511. */, 0 /* 0. */); /* Unit delay: Controller/xi X_SLEV1_xi = SLEV1_s_i; /* Unit delay: Controller/xd X_SLEV1_xd = (Int16) (((UInt16) (Int16) ((((Int32) SLEV1_s_D) * ((Int32) alev.ad)) >> 2)) - ((UInt16) SLEV1_Kd)); Elche

17 Model Based Design Target-Board Actuator Sensor Elche 1-33 Agenda Discussion - The Model didn t make use of PWM signals. Why is that not necessary in this example? - What is the difference between floating-point and fixed-point implementation? - Why not using floating-point data types on the final target MSP430F2012? Elche

MODELLING AND CONTROLLING THE STEERING FORCE FEEDBACK USING SIMULINK AND xpc TARGET

MODELLING AND CONTROLLING THE STEERING FORCE FEEDBACK USING SIMULINK AND xpc TARGET MODELLING AND CONTROLLING THE STEERING FORCE FEEDBACK USING SIMULINK AND xpc TARGET Dipl.-Ing. M. Brünger-Koch, 05/06/09 Model-Based Design Conference 2005 1 Agenda 1. Introduction Company and institute

Mehr

Model-based Development of Hybrid-specific ECU Software for a Hybrid Vehicle with Compressed- Natural-Gas Engine

Model-based Development of Hybrid-specific ECU Software for a Hybrid Vehicle with Compressed- Natural-Gas Engine Model-based Development of Hybrid-specific ECU Software for a Hybrid Vehicle with Compressed- Natural-Gas Engine 5. Braunschweiger Symposium 20./21. Februar 2008 Dipl.-Ing. T. Mauk Dr. phil. nat. D. Kraft

Mehr

Customer-specific software for autonomous driving and driver assistance (ADAS)

Customer-specific software for autonomous driving and driver assistance (ADAS) This press release is approved for publication. Press Release Chemnitz, February 6 th, 2014 Customer-specific software for autonomous driving and driver assistance (ADAS) With the new product line Baselabs

Mehr

DATA ANALYSIS AND REPRESENTATION FOR SOFTWARE SYSTEMS

DATA ANALYSIS AND REPRESENTATION FOR SOFTWARE SYSTEMS DATA ANALYSIS AND REPRESENTATION FOR SOFTWARE SYSTEMS Master Seminar Empirical Software Engineering Anuradha Ganapathi Rathnachalam Institut für Informatik Software & Systems Engineering Agenda Introduction

Mehr

Field-Circuit Coupling for Mechatronic Systems: Some Trends and Techniques

Field-Circuit Coupling for Mechatronic Systems: Some Trends and Techniques Field-Circuit Coupling for Mechatronic Systems: Some Trends and Techniques Stefan Kurz Robert Bosch GmbH, Stuttgart Now with the University of the German Federal Armed Forces, Hamburg stefan.kurz@unibw-hamburg.de

Mehr

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part II) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1

Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1 Fundamentals of Electrical Engineering 1 Grundlagen der Elektrotechnik 1 Chapter: Operational Amplifiers / Operationsverstärker Michael E. Auer Source of figures: Alexander/Sadiku: Fundamentals of Electric

Mehr

a) Name and draw three typical input signals used in control technique.

a) Name and draw three typical input signals used in control technique. 12 minutes Page 1 LAST NAME FIRST NAME MATRIKEL-NO. Problem 1 (2 points each) a) Name and draw three typical input signals used in control technique. b) What is a weight function? c) Define the eigen value

Mehr

Electrical tests on Bosch unit injectors

Electrical tests on Bosch unit injectors Valid for Bosch unit injectors with order numbers 0 414 700 / 0 414 701 / 0 414 702 Parts Kit Magnet*: - F00H.N37.925 - F00H.N37.933 - F00H.N37.934 * For allocation to the 10-place Bosch order number,

Mehr

Attention: Give your answers to problem 1 and problem 2 directly below the questions in the exam question sheet. ,and C = [ ].

Attention: Give your answers to problem 1 and problem 2 directly below the questions in the exam question sheet. ,and C = [ ]. Page 1 LAST NAME FIRST NAME MATRIKEL-NO. Attention: Give your answers to problem 1 and problem 2 directly below the questions in the exam question sheet. Problem 1 (15 points) a) (1 point) A system description

Mehr

Datenblatt. Remote-I/O - u-remote UR20-4AO-UI or 4-wire connection; 16-bit resolution; 4 outputs

Datenblatt. Remote-I/O - u-remote UR20-4AO-UI or 4-wire connection; 16-bit resolution; 4 outputs 2- or 4-wire connection; 16-bit resolution; 4 outputs The analogue output module controls up to 4 analogue actuators with +/-10 V, +/-5 V, 0...10 V, 0...5 V, 2...10 V, 1...5 V, 0...20 ma or 4...20 ma with

Mehr

Übung 3: VHDL Darstellungen (Blockdiagramme)

Übung 3: VHDL Darstellungen (Blockdiagramme) Übung 3: VHDL Darstellungen (Blockdiagramme) Aufgabe 1 Multiplexer in VHDL. (a) Analysieren Sie den VHDL Code und zeichnen Sie den entsprechenden Schaltplan (mit Multiplexer). (b) Beschreiben Sie zwei

Mehr

Fachübersetzen - Ein Lehrbuch für Theorie und Praxis

Fachübersetzen - Ein Lehrbuch für Theorie und Praxis Fachübersetzen - Ein Lehrbuch für Theorie und Praxis Radegundis Stolze Click here if your download doesn"t start automatically Fachübersetzen - Ein Lehrbuch für Theorie und Praxis Radegundis Stolze Fachübersetzen

Mehr

Oracle Integration Cloud Service

Oracle Integration Cloud Service überraschend mehr Möglichkeiten! Oracle Integration Cloud Service Closed Loop Ordermanagement with SAP, SFDC and Oracle ICS Cornelia Spanner Consultant Alexander Däubler Managing Consultant OPITZ CONSULTING

Mehr

MULTI PHYSICS SIMULATION IN MANUFACTURING

MULTI PHYSICS SIMULATION IN MANUFACTURING MULTI PHYSICS SIMULATION IN MANUFACTURING A. Junk CADFEM GmbH Contents Manufacturing Multi Physics in Manufacturing Manufacturing example: Residual Stresses in an Induction Hardened Roll Set up Conclusions

Mehr

Product Lifecycle Manager

Product Lifecycle Manager Product Lifecycle Manager ATLAS9000 GmbH Landauer Str. - 1 D-68766 Hockenheim +49(0)6205 / 202730 Product Lifecycle Management ATLAS PLM is powerful, economical and based on standard technologies. Directory

Mehr

Electrical testing of Bosch common rail piezo injectors

Electrical testing of Bosch common rail piezo injectors Applies to generation CRI 3: Bosch 10-position order number 0 445 115 = CRI 3-16 (CRI 3.0) 1600 bar 0 445 116 = CRI 3-18 (CRI 3.2) 1800 bar 0 445 117 = CRI 3-20 (CRI 3.3) 2000 bar Tools required: Hybrid

Mehr

Research Collection. Digital estimation of continuous-time signals using factor graphs. Doctoral Thesis. ETH Library. Author(s): Bolliger, Lukas

Research Collection. Digital estimation of continuous-time signals using factor graphs. Doctoral Thesis. ETH Library. Author(s): Bolliger, Lukas Research Collection Doctoral Thesis Digital estimation of continuous-time signals using factor graphs Author(s): Bolliger, Lukas Publication Date: 2012 Permanent Link: https://doi.org/10.3929/ethz-a-007342807

Mehr

Supply Chain Management

Supply Chain Management Supply Chain Management Forecasting Methods Prof. Dr.-Ing. Burkhard Schmager Department of Industrial Engineering EAH Jena Sept 2016 SS 2016 Kapitel 2-1 Material Planning Approaches MRP - methods deterministical

Mehr

EXPOSÉ. Mercedes-Benz 220 Cabriolet A ID 1246

EXPOSÉ. Mercedes-Benz 220 Cabriolet A ID 1246 EXPOSÉ Mercedes-Benz 220 Cabriolet A ID 1246 BECHTEL MOTORCOMPANY GMBH GESCHÄFTSFÜHRER / MANAGING DIRECTOR TIM BECHTEL CONTENT PICTURES TECHNICAL DATA HISTORY RESTORATION DOCUMENTATION BECHTEL MOTORCOMPANY

Mehr

Challenges for the future between extern and intern evaluation

Challenges for the future between extern and intern evaluation Evaluation of schools in switzerland Challenges for the future between extern and intern evaluation Michael Frais Schulentwicklung in the Kanton Zürich between internal evaluation and external evaluation

Mehr

Controller Design by SIMPACK/SIMAT/MATLAB: Disturbance Compensationby a Steer-by-Wire System in a MAN Truck

Controller Design by SIMPACK/SIMAT/MATLAB: Disturbance Compensationby a Steer-by-Wire System in a MAN Truck Controller Design by SIMPACK/SIMAT/MATLAB: Disturbance Compensationby a Steer-by-Wire System in a MAN Truck Heinz Weinfurter, Technische Universität Graz, FTG Disturbance Compensation 10.11.2004 1 Contents

Mehr

Overview thermostat/ temperature controller

Overview thermostat/ temperature controller Thermostat TR-238 The Thermostat TR-238 is a electronic two-level controller for controlling of and in climate control units and vehicles. Voltage range (12V): Voltage range (24V): Control range: Hystereses:

Mehr

Materialien zu unseren Lehrwerken

Materialien zu unseren Lehrwerken Word order Word order is important in English. The word order for subjects, verbs and objects is normally fixed. The word order for adverbial and prepositional phrases is more flexible, but their position

Mehr

New ways of induction heating in the injection moulding process

New ways of induction heating in the injection moulding process New ways of induction heating in the injection moulding process Micro Technology innovation forum Villingen-Schwenningen February 29, 2012 Dipl.-Ing. M. Maier Prof. Dr.-Ing. W. Schinköthe Institut für

Mehr

An Introduction to Monetary Theory. Rudolf Peto

An Introduction to Monetary Theory. Rudolf Peto An Introduction to Monetary Theory Rudolf Peto 0 Copyright 2013 by Prof. Rudolf Peto, Bielefeld (Germany), www.peto-online.net 1 2 Preface This book is mainly a translation of the theoretical part of my

Mehr

Newest Generation of the BS2 Corrosion/Warning and Measurement System

Newest Generation of the BS2 Corrosion/Warning and Measurement System Newest Generation of the BS2 Corrosion/Warning and Measurement System BS2 System Description: BS2 CorroDec 2G is a cable and energyless system module range for detecting corrosion, humidity and prevailing

Mehr

2011 European HyperWorks Technology Conference

2011 European HyperWorks Technology Conference 2011 European HyperWorks Technology Conference Topology Optimization Methods applied to Automotive Transmission Housings 1 Agenda Introduction - Corporate Information - overview Topology Optimization for

Mehr

Industrial USB3.0 Miniature Camera with color and monochrome sensor

Industrial USB3.0 Miniature Camera with color and monochrome sensor Welcome to the presentation Industrial USB3.0 Miniature Camera with color and monochrome sensor & Data rates of modern image sensors S. 1/12 Vortrag_Spectronet_USB3.0_Datenverarbeitung_ENGLISCH_Vorlage_für_pdf_v1_MH20032014

Mehr

Tube Analyzer LogViewer 2.3

Tube Analyzer LogViewer 2.3 Tube Analyzer LogViewer 2.3 User Manual Stand: 25.9.2015 Seite 1 von 11 Name Company Date Designed by WKS 28.02.2013 1 st Checker 2 nd Checker Version history Version Author Changes Date 1.0 Created 19.06.2015

Mehr

Algorithms for graph visualization

Algorithms for graph visualization Algorithms for graph visualization Project - Orthogonal Grid Layout with Small Area W INTER SEMESTER 2013/2014 Martin No llenburg KIT Universita t des Landes Baden-Wu rttemberg und nationales Forschungszentrum

Mehr

creative Factory GmbH

creative Factory GmbH Micro compact car smart gmbh smart forfour series w454 Visualization Embeded into the design team of MCC Smart our team was responsible for Class-A surface modelling and for setup of the visible interior

Mehr

CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR

CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR (GERMAN EDITION) BY TIM ROHR READ ONLINE AND DOWNLOAD EBOOK : CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR PDF Click button to download this ebook READ ONLINE AND DOWNLOAD CNC ZUR

Mehr

The Development and Use of Industrial Robots the Educational/Work Science Perspective (part 1)

The Development and Use of Industrial Robots the Educational/Work Science Perspective (part 1) Prof. Dr. Martin Fischer Institut für Berufspädagogik und Allgemeine Pädagogik Internet: http://www.ibp.kit.edu The Development and Use of Industrial Robots the Educational/Work Science Perspective (part

Mehr

Cycling and (or?) Trams

Cycling and (or?) Trams Cycling and (or?) Trams Can we support both? Experiences from Berne, Switzerland Roland Pfeiffer, Departement for cycling traffic, City of Bern Seite 1 A few words about Bern Seite 2 A few words about

Mehr

EVANGELISCHES GESANGBUCH: AUSGABE FUR DIE EVANGELISCH-LUTHERISCHE LANDESKIRCHE SACHSEN. BLAU (GERMAN EDITION) FROM EVANGELISCHE VERLAGSAN

EVANGELISCHES GESANGBUCH: AUSGABE FUR DIE EVANGELISCH-LUTHERISCHE LANDESKIRCHE SACHSEN. BLAU (GERMAN EDITION) FROM EVANGELISCHE VERLAGSAN EVANGELISCHES GESANGBUCH: AUSGABE FUR DIE EVANGELISCH-LUTHERISCHE LANDESKIRCHE SACHSEN. BLAU (GERMAN EDITION) FROM EVANGELISCHE VERLAGSAN DOWNLOAD EBOOK : EVANGELISCHES GESANGBUCH: AUSGABE FUR DIE EVANGELISCH-LUTHERISCHE

Mehr

Schalten einer kapazitiven Last mit einem Transistor

Schalten einer kapazitiven Last mit einem Transistor . Schalten einer kapazitiven Last mit einem Transistor In allgemeinen technischen Anwendungen ist das Schalten einer kapazitiven Last eher von untergeordneter Bedeutung. In Rechnersystemen (Computernetzwerken)

Mehr

Quality Management is Ongoing Social Innovation Hans-Werner Franz

Quality Management is Ongoing Social Innovation Hans-Werner Franz Quality Management is Ongoing Social Innovation Hans-Werner Franz ICICI Conference, Prague 1-2 October 2009 What I am going to tell you social innovation the EFQM Excellence model the development of quality

Mehr

Seminar: Software Engineering verteilter Systeme

Seminar: Software Engineering verteilter Systeme Seminar: Software Engineering verteilter Systeme Hauptseminar im Sommersemester 2011 Programmierung verteilter Systeme Institut für Informatik Universität Augsburg 86135 Augsburg Tel.: +49 821 598-2118

Mehr

CALCULATING KPI QUANTITY-INDEPENDENT ROUTE TIME

CALCULATING KPI QUANTITY-INDEPENDENT ROUTE TIME CALCULATING KPI QUANTITY-INDEPENDENT ROUTE TIME Wenn Sie diesen Text lesen können, müssen Sie die Folie im Post-Menü mit der Funktion «Folie einfügen» erneut einfügen. Sonst kann die Fläche nicht eingefärbt

Mehr

Technische Universität Kaiserslautern Lehrstuhl für Virtuelle Produktentwicklung

Technische Universität Kaiserslautern Lehrstuhl für Virtuelle Produktentwicklung functions in SysML 2.0 La Jolla, 22.05.2014 12/10/2015 Technische Universität Kaiserslautern Lehrstuhl für Virtuelle Produktentwicklung Dipl. Wirtsch.-Ing. Christian Muggeo Dipl. Wirtsch.-Ing. Michael

Mehr

Flugzeug- Elektrik und Elektronik. Prof. Dr.- Ing. Günter Schmitz MSS. Mechatronic System Simulation. Seite 1

Flugzeug- Elektrik und Elektronik. Prof. Dr.- Ing. Günter Schmitz MSS. Mechatronic System Simulation. Seite 1 MSS Mechatronic System Simulation Seite 1 Today Introduction Content of the Module Examples Definitions Seite 2 Background Simulation is one of the major skills for nowadays development process (important

Mehr

Advanced Track and Tire Modeling using SIMPACK User Routines

Advanced Track and Tire Modeling using SIMPACK User Routines Advanced Track and Tire Modeling using SIMPACK User Routines Werner, Jens Neubeck Forschungsinstitut für Kraftfahrwesen und www.fkfs.de SIMPACK User Meeting 2003 1 Introduction Continuous Track Model Implemented

Mehr

ANNEX A - PROTOCOL IMPLEMENTATION CONFORMANCE STATEMENT (NORMATIVE)

ANNEX A - PROTOCOL IMPLEMENTATION CONFORMANCE STATEMENT (NORMATIVE) ANNEX A - PROTOCOL IMPLEMENTATION CONFORMANCE STATEMENT (NORMATIVE) BACNET STANDARDIZED DEVICE PROFILE (ANNEX K): LIST ALL BACNET INTEROPERABILITY BUILDING BLOCKS SUPPORTED (ANNEX K): SEGMENTATION CAPABILITY:

Mehr

Certificate of conformity Generating unit, NS-protection

Certificate of conformity Generating unit, NS-protection Applicant: Product: Certificate of conformity Generating unit, NS-protection Schneider Electric Solar Inverters USA, Inc. 250 South Vasco Road Livermore, California 94551 USA Photovoltaic Inverter with

Mehr

Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition)

Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition) Die Bedeutung neurowissenschaftlicher Erkenntnisse für die Werbung (German Edition) Lisa Johann Click here if your download doesn"t start automatically Download and Read Free Online Die Bedeutung neurowissenschaftlicher

Mehr

Anforderungen zur Entwicklung von E-CAD-Systemen

Anforderungen zur Entwicklung von E-CAD-Systemen Deutsche Kommission Elektrotechnik Elektronik Informationstechnik im DIN und VDE DKE/K113 Produktdatenmodelle, Informationsstrukturen, Dokumentation und graphische Symbole Oktober 2007 Anforderungen zur

Mehr

RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH

RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH RECHNUNGSWESEN. KOSTENBEWUßTE UND ERGEBNISORIENTIERTE BETRIEBSFüHRUNG. BY MARTIN GERMROTH DOWNLOAD EBOOK : RECHNUNGSWESEN. KOSTENBEWUßTE UND Click link bellow and free register to download ebook: RECHNUNGSWESEN.

Mehr

Hazards and measures against hazards by implementation of safe pneumatic circuits

Hazards and measures against hazards by implementation of safe pneumatic circuits Application of EN ISO 13849-1 in electro-pneumatic control systems Hazards and measures against hazards by implementation of safe pneumatic circuits These examples of switching circuits are offered free

Mehr

E/A-Bedieneinheit. I/O Control unit 658552 DE/GB 08/02

E/A-Bedieneinheit. I/O Control unit 658552 DE/GB 08/02 E/A-Bedieneinheit I/O Control unit 527429 658552 DE/GB 08/02 Best.-Nr.: 658552 Benennung: DATENBLATT Bezeichnung: D:LP-BED.EINH.-E/A-DE/GB Stand: 08/2002 Autoren: Christine Löffler Grafik: Doris Schwarzenberger

Mehr

Dynamic Hybrid Simulation

Dynamic Hybrid Simulation Dynamic Hybrid Simulation Comparison of different approaches in HEV-modeling GT-SUITE Conference 12. September 2012, Frankfurt/Main Institut für Verbrennungsmotoren und Kraftfahrwesen Universität Stuttgart

Mehr

Unternehmensweite IT Architekturen

Unternehmensweite IT Architekturen Unternehmensweite IT Architekturen Part 1: IT Systems Architecture, Roles and Responsibilities of IT Architects Part 2: Solution Architecture, based on a practical Case Study Part 3: SOA (Service Oriented

Mehr

KAN session on "Transformations" Transformative indicators and the transformation of work

KAN session on Transformations Transformative indicators and the transformation of work KAN session on "Transformations" Transformative indicators and the transformation of work 1. Transformations-what do we mean? 2. The root of the idea of the Great Transformation : Polany and beyond 3.

Mehr

Darstellung und Anwendung der Assessmentergebnisse

Darstellung und Anwendung der Assessmentergebnisse Process flow Remarks Role Documents, data, tool input, output Important: Involve as many PZU as possible PZO Start Use appropriate templates for the process documentation Define purpose and scope Define

Mehr

prorm Budget Planning promx GmbH Nordring Nuremberg

prorm Budget Planning promx GmbH Nordring Nuremberg prorm Budget Planning Budget Planning Business promx GmbH Nordring 100 909 Nuremberg E-Mail: support@promx.net Content WHAT IS THE prorm BUDGET PLANNING? prorm Budget Planning Overview THE ADVANTAGES OF

Mehr

Klausur "ISAS (Intelligente Sensor Aktor Systeme)" Fachnr.: 5952/6625/8723/84106 am

Klausur ISAS (Intelligente Sensor Aktor Systeme) Fachnr.: 5952/6625/8723/84106 am Flugzeug- Elektrik und Elektronik Prof. Dr. Ing. Günter Schmitz Fachhochschule Aachen Klausur "ISAS (Intelligente Sensor Aktor Systeme)" Fachnr.: 5952/6625/723/4106 am 20.09.2012 Name: Matr.Nr.: Thema,

Mehr

CL I IP20. 9MX056 MDU-PWR Starter Set/Extension Set. Mounting instructions. New Installation/Neuinstallation. 9MX056 MDU-PWR Starter Set

CL I IP20. 9MX056 MDU-PWR Starter Set/Extension Set. Mounting instructions. New Installation/Neuinstallation. 9MX056 MDU-PWR Starter Set 9MX0 MDU-PWR Starter Set/Extension Set Mounting instructions IP0 CL I a New Installation/Neuinstallation 9MX0 MDU-PWR Starter Set Page/Seite b Retrofit/Nachrüstung 9MX0 MDU-PWR Starter Set Electrical connection

Mehr

FEM Isoparametric Concept

FEM Isoparametric Concept FEM Isoparametric Concept home/lehre/vl-mhs--e/cover_sheet.tex. p./26 Table of contents. Interpolation Functions for the Finite Elements 2. Finite Element Types 3. Geometry 4. Interpolation Approach Function

Mehr

School of Business. Fachhochschule Stralsund University of Applied Sciences

School of Business. Fachhochschule Stralsund University of Applied Sciences School of Business Fachhochschule Stralsund University of Applied Sciences Prof. D. Patrick Moore 1 /31 Personal Introduction Prof. D. Patrick Moore 2 /31 What can you expect from the next 5 10 minutes?

Mehr

Multicriterial Design Decision Making regarding interdependent Objectives in DfX

Multicriterial Design Decision Making regarding interdependent Objectives in DfX Overview Multicriterial Design Decision Making regarding interdependent Objectives in DfX S. Bauer The Design Process Support of the Design Process with Design for X Visualization of Decision Problems

Mehr

Fachprojekt for Embedded System: Design and Implement Your Own Embedded Systems (2) LS 12, TU Dortmund

Fachprojekt for Embedded System: Design and Implement Your Own Embedded Systems (2) LS 12, TU Dortmund Fachprojekt for Embedded System: Design and Implement Your Own Embedded Systems (2) Junjie Shi Niklas Ueter LS 12, TU Dortmund 09,April,2018 Junjie Shi, Niklas Ueter (LS 12, TU Dortmund) 1 / 1 Inhalt 1

Mehr

Exercise (Part XI) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part XI) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part XI) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

Weather forecast in Accra

Weather forecast in Accra Weather forecast in Accra Thursday Friday Saturday Sunday 30 C 31 C 29 C 28 C f = 9 5 c + 32 Temperature in Fahrenheit Temperature in Celsius 2 Converting Celsius to Fahrenheit f = 9 5 c + 32 tempc = 21

Mehr

DAS ZUFRIEDENE GEHIRN: FREI VON DEPRESSIONEN, TRAUMATA, ADHS, SUCHT UND ANGST. MIT DER BRAIN-STATE-TECHNOLOGIE DAS LEBEN AUSBALANCIEREN (GE

DAS ZUFRIEDENE GEHIRN: FREI VON DEPRESSIONEN, TRAUMATA, ADHS, SUCHT UND ANGST. MIT DER BRAIN-STATE-TECHNOLOGIE DAS LEBEN AUSBALANCIEREN (GE DAS ZUFRIEDENE GEHIRN: FREI VON DEPRESSIONEN, TRAUMATA, ADHS, SUCHT UND ANGST. MIT DER BRAIN-STATE-TECHNOLOGIE DAS LEBEN AUSBALANCIEREN (GE READ ONLINE AND DOWNLOAD EBOOK : DAS ZUFRIEDENE GEHIRN: FREI

Mehr

Exercise (Part VIII) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part VIII) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part VIII) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises.

Mehr

EXPOSÉ. Mercedes-Benz 220 Cabriolet A ID 1293

EXPOSÉ. Mercedes-Benz 220 Cabriolet A ID 1293 EXPOSÉ Mercedes-Benz 220 Cabriolet A ID 1293 BECHTEL MOTOR COMPANY GMBH GESCHÄFTSFÜHRER / MANAGING DIRECTOR TIM BECHTEL CONTENT PICTURES TECHNICAL DATA HISTORY RESTORATION DOCUMENTATION BECHTEL MOTOR COMPANY

Mehr

Security for Safety in der Industrieautomation Konzepte und Lösungsansätze des IEC 62443

Security for Safety in der Industrieautomation Konzepte und Lösungsansätze des IEC 62443 Security for Safety in der Industrieautomation Konzepte und Lösungsansätze des IEC 62443 Roadshow INDUSTRIAL IT SECURITY Dr. Thomas Störtkuhl 18. Juni 2013 Folie 1 Agenda Einführung: Standard IEC 62443

Mehr

Komponenten / Components

Komponenten / Components S SENSOR ELECTRONIC UNIT IHT 1202-4-100 CSC 500 100205 Sensorgerät für die kapazitive Abstandsmessung. Erzeugt das Abstandssignal und setzt es in ein Differenzialsignal für die Weiterverarbeitung in der

Mehr

R&R. Ges. für Rationalisierung und Rechentechnik mbh. R&R RR-P-508 / ST106-EX1 motor-control unit

R&R. Ges. für Rationalisierung und Rechentechnik mbh. R&R RR-P-508 / ST106-EX1 motor-control unit R&R R&R RR-P-08 / ST06-EX motor-control unit housing wxhxd weight application power supply aluminum anodized approx. 6 x 8 x 8 mm housing similar to ST0 drawing DNR967 approx. 80 g motor desk control unit

Mehr

Pilot Project Biogas-powered Micro-gas-turbine

Pilot Project Biogas-powered Micro-gas-turbine 1/18 Pilot Project Biogas-powered Micro-gas-turbine Supported by the Hessischen Ministerium für Wirtschaft, Verkehr und Landesentwicklung Speaker Details 2/18 Jan Müller Works at Institute of Solar Energy

Mehr

Presentation of a diagnostic tool for hybrid and module testing

Presentation of a diagnostic tool for hybrid and module testing Presentation of a diagnostic tool for hybrid and module testing RWTH Aachen III. Physikalisches Institut B M.Axer, F.Beißel, C.Camps, V.Commichau, G.Flügge, K.Hangarter, J.Mnich, P.Schorn, R.Schulte, W.

Mehr

Ressourcenmanagement in Netzwerken SS06 Vorl. 12,

Ressourcenmanagement in Netzwerken SS06 Vorl. 12, Ressourcenmanagement in Netzwerken SS06 Vorl. 12, 30.6.06 Friedhelm Meyer auf der Heide Name hinzufügen 1 Prüfungstermine Dienstag, 18.7. Montag, 21. 8. und Freitag, 22.9. Bitte melden sie sich bis zum

Mehr

Rough copy for the art project >hardware/software< of the imbenge-dreamhouse artist Nele Ströbel.

Rough copy for the art project >hardware/software< of the imbenge-dreamhouse artist Nele Ströbel. Rough copy for the art project >hardware/software< of the imbenge-dreamhouse artist. Title >hardware/software< This art project reflects different aspects of work and its meaning for human kind in our

Mehr

Bedienungsanleitung / Manual für il-debug_i Interface für den Debugger il_debug

Bedienungsanleitung / Manual für il-debug_i Interface für den Debugger il_debug Bedienungsanleitung / Manual für il-debug_i Interface für den Debugger il_debug Ing.Büro Stefan Lehmann Fürstenbergstraße 8a D-77756 Hausach Tel. (07831) 452 Fax (07831) 96428 E-Mail SL@iL-online.de Internet

Mehr

ETHISCHES ARGUMENTIEREN IN DER SCHULE: GESELLSCHAFTLICHE, PSYCHOLOGISCHE UND PHILOSOPHISCHE GRUNDLAGEN UND DIDAKTISCHE ANSTZE (GERMAN

ETHISCHES ARGUMENTIEREN IN DER SCHULE: GESELLSCHAFTLICHE, PSYCHOLOGISCHE UND PHILOSOPHISCHE GRUNDLAGEN UND DIDAKTISCHE ANSTZE (GERMAN ETHISCHES ARGUMENTIEREN IN DER SCHULE: GESELLSCHAFTLICHE, PSYCHOLOGISCHE UND PHILOSOPHISCHE GRUNDLAGEN UND DIDAKTISCHE ANSTZE (GERMAN READ ONLINE AND DOWNLOAD EBOOK : ETHISCHES ARGUMENTIEREN IN DER SCHULE:

Mehr

Accelerating Information Technology Innovation

Accelerating Information Technology Innovation Accelerating Information Technology Innovation http://aiti.mit.edu Ghana Summer 2011 Lecture 05 Functions Weather forecast in Accra Thursday Friday Saturday Sunday 30 C 31 C 29 C 28 C f = 9 5 c + 32 Temperature

Mehr

H o c h s c h u l e D e g g e n d o r f H o c h s c h u l e f ü r a n g e w a n d t e W i s s e n s c h a f t e n

H o c h s c h u l e D e g g e n d o r f H o c h s c h u l e f ü r a n g e w a n d t e W i s s e n s c h a f t e n Time Aware Shaper Christian Boiger christian.boiger@hdu-deggendorf.de IEEE 802 Plenary September 2012 Santa Cruz, California D E G G E N D O R F U N I V E R S I T Y O F A P P L I E D S C I E N C E S Time

Mehr

Increased risk for flashback in case of dynamic operation of gas turbines

Increased risk for flashback in case of dynamic operation of gas turbines Wir schaffen Wissen heute für morgen Increased risk for flashback in case of dynamic operation of gas turbines Yu-Chun Lin 28. August 2013 1 Introduction Pre-combustion CO 2 capture H 2 -rich fuel mixtures

Mehr

Engineering the Factory of the Future Now.Next.Beyond. Heiko Schwindt VP Automation & Electrification Solutions, Bosch Rexroth

Engineering the Factory of the Future Now.Next.Beyond. Heiko Schwindt VP Automation & Electrification Solutions, Bosch Rexroth Engineering the Factory of the Future Now.Next.Beyond. Heiko Schwindt VP Automation & Electrification Solutions, Bosch Rexroth Connect on LinkedIn www.linkedin.com/in/heiko-schwindt-625039140/ 1 "The challenge

Mehr

Climate change and availability of water resources for Lima

Climate change and availability of water resources for Lima Climate change and availability of water resources for Lima András Bárdossy bardossy@iws.uni-stuttgart.de Lima Marzo 12. 2009 1 Engineers and the future Knowledge about Past Design for Future Lima Marzo

Mehr

Sport Northern Ireland. Talent Workshop Thursday 28th January 2010 Holiday Inn Express, Antrim

Sport Northern Ireland. Talent Workshop Thursday 28th January 2010 Holiday Inn Express, Antrim Sport Northern Ireland Talent Workshop Thursday 28th January 2010 Holiday Inn Express, Antrim Outcomes By the end of the day participants will be able to: Define and differentiate between the terms ability,

Mehr

Computational Models

Computational Models - University of Applied Sciences - Computational Models - CSCI 331 - Friedhelm Seutter Institut für Angewandte Informatik Part I Automata and Languages 0. Introduction, Alphabets, Strings, and Languages

Mehr

Certificate of conformity Generating unit, NS-protection

Certificate of conformity Generating unit, NS-protection Certificate of conformity Generating unit, NS-protection Applicant: Product: Schneider Electric Solar Inverters USA, Inc. 250 South Vasco Road Livermore, California 94551 USA Photovoltaic Inverter with

Mehr

INTERREG IIIa Project R&D - Ready for Research and Development Project results and ongoing activities

INTERREG IIIa Project R&D - Ready for Research and Development Project results and ongoing activities INTERREG IIIa Project R&D - Ready for Research and Development Project results and ongoing activities Györ, 5th December 2007 Key regions + perifary for surveys Background objectives CENTROPE needs a strategy

Mehr

Electrical testing of Bosch common rail solenoid valve (MV) injectors

Electrical testing of Bosch common rail solenoid valve (MV) injectors Applies to MV injector, generation: -CRI 1.0 / 2.0 / 2.1 / 2.2 -CRIN 1 / 2 / 3, with K oder AK plug Bosch 10-position order number Bosch-Bestellnummer CRI: 0 445 110 xxx Bosch-Bestellnummer CRIN: 0 445

Mehr

Electrical testing of Bosch common rail Injectors

Electrical testing of Bosch common rail Injectors Electrical testing of Bosch common rail Injectors Contents: 1. Adapter cable for Hybridtester FSA 050 (article number 0 684 010 050 / 1 687 023 571) 2. Electrical testing of Bosch common rail solenoid

Mehr

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number.

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number. Magic Figures Introduction: This lesson builds on ideas from Magic Squares. Students are introduced to a wider collection of Magic Figures and consider constraints on the Magic Number associated with such

Mehr

Serie B.121. B.121.V Bremse mit Lüfter brake with fan. B.121.R Bremse mit Radiator brake with radiator. B.121 Bremse brake. C.121 Kupplung clutch

Serie B.121. B.121.V Bremse mit Lüfter brake with fan. B.121.R Bremse mit Radiator brake with radiator. B.121 Bremse brake. C.121 Kupplung clutch Serie B.11 B.11 D1 Drei Gewindebohrungen zur Befestigung. ACHTUNG: Vor einsetzen der Schraube bitte Gewinde entfernen mit Bohrer ø, threaded holes for fastening ATTENTION: before inserting the screw remove

Mehr

Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition)

Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes-Benz Click here if your download doesn"t start automatically Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes-Benz

Mehr

Seminar: Software Engineering verteilter Systeme

Seminar: Software Engineering verteilter Systeme Seminar: Software Engineering verteilter Systeme Hauptseminar im WS 2010/2011 Programmierung verteilter Systeme Institut für Informatik Universität Augsburg 86135 Augsburg Tel.: +49 821 598-2118 Fax: +49

Mehr

EINBAUHINWEISE INSTALLATION INSTRUCTIONS

EINBAUHINWEISE INSTALLATION INSTRUCTIONS EINBAUHINWEISE INSTALLATION INSTRUCTIONS FÜR JEDEN ANSPRUCH DAS RICHTIGE FAHRWERK. KW automotive GmbH Aspachweg 14 74427 Fichtenberg Telefon: +49 7971 9630-0 Telefax: +49 7971 9630-191 www.kwsuspensions.de

Mehr

Radio Frequency Systems

Radio Frequency Systems Radio Frequency Systems by Manfred Thumm and Werner Wiesbeck Forschungszentrum Karlsruhe in der Helmholtz - Gemeinschaft Universität Karlsruhe (TH) Research University founded 1825 Receiver Forschungszentrum

Mehr

Stromzwischenkreisumrichter Current Source Inverter (CSI)

Stromzwischenkreisumrichter Current Source Inverter (CSI) Lehrveranstaltung Umwandlung elektrischer Energie mit Leistungselektronik Stromzwischenkreisumrichter Current Source Inverter (CSI) Prof. Dr. Ing. Ralph Kennel (ralph.kennel@tum.de) Arcisstraße 21 80333

Mehr

Sustainability Balanced Scorecard as a Framework for Eco-Efficiency Analysis

Sustainability Balanced Scorecard as a Framework for Eco-Efficiency Analysis Sustainability Balanced Scorecard as a Framework for Eco-Efficiency Analysis Andreas Möller amoeller@uni-lueneburg.de umweltinformatik.uni-lueneburg.de Stefan Schaltegger schaltegger@uni-lueneburgde www.uni-lueneburg.de/csm

Mehr

Possible Contributions to Subtask B Quality Procedure

Possible Contributions to Subtask B Quality Procedure Possible Contributions to Subtask B Quality Procedure aeteba - Energy Systems, Germany Elmar Sporer zafh.net Stuttgart, Germany Dr. Dirk Pietruschka 1/14 aeteba - Consortium of different companies - Turnkey

Mehr

Name: Klasse/Jahrgang: Standardisierte kompetenzorientierte schriftliche Reife- und Diplomprüfung HUM. 12. Jänner Englisch.

Name: Klasse/Jahrgang: Standardisierte kompetenzorientierte schriftliche Reife- und Diplomprüfung HUM. 12. Jänner Englisch. Name: Klasse/Jahrgang: Standardisierte kompetenzorientierte schriftliche Reife- und Diplomprüfung HUM 12. Jänner 2016 Englisch (B2) Schreiben Hinweise zum Beantworten der Fragen Sehr geehrte Kandidatin,

Mehr

How to create a Gift Certificate Wie man ein Gift Certificate (Gutschein) erstellt

How to create a Gift Certificate Wie man ein Gift Certificate (Gutschein) erstellt 1) Login www.lopoca.com Username, Password 2) Click My Finances Gift Certificates Summary: Overview of your Gift Certificates Übersicht Ihrer Gift Certificates Create new: Create new Gift Certificate Neues

Mehr

Walter Buchmayr Ges.m.b.H.

Walter Buchmayr Ges.m.b.H. Seite 1/10 Chapter Description Page 1 Advantages 3 2 Performance description 4 3 Settings 5 4 Options 6 5 Technical data 7 6 Pictures 8 http://members.aon.at/buchmayrgmbh e-mail: walter.buchmayr.gmbh@aon.at

Mehr

Support Technologies based on Bi-Modal Network Analysis. H. Ulrich Hoppe. Virtuelles Arbeiten und Lernen in projektartigen Netzwerken

Support Technologies based on Bi-Modal Network Analysis. H. Ulrich Hoppe. Virtuelles Arbeiten und Lernen in projektartigen Netzwerken Support Technologies based on Bi-Modal Network Analysis H. Agenda 1. Network analysis short introduction 2. Supporting the development of virtual organizations 3. Supporting the development of compentences

Mehr

LISA IT (Informatik) In Austria pupils must learn the following during their time at school: Schülerinnen und Schüler sollen wissen:

LISA IT (Informatik) In Austria pupils must learn the following during their time at school: Schülerinnen und Schüler sollen wissen: LISA IT (Informatik) In Austria pupils must learn the following during their time at school: Schülerinnen und Schüler sollen wissen: - A) Informationsmanagement und Lernorganisation für die eigene Lernarbeit

Mehr