Tutorials Tutorial 5 - TypeDesigner

Size: px
Start display at page:

Download "Tutorials Tutorial 5 - TypeDesigner"

Transcription

1 Tutorials Tutorial 5 - TypeDesigner Objective The software includes a helpful tool for creating, or extending element types - the TypeDesigner. In this tutorial we guide you step by step into the work with the TypeDesigner. Based on a nonlinear spring damper we explain the handling of the TypeDesigner. You can easily repeat this on your own computer. Many actions can be performed in several ways. In this introduction only one is usually demonstrated and used. It is assumed that you are familiar with the basic functionality of. Therefore, please refer to Tutorial 1: Getting Started for a general introduction on how to select elements from the libraries, how to connect them and enter parameters, how to run a simulation and how to open result windows. Using the TypeDesigner Creating new element types Adding components TypeDesigner - What Can It Be Used For? create and edit user-defined types add certain features to the built-in types group several elements together to one new type edit the model (= model type) Working with activity groups Description of the behavior Using Modelica Documentation of types Figure 1: TypeDesigner - page 'General' (for global types) The creation process of new types is very easy using the TypeDesinger. The TypeDesigner leads you through the individual steps towards the user-defined type. Example: Let us create a new type 'Nonlinear Spring Damper' with the following attributes: local type, that means the type is available only in this model

2 Page 2 of 11 selection of the behavior (Spring, Damper, Spring-Damper); the corresponding parameters are toggled depending on the user s selection the spring-damper is linear (constant stiffness and damping) or nonlinear (stiffness curve Fs=f(x) and damping curve Fd=g(dv)) parameters are visible/invisible depending on the behavior of the spring-damper Creating a New Type Figure 2: Model Explorer - Tab Types We start and open the tab Types in the Model Explorer. By clicking with right mouse button on the model name we can select 'New model'. In the result of this the TypeDesinger opens (see Figure 1). For navigation between the different pages you can use the buttons in the bottom of the window or select a page directly on the left hand side of the window. General On this page leave the environment and the name at their default settings. Go to the next page by clicking on the button 'Next'. Connectors Because the type should have two linear mechanical connectors we add these on the page 'Connectors'. Select the desired connector type and add it by using the add button in the control. Add connector Delete connector Move connector upwards in list Move connector downwards in list Figure 3: Connectors of the new type Components To add components to the type, on the page 'Component' select the components and add them in the same way as the connectors. The function of the buttons in the control is the same as at the connectors page. Then fill in the name, comment and additional information for each of the components. These components will be shown as the parameters and variables of the new type. You can hide components that are only used for internal computations. ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

3 Page 3 of 11 The following components are needed for the nonlinear Spring-Damper: Not specified entries remain as preset. Component Variable Inputs/Parameters This is the result variable of the type - the internal force of the Spring-Damper. For the physical quantity select the item 'Force' in the Domain 'Mechanics (Linear)'. Boolean This Boolean variable is used for switching between linear and nonlinear behavior. Enumeration For adding a component Enumeration to the spring-damper you have to create a new component. With this enumeration you can select the behavior of the spring-damper. It controls the visibility of the parameters and is also used for computation. Alternatives are used for switching between the different kinds of the spring-damper. For controlling the different behavior options, they include the following alternatives: ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

4 Page 4 of 11 It is possible to set the default alternative and the visibility on the page parameters in the element type. Parameter This parameter is used for linear behavior of the spring-damper. For the physical quantity select the item 'Linear Stiffness' in the Domain 'Mechanics (Linear)'. Parameter This parameter is used for linear behavior of the spring-damper. For the physical quantity select the item 'Linear Damping Constant' in the Domain 'Mechanics (Linear)'. Curve This curve is used for nonlinear behavior of the spring-damper. It defines the spring force as a function of the displacement difference (Fs=f(x)). For the physical quantity select the item 'Displacement' in the Domain 'Mechanics (Linear)'. For the physical quantity select the item 'Force' in the Domain 'Mechanics (Linear)'. ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

5 Page 5 of 11 Curve This curve is used for nonlinear behavior of the spring-damper. It defines the damping force as a function of the velocity difference (Fd=g(dv)). For the physical quantity select the item 'Velocity' in the Domain 'Mechanics (Linear)'. For the physical quantity select the item 'Force' in the Domain 'Mechanics (Linear)'. Local Types On this page you can add local types, such as functions, enumerations or simblocks. In this example you see here the component enumeration of the new type created before. It will be shown as a local type. Figure 4: Representation of the enumeration as local type Activity Groups Activity groups are useful for toggling parameters, variables and other components. The group behavior depends on Boolean expressions and enumeration settings. Components belonging to one group are switched on or off. Components can belong to several groups. The following table shows the assignment of the parameters in the example: Behavior Parameter Spring sdb_select = 1 Damper sdb_select = 2 Spring-Damper sdb_select = 3 AsCurve k x x b x x k_curve x x b_curve x x Before the defining and using of Activity Groups you have to enable the Activity Group support. ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

6 Page 6 of 11 Activity Groups Enabling Activity Groups for the toggling of parameters. One group is defined for each parameter. Behavior For better understanding of the behavior description let us have a look to the element connection (node). Figure 5: Node description The conventions (see Figure 5) are as follows 1. Potential differences such as displacement or speed differences are calculated as ctr1 - ctr2. 2. Positive element forces are expanding forces (increase potential diff.). - A mass at connector 1 moves in negative direction for Fi>0 - A mass at connector 2 moves in positive direction for Fi>0 3. Connections balance forces, which decrease the potential (decelerating forces) Positive element forces are written as +F to ctr1 and as -F to ctr2. For the description of the behavior you can use all available parameters, variables and components of the type. These are listed in a tree-structure on the left of the page Behavior and can also be picked via drag-and-drop. Equations of any kind can be entered on the page Behavior. The processing order is determined automatically. The Syntax is:... =... ; You can use control structures such as when... then...elsewhen... end when; if... then... elseif.. else... end if; for... in... loop; ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

7 Page 7 of 11 Equations should be generally preferred for any problem description. Exceptions are problems which can be described only as algorithms e.g. iterations. Algorithms can be also entered on the page Behavior. The processing order is equivalent to the order of notation. The Syntax is:...:=... ; You can use control structures such as if... then... else elseif... end if; for... in... loop; while... loop... end while; For the spring-damper example you have to enter the following notation (see Figure 6) on the page Behavior. Figure 6: Page Behavior - Equation section If there are syntax errors in the formulated equations a message occurs and the equation must be corrected before leaving the TypeDesigner. Modelica Code ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

8 Page 8 of 11 This page shows the Modelica code of the new type. If you are familiar with the Modelica language you can also enter or edit the code here. Documentation On this page you can describe the functionality and the behavior of the new type. Now you have finished the creation process. Testing the new element type Let us now test the behavior of the new type. For this Drag&Drop the type newobject1 from the tree view of the model explorer to the model view. Add a mass from the Linear Mechanics and connect the two elements as seen in Figure 7. Figure 7: Model structure for testing Enter the following parameters to the elements: ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

9 Page 9 of 11 mass1 newobject1 Enable the protocol attribute for the Force of newobject1 Run a simulation and open the result window for the force of newobject1. Figure 8: Linear behavior of the Spring-Damper Change the settings of newobject1: newobject1 k_curve After entering the values for the displacement and the force select the Spline interpolation by pressing the button. ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

10 Page 10 of 11 b_curve After entering the values for the velocitiy and the force select the Spline interpolation by pressing the button. Figure 9: Nonlinear behavior of the spring-damper ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

11 Page 11 of 11 Finally, let us resume a few points concerning the benefits of this tutorial You have learned how to create new element types by using the TypeDesigner. There is the option to add several components to a type for the later description of the behavior. With Boolean expressions and enumerations you can toggle the parameters, variables and other components of the type. The new types can include various behavior options which are selectable using Activity Groups. Inside the type the Modelica language is used. The handling of a user-defined type is the same as for the internal types. ITI and are registered trademarks of ITI GmbH Dresden. ITI GmbH, Dresden, Germany, All rights reserved

Tutorial 17 Workflow Graphical User Interface Figure 1

Tutorial 17 Workflow Graphical User Interface Figure 1 Tutorial 17 Getting Started with Modelica Objective This tutorial gives an introduction to, explaining the first steps from opening existing models and packages to modeling including result interpretation.

More information

Tutorial 1 Getting Started

Tutorial 1 Getting Started by Tutorial 1 Getting Started Objective The following tutorial is a step-by-step introduction to the basics of SimulationX. You will first get an overview of the graphical user interface (GUI) with the

More information

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 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,

More information

Introduction to Simulink. The Use of Mathematic Simulations in Electrical Engineering

Introduction to Simulink. The Use of Mathematic Simulations in Electrical Engineering Introduction to Simulink The Use of Mathematic Simulations in Electrical Engineering Lecture Outline 1) Introduction to Simulink 2) Modelling of dynamics systems 2 Simulink Tool for modeling, simulating,

More information

MapleSim User's Guide

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,

More information

How do you roll? Fig. 1 - Capstone screen showing graph areas and menus

How do you roll? Fig. 1 - Capstone screen showing graph areas and menus How do you roll? Purpose: Observe and compare the motion of a cart rolling down hill versus a cart rolling up hill. Develop a mathematical model of the position versus time and velocity versus time for

More information

Quick Start Training Guide

Quick Start Training Guide Quick Start Training Guide Table of Contents 1 INTRODUCTION TO MAPLESIM... 5 1.1 USER INTERFACE... 5 2 WORKING WITH A SAMPLE MODEL... 7 2.1 RUNNING A SIMULATION... 7 2.2 GRAPHICAL OUTPUT... 7 2.3 3D VISUALIZATION...

More information

RSPile. Tutorial 3 Grouped Pile Analysis. Pile Analysis Software. Grouped Pile Analysis

RSPile. Tutorial 3 Grouped Pile Analysis. Pile Analysis Software. Grouped Pile Analysis RSPile Pile Analysis Software Tutorial 3 Grouped Pile Analysis Grouped Pile Analysis Introduction This tutorial will demonstrate how to model grouped piles under a cap. The finished product of this tutorial

More information

Model Library Mechanics

Model Library Mechanics Model Library Mechanics Using the libraries Mechanics 1D (Linear), Mechanics 1D (Rotary), Modal System incl. ANSYS interface, and MBS Mechanics (3D) incl. CAD import via STL and the additional options

More information

Engine with Propeller Tutorial (Professional)

Engine with Propeller Tutorial (Professional) Engine with Propeller Tutorial (Professional) Copyright 2017 FunctionBay, Inc. All rights reserved. User and training documentation from FunctionBay, Inc. is subjected to the copyright laws of the Republic

More information

Control and Simulation in. LabVIEW

Control and Simulation in. LabVIEW Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Solutions Control and Simulation in HANS-PETTER HALVORSEN, 2011.08.11 LabVIEW Faculty of Technology,

More information

Mathematical Modelling Using SimScape (Mechanical Systems)

Mathematical Modelling Using SimScape (Mechanical Systems) Experiment Three Mathematical Modelling Using SimScape (Mechanical Systems) Control Systems Laboratory Dr. Zaer Abo Hammour Dr. Zaer Abo Hammour Control Systems Laboratory 1. Translational Mechanical System

More information

LS-DYNA s Linear Solver Development Phase1: Element Validation Part II

LS-DYNA s Linear Solver Development Phase1: Element Validation Part II LS-DYNA s Linear Solver Development Phase1: Element Validation Part II Allen T. Li 1, Zhe Cui 2, Yun Huang 2 1 Ford Motor Company 2 Livermore Software Technology Corporation Abstract This paper continues

More information

ADAMS Assignment 5. ME451:Kinematics and Dynamics of Machine Systems (Fall 2013) Assigned: November 6, 2013 Due: November 13, 2013

ADAMS Assignment 5. ME451:Kinematics and Dynamics of Machine Systems (Fall 2013) Assigned: November 6, 2013 Due: November 13, 2013 ADAMS Assignment 5 ME451:Kinematics and Dynamics of Machine Systems (Fall 2013) Assigned: November 6, 2013 Due: November 13, 2013 Turning in Your Assignment Create a single PDF file, named lastname_adams_05.pdf

More information

Lab 1: Getting familiar with LabVIEW: Part I

Lab 1: Getting familiar with LabVIEW: Part I Lab 1: Getting familiar with LabVIEW: Part I The objective of this first lab is to provide an initial hands-on experience in building a VI. For detailed explanations of the LabVIEW features mentioned here,

More information

Tutorial: Simulating a 3D Check Valve Using Dynamic Mesh 6DOF Model And Diffusion Smoothing

Tutorial: Simulating a 3D Check Valve Using Dynamic Mesh 6DOF Model And Diffusion Smoothing Tutorial: Simulating a 3D Check Valve Using Dynamic Mesh 6DOF Model And Diffusion Smoothing Introduction The purpose of this tutorial is to demonstrate how to simulate a ball check valve with small displacement

More information

Machinery Belt Tutorial

Machinery Belt Tutorial Machinery Belt Tutorial 15 Machinery Belt Tutorial This tutorial teaches you how to create poly-v grooved belt system using the 2D links modeling method. The Adams/Machinery Belt module supports multiple

More information

Click the buttons in the interactive below to learn how to navigate the Access window.

Click the buttons in the interactive below to learn how to navigate the Access window. Access 2010 Getting Started in Access Introduction Page 1 Whenever you're learning a new program, it's important to familiarize yourself with the program window and the tools within it. Working with Access

More information

Introduction to Displacement, Velocity and Acceleration

Introduction to Displacement, Velocity and Acceleration Purpose We will use computer simulation to become more familiar with the concepts of displacement, velocity and acceleration. Introduction We will study x-t, v-t, and a-t graphs in this lab. In particular,

More information

Lecture 9: Introduction to Spline Curves

Lecture 9: Introduction to Spline Curves Lecture 9: Introduction to Spline Curves Splines are used in graphics to represent smooth curves and surfaces. They use a small set of control points (knots) and a function that generates a curve through

More information

Tutorial: Getting Started with the LabVIEW Simulation Module

Tutorial: Getting Started with the LabVIEW Simulation Module Tutorial: Getting Started with the LabVIEW Simulation Module - LabVIEW 8.5 Simulati... Page 1 of 10 Cart Help Search You are here: NI Home > Support > Product Reference > Manuals > LabVIEW 8.5 Simulation

More information

Lab 12: Joint Driver and Force Creation Lab

Lab 12: Joint Driver and Force Creation Lab Page 1 Lab 12: Joint Driver and Force Creation Lab Objective This lab will continue to introduce the definition of Joint Drivers. These drivers will prescribe the motion in the three translational degrees

More information

ME scopeves Application Note #11

ME scopeves Application Note #11 App Note # 6/30/99 ME scopeves Application Note # Using a Tuned Absorber to Suppress Vibration INTRODUCTION In this note, the use of the Add Tuned Absorber command in the Visual SDM option in ME scopeves

More information

ProShake 2.0. The first step in this tutorial exercise is to start the ProShake 2.0 program. Click on the ProShake 2.0 icon to start the program.

ProShake 2.0. The first step in this tutorial exercise is to start the ProShake 2.0 program. Click on the ProShake 2.0 icon to start the program. PROSHAKE 2.0 TUTORIAL The easiest way to learn the basics of ProShake s organization and operation is to complete the tutorial exercise detailed in this section. This tutorial will take you through nearly

More information

Introduction to Simulink

Introduction to Simulink University College of Southeast Norway Introduction to Simulink Hans-Petter Halvorsen, 2016.11.01 http://home.hit.no/~hansha Preface Simulink, developed by The MathWorks, is a commercial tool for modeling,

More information

How to work with temporal and spatial keyframe interpolation

How to work with temporal and spatial keyframe interpolation How to work with temporal and spatial keyframe interpolation Keyframe interpolation changes the behavior of an effect option value as the clip plays toward or away from a keyframe. The two most common

More information

FOUNDATION IN OVERCONSOLIDATED CLAY

FOUNDATION IN OVERCONSOLIDATED CLAY 1 FOUNDATION IN OVERCONSOLIDATED CLAY In this chapter a first application of PLAXIS 3D is considered, namely the settlement of a foundation in clay. This is the first step in becoming familiar with the

More information

SETTLEMENT OF A CIRCULAR FOOTING ON SAND

SETTLEMENT OF A CIRCULAR FOOTING ON SAND 1 SETTLEMENT OF A CIRCULAR FOOTING ON SAND In this chapter a first application is considered, namely the settlement of a circular foundation footing on sand. This is the first step in becoming familiar

More information

Basic Data Acquisition with LabVIEW

Basic Data Acquisition with LabVIEW Basic Data Acquisition with LabVIEW INTRODUCTION This tutorial introduces the creation of LabView Virtual Instruments (VI s), in several individual lessons. These lessons create a simple sine wave signal,

More information

Microsoft Visio 2010

Microsoft Visio 2010 Microsoft Visio 2010 Bryton Burling Table of Contents Opening Microsoft Visio 2010... 2 Getting Started... 3 Creating a Conceptual Web Site Diagram... 3 Analyzing the Shapes Toolbar... 3 Adding a Home

More information

Introduction to Matlab Simulink. Control Systems

Introduction to Matlab Simulink. Control Systems Introduction to Matlab Simulink & their application in Control Systems ENTC 462 - Spring 2007 Introduction Simulink (Simulation and Link) is an extension of MATLAB by Mathworks Inc. It works with MATLAB

More information

How to view details for your project and view the project map

How to view details for your project and view the project map Tutorial How to view details for your project and view the project map Objectives This tutorial shows how to access EPANET model details and visualize model results using the Map page. Prerequisites Login

More information

Tangents. In this tutorial we are going to take a look at how tangents can affect an animation.

Tangents. In this tutorial we are going to take a look at how tangents can affect an animation. Tangents In this tutorial we are going to take a look at how tangents can affect an animation. One of the 12 Principles of Animation is called Slow In and Slow Out. This refers to the spacing of the in

More information

MDA V8.2.x What s New Functional Enhancements & Usability Improvements (V8.2.0 V8.2.2)

MDA V8.2.x What s New Functional Enhancements & Usability Improvements (V8.2.0 V8.2.2) Functional Enhancements & Usability Improvements (V8.2.0 V8.2.2) 1 Functional Enhancements & Usability Improvements (V8.2.0 V8.2.2) Overview Functional Enhancements Files, Formats and Data Types Usability

More information

AutoCAD 2009 Tutorial

AutoCAD 2009 Tutorial AutoCAD 2009 Tutorial Second Level: 3D Modeling Randy H. Shih Oregon Institute of Technology SDC PUBLICATIONS Schroff Development Corporation www.schroff.com Better Textbooks. Lower Prices. AutoCAD 2009

More information

Adding Dynamics. Introduction

Adding Dynamics. Introduction M-Graphic s User s Manual 11-1 Chapter 11 Adding Dynamics Introduction This chapter explains how to make single or multiple dynamic connections from display objects to points from OPC data servers. This

More information

Classroom Tips and Techniques: Nonlinear Curve Fitting. Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft

Classroom Tips and Techniques: Nonlinear Curve Fitting. Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Classroom Tips and Techniques: Nonlinear Curve Fitting Robert J. Lopez Emeritus Professor of Mathematics and Maple Fellow Maplesoft Introduction I was recently asked for help in fitting a nonlinear curve

More information

Auto Injector Syringe. A Fluent Dynamic Mesh 1DOF Tutorial

Auto Injector Syringe. A Fluent Dynamic Mesh 1DOF Tutorial Auto Injector Syringe A Fluent Dynamic Mesh 1DOF Tutorial 1 2015 ANSYS, Inc. June 26, 2015 Prerequisites This tutorial is written with the assumption that You have attended the Introduction to ANSYS Fluent

More information

Oasys Pdisp. Copyright Oasys 2013

Oasys Pdisp. Copyright Oasys 2013 Oasys Pdisp Copyright Oasys 2013 All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping,

More information

RSTAB 8. Structural Analysis for General Frameworks. Introductory Example. Dlubal Software GmbH Am Zellweg 2 D Tiefenbach

RSTAB 8. Structural Analysis for General Frameworks. Introductory Example. Dlubal Software GmbH Am Zellweg 2 D Tiefenbach Version April 2016 Program RSTAB 8 Structural Analysis for General Frameworks Introductory Example All rights, including those of translations, are reserved. No portion of this book may be reproduced mechanically,

More information

POS Designer Utility

POS Designer Utility POS Designer Utility POS Designer Utility 01/15/2015 User Reference Manual Copyright 2012-2015 by Celerant Technology Corp. All rights reserved worldwide. This manual, as well as the software described

More information

Advanced Modelica Tutorial Exercises

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

More information

CVEN 5835 Cable Supported Structures 1

CVEN 5835 Cable Supported Structures 1 CVEN 5835 Cable Supported Structures George.Hearn@colorado.edu 1 Cable Structures An app for force-displacement analysis is used to set up a model of a single strand carrying three point loads. We worked

More information

An Approach to Content Creation for Trainz

An Approach to Content Creation for Trainz An Approach to Content Creation for Trainz Paul Hobbs Part 6 GMax Basics (Updates and sample files available from http://www.44090digitalmodels.de) Page 1 of 18 Version 3 Index Foreward... 3 The Interface...

More information

This group is dedicated to Modeler tools for Layout s FiberFX hair and fur system. For the Layout interface and controls see FiberFX

This group is dedicated to Modeler tools for Layout s FiberFX hair and fur system. For the Layout interface and controls see FiberFX Fiber FX Click here to expand Table of Contents... FiberFX Strand Modeler Global Controls Fiber Tab Guides Tab Random Tab Gravity Tab Tools1 Tab Tools2 Tab Options Tab Strand Tool Strand Maker This group

More information

3 AXIS STANDARD CAD. BobCAD-CAM Version 28 Training Workbook 3 Axis Standard CAD

3 AXIS STANDARD CAD. BobCAD-CAM Version 28 Training Workbook 3 Axis Standard CAD 3 AXIS STANDARD CAD This tutorial explains how to create the CAD model for the Mill 3 Axis Standard demonstration file. The design process includes using the Shape Library and other wireframe functions

More information

MDA V8.2 What s New Functional Enhancements & Usability Improvements

MDA V8.2 What s New Functional Enhancements & Usability Improvements Functional Enhancements & Usability Improvements 1 Functional Enhancements & Usability Improvements Overview Functional Enhancements Files, Formats and Data Types Usability Improvements 2 Functional Enhancements

More information

Introduction to Electronics Workbench

Introduction to Electronics Workbench Introduction to Electronics Workbench Electronics Workbench (EWB) is a design tool that provides you with all the components and instruments to create board-level designs on your PC. The user interface

More information

Section 18-1: Graphical Representation of Linear Equations and Functions

Section 18-1: Graphical Representation of Linear Equations and Functions Section 18-1: Graphical Representation of Linear Equations and Functions Prepare a table of solutions and locate the solutions on a coordinate system: f(x) = 2x 5 Learning Outcome 2 Write x + 3 = 5 as

More information

V. COMPARTMENT MODELS

V. COMPARTMENT MODELS V. COMPARTMENT MODELS 1. INTRODUCTION TO THE TOOL 1. STOCK 2. FLOW 3. CONNECTORS 2. MODEL 3. TO SUM UP 4. GROWTH FORMS 1 1. Introduction to the tool Stella opens with a graphic menu that contains a number

More information

Main Functions. English. Viewing Client

Main Functions. English. Viewing Client Main Functions English Viewing Client Rev. 2.0.0/ 2015-12-9 004057 / Rev. 1.0.0 / 2012-08-10 Validity...2 Safety Instruction...2 Documents...2 Typographical Conventions...2 Login...3 Activation...4 Zoom...6

More information

CCS Information and Support Center Introduction

CCS Information and Support Center Introduction CCS Information and Support Center Introduction What is the information center for? http://extranet.content-conversion.com Not only does our web-based information center provide access to our collection

More information

EB GUIDE documentation

EB GUIDE documentation Tutorial Version 6.1.1.0-trunk Elektrobit Automotive GmbH Am Wolfsmantel 46 D-91058 Erlangen GERMANY Phone: +49 9131 7701-0 Fax: +49 9131 7701-6333 http://www.elektrobit.com Legal notice Confidential and

More information

Animated Modifiers (Morphing Teapot) Richard J Lapidus

Animated Modifiers (Morphing Teapot) Richard J Lapidus Animated Modifiers (Morphing Teapot) Richard J Lapidus Learning Objectives After completing this chapter, you will be able to: Add and adjust a wide range of modifiers. Work in both object and world space

More information

On-line Input Equalization Mapping Results from Different Measurement Conditions AN 62

On-line Input Equalization Mapping Results from Different Measurement Conditions AN 62 On-line Input Equalization Mapping Results from Different Measurement Conditions AN 62 Application Note for the Klippel QC SYSTEM One of the most discussed issues in QC of speakers (transducer) is the

More information

3 SETTLEMENT OF A CIRCULAR FOOTING ON SAND (LESSON 1) Figure 3.1 Geometry of a circular footing on a sand layer

3 SETTLEMENT OF A CIRCULAR FOOTING ON SAND (LESSON 1) Figure 3.1 Geometry of a circular footing on a sand layer SETTLEMENT OF A CIRCULAR FOOTING ON SAND (LESSON 1) 3 SETTLEMENT OF A CIRCULAR FOOTING ON SAND (LESSON 1) In the previous chapter some general aspects and basic features of the PLAXIS program were presented.

More information

Model Based Design and System Simulation with SimulationX and Tool Integration with optislang

Model Based Design and System Simulation with SimulationX and Tool Integration with optislang Model Based Design and Sstem Simulation with SimulationX and Tool Integration with optislang Dr. Andreas Uhlig Uwe Grätz ITI GmbH Introduction 2 Who we are Where we areout ITI Multi-faceted high-technolog

More information

2.7 Cloth Animation. Jacobs University Visualization and Computer Graphics Lab : Advanced Graphics - Chapter 2 123

2.7 Cloth Animation. Jacobs University Visualization and Computer Graphics Lab : Advanced Graphics - Chapter 2 123 2.7 Cloth Animation 320491: Advanced Graphics - Chapter 2 123 Example: Cloth draping Image Michael Kass 320491: Advanced Graphics - Chapter 2 124 Cloth using mass-spring model Network of masses and springs

More information

Multiframe Windows Version 16. User Manual

Multiframe Windows Version 16. User Manual Multiframe Windows Version 16 User Manual Bentley Systems, Incorporated 2013 License & Copyright Multiframe Program & User Manual 2013 Bentley Systems, Incorporated iii Table of Contents License & Copyright...

More information

Save and Restore Backups using itunes File Sharing

Save and Restore Backups using itunes File Sharing Save and Restore Backups using itunes File Sharing Pictello (ipad, iphone and ipod touch). In this tutorial you will learn how to create, save and restore Pictello library backups with itunes File Sharing

More information

Preface 1. Device Management System 2. Contact Information 3. User Manual Device Management System. English. Release

Preface 1. Device Management System 2. Contact Information 3. User Manual Device Management System. English. Release X-Tools - User Manual - 04 - Device Management System Preface 1 Device Management System 2 Contact Information 3 X-Tools User Manual - 04 - Device Management System Release 2016-10 Release 2016-10 1 /

More information

Avid FX Tutorials. Understanding the Tutorial Exercises

Avid FX Tutorials. Understanding the Tutorial Exercises Avid FX Tutorials Understanding the Tutorial Exercises The following tutorial exercises provide step-by-step instructions for creating various kinds of effects, while exploring many aspects of the Avid

More information

SIMULINK A Tutorial by Tom Nguyen

SIMULINK A Tutorial by Tom Nguyen Introduction SIMULINK A Tutorial by Tom Nguyen Simulink (Simulation and Link) is an extension of MATLAB by Mathworks Inc. It works with MATLAB to offer modeling, simulating, and analyzing of dynamical

More information

Graphing Calculator Tutorial

Graphing Calculator Tutorial Graphing Calculator Tutorial This tutorial is designed as an interactive activity. The best way to learn the calculator functions will be to work the examples on your own calculator as you read the tutorial.

More information

Run multiple analyses which vary soil spring constants and damping ratio to account for uncertainties of soil data.

Run multiple analyses which vary soil spring constants and damping ratio to account for uncertainties of soil data. Heavier equipment with faster machine speeds coupled with higher costs have made rule-of-thumb approaches and "rigid structure" assumptions either unsafe or too conservative for the design of many structures

More information

Software Engineering Software Requirements Specification (SRS) Document

Software Engineering Software Requirements Specification (SRS) Document Software Engineering Software Requirements Specification (SRS) Document Matt Bartyczak, Clayton Kinard, Nick Pierson, Jordan Tallent Radford University April 7, 2015 Revisions Version Primary Author(s)

More information

Assignment 1: Mass-Spring System

Assignment 1: Mass-Spring System Assignment 1: Mass-Spring System Due February 15 at 11:59pm Introduction Mass-spring systems are a fundamental tool in physical simulations, and a wide range of natural phenomena can be described or approximated

More information

Spring Pendulum * Muhammad Umar Hassan and Muhammad Sabieh Anwar

Spring Pendulum * Muhammad Umar Hassan and Muhammad Sabieh Anwar Spring Pendulum * Muhammad Umar Hassan and Muhammad Sabieh Anwar Center for Experimental Physics Education, Syed Babar Ali School of Science and Engineering, LUMS V. 2017-1; May 3, 2017 Oscillations are

More information

Real-Time Simulation of Modelica-based Models

Real-Time Simulation of Modelica-based Models Real-Time Simulation of Modelica-based Models Torsten Blochwitz Thomas Beutlich ITI GmbH Webergasse 1, 01067 Dresden, Germany {blochwitz,beutlich}@iti.de Abstract This paper shows the various steps a simulation

More information

0 Graphical Analysis Use of Excel

0 Graphical Analysis Use of Excel Lab 0 Graphical Analysis Use of Excel What You Need To Know: This lab is to familiarize you with the graphing ability of excels. You will be plotting data set, curve fitting and using error bars on the

More information

Faculty Guide. Creating your Blank Shell for Blackboard Learn:

Faculty Guide. Creating your Blank Shell for Blackboard Learn: Faculty Guide In this guide, you will find directions for creating your blank shells for Blackboard, filling out the course merge form, hiding courses from previous semesters or child sections for merged

More information

Physics 101, Lab 1: LINEAR KINEMATICS PREDICTION SHEET

Physics 101, Lab 1: LINEAR KINEMATICS PREDICTION SHEET Physics 101, Lab 1: LINEAR KINEMATICS PREDICTION SHEET After reading through the Introduction, Purpose and Principles sections of the lab manual (and skimming through the procedures), answer the following

More information

Blackboard Portfolio System Owner and Designer Reference

Blackboard Portfolio System Owner and Designer Reference Blackboard Learning System Blackboard Portfolio System Owner and Designer Reference Application Pack 2 for Blackboard Learning System CE Enterprise License (Release 6) Application Pack 2 for Blackboard

More information

Preface 1. Device Management System 2. Contact Information 3. User Manual Device Management System. English. Release

Preface 1. Device Management System 2. Contact Information 3. User Manual Device Management System. English. Release X-Tools - User Manual - 04 - Device Management System Preface 1 Device Management System 2 Contact Information 3 X-Tools User Manual - 04 - Device Management System Release 2015-11 Release 2015-11 1 /

More information

Interactive Graphics. Lecture 9: Introduction to Spline Curves. Interactive Graphics Lecture 9: Slide 1

Interactive Graphics. Lecture 9: Introduction to Spline Curves. Interactive Graphics Lecture 9: Slide 1 Interactive Graphics Lecture 9: Introduction to Spline Curves Interactive Graphics Lecture 9: Slide 1 Interactive Graphics Lecture 13: Slide 2 Splines The word spline comes from the ship building trade

More information

Siemens Controls. SAP interface COMOS. Platform SAP interface. Trademarks 1. Introduction. Technical prerequisites 3

Siemens Controls. SAP interface COMOS. Platform SAP interface. Trademarks 1. Introduction. Technical prerequisites 3 Trademarks 1 Introduction 2 COMOS Platform Operating Manual Technical prerequisites 3 Basic concepts of the COMOS SAP Interface 4 General settings 5 XML scheme for the data exchange 6 SAP Maintenance module

More information

2.5: GRAPHS OF EXPENSE AND REVENUE FUNCTIONS OBJECTIVES

2.5: GRAPHS OF EXPENSE AND REVENUE FUNCTIONS OBJECTIVES Section 2.5: GRAPHS OF EXPENSE AND REVENUE FUNCTIONS OBJECTIVES Write, graph and interpret the expense function. Write, graph and interpret the revenue function. Identify the points of intersection of

More information

INTRODUCTION // MODELING PROCESS COMPARISON

INTRODUCTION // MODELING PROCESS COMPARISON INTRODUCTION // MODELING PROCESS COMPARISON INTRODUCTION // MODELING PROCESS IN RHINO ROTATION AXIS PROFILE CRV - TYPE REVOLVE - HIT - PICK PROFILE CRV - HIT - PICK ROTATION AXIS - HIT - TYPE 0 AS START

More information

DMU Engineering Analysis Review

DMU Engineering Analysis Review Page 1 DMU Engineering Analysis Review Preface Using This Guide Where to Find More Information Conventions What's New? Getting Started Inserting a CATAnalysis Document Using DMU Space Analysis From CATAnalysis

More information

Research on time optimal trajectory planning of 7-DOF manipulator based on genetic algorithm

Research on time optimal trajectory planning of 7-DOF manipulator based on genetic algorithm Acta Technica 61, No. 4A/2016, 189 200 c 2017 Institute of Thermomechanics CAS, v.v.i. Research on time optimal trajectory planning of 7-DOF manipulator based on genetic algorithm Jianrong Bu 1, Junyan

More information

ECOLIGICAL MODLLING. MODELLING METHODScompartment V. COMPARTMENT MODELS. Compartment. modelling

ECOLIGICAL MODLLING. MODELLING METHODScompartment V. COMPARTMENT MODELS. Compartment. modelling ECOLIGICAL MODLLING V. COMPARTMENT MODELS 1 1 MODELLING METHODScompartment modelling Compartment modelling 2 3 1 3C modelling 3C modeling a) Compartments (state variables) b) Connections (parameters) c)

More information

SolidWorks Motion Study Tutorial

SolidWorks Motion Study Tutorial SolidWorks Motion Study Tutorial By: Mohamed Hakeem Mohamed Nizar Mechanical Engineering Student- May 2015 South Dakota School of Mines & Technology August 2013 Getting Started This tutorial is for you

More information

Name: SID: LAB Section:

Name: SID: LAB Section: Name: SID: LAB Section: Lab 9 - Part 1: Particle Simulations In particle simulations, each particle s dynamic state (position, velocity, acceleration, etc) is modeled independently of the particle s visual

More information

Microsoft Word 2011: Basic Tutorial

Microsoft Word 2011: Basic Tutorial Microsoft Word 2011: Basic Tutorial 1. Create a new blank document In Word, you create and save content in a document. You can start with a blank document, an existing saved document, or a template. When

More information

PLAXIS 2D - SUBMERGED CONSTRUCTION OF AN EXCAVATION

PLAXIS 2D - SUBMERGED CONSTRUCTION OF AN EXCAVATION PLAXIS 2D - SUBMERGED CONSTRUCTION OF AN EXCAVATION 3 SUBMERGED CONSTRUCTION OF AN EXCAVATION This tutorial illustrates the use of PLAXIS for the analysis of submerged construction of an excavation. Most

More information

How to Model Friction in SIMPACK

How to Model Friction in SIMPACK How to Model Friction in SIMPACK 1. General Modelling friction in multi-body systems is somewhat challenging. The friction law itself is a simple function, see figure. However, if the relative velocity

More information

2D Oculomotor Plant Mathematical Model Equations

2D Oculomotor Plant Mathematical Model Equations 2D Oculomotor Plant Mathematical Model Equations Oleg V. Komogortsev Department of Computer Science Texas State University-San Marcos ok11@txstate.edu Ukwatta K. S. Jayarathna Department of Computer Science

More information

[ MATLAB ] [ Resources ] PART TWO: SIMULINK

[ MATLAB ] [ Resources ] PART TWO: SIMULINK Página 1 de 15 [ MATLAB ] [ Resources ] PART TWO: SIMULINK Contents Introduction Getting Started Handling of Blocks and Lines Annotations Some Examples NOTE: This tutorial is based on Simulink Version

More information

LightCycler 480. Instrument and Software Training. Relative Quantification Module. (including Melting Curve)

LightCycler 480. Instrument and Software Training. Relative Quantification Module. (including Melting Curve) LightCycler 480 Instrument and Software Training Relative Quantification Module (including Melting Curve) Agenda 1. Hardware demonstration (hands on) A quick look inside the instrument Xenon lamp exchange

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Filling Data Across Columns

More information

Microsoft Excel. Charts

Microsoft Excel. Charts Microsoft Excel Charts Chart Wizard To create a chart in Microsoft Excel, select the data you wish to graph or place yourself with in the conjoining data set and choose Chart from the Insert menu, or click

More information

Chapter 4: Dissecting

Chapter 4: Dissecting Chapter 4: Dissecting If a transaction needs to be coded to more than one account, you can use the dissect function to enter up to 2000 dissection lines for each transaction. Transactions may be dissected

More information

New Capabilities in Project Hydra for Autodesk Simulation Mechanical

New Capabilities in Project Hydra for Autodesk Simulation Mechanical New Capabilities in Project Hydra for Autodesk Simulation Mechanical Sualp Ozel, PE. Autodesk SM2447-L In this hands-on lab, we will go through several exercises and cover several new capabilities included

More information

Project curves, points, or sketches onto faces and planes.

Project curves, points, or sketches onto faces and planes. Project Curve Path: Curve tab > Derived Curve group > Project Curve Objectives Project curves, points, or sketches onto faces and planes. Prerequisites File tab > Start > Modeling Projecting Curves to

More information

Lesson 12 Getting Started with Word Essentials

Lesson 12 Getting Started with Word Essentials Getting Started with Word Essentials Computer Literacy BASICS: A Comprehensive Guide to IC 3, 4 th Edition 1 Objectives Create a new document. Change Word settings. Enter text in a document. Show nonprinting

More information

LAB # 2 3D Modeling, Properties Commands & Attributes

LAB # 2 3D Modeling, Properties Commands & Attributes COMSATS Institute of Information Technology Electrical Engineering Department (Islamabad Campus) LAB # 2 3D Modeling, Properties Commands & Attributes Designed by Syed Muzahir Abbas 1 1. Overview of the

More information

Introduction. Table Basics. Access 2010 Working with Tables. Video: Working with Tables in Access To Open an Existing Table: Page 1

Introduction. Table Basics. Access 2010 Working with Tables. Video: Working with Tables in Access To Open an Existing Table: Page 1 Access 2010 Working with Tables Introduction Page 1 While there are four types of database objects in Access 2010, tables are arguably the most important. Even when you're using forms, queries, and reports,

More information

Isotropic Porous Media Tutorial

Isotropic Porous Media Tutorial STAR-CCM+ User Guide 3927 Isotropic Porous Media Tutorial This tutorial models flow through the catalyst geometry described in the introductory section. In the porous region, the theoretical pressure drop

More information

MECHANISM DESIGN ESSENTIALS IN 3DEXPERIENCE

MECHANISM DESIGN ESSENTIALS IN 3DEXPERIENCE Nader G. Zamani MECHANISM DESIGN ESSENTIALS IN 3DEXPERIENCE 2016x USING CATIA APPLICATIONS SDC PUBLICATIONS Better Textbooks. Lower Prices. www.sdcpublications.com Powered by TCPDF (www.tcpdf.org) Visit

More information

Tutorial 9: Simplified truck model with dummy, airbag and seatbelt

Tutorial 9: Simplified truck model with dummy, airbag and seatbelt Tutorial 9 Simplified Truck Model with Dummy and Airbag Problem description Outline Analysis type(s): Element type(s): Materials law(s): Model options: Key results: Prepared by: Date: Version: Frontal

More information