Material for tutorial. Twitter: prabhu_r. Slides: Demos:

Size: px
Start display at page:

Download "Material for tutorial. Twitter: prabhu_r. Slides: http://goo.gl/5u7pv. Demos: http://goo.gl/mc0ea. www.enthought.com/~prabhu/m2_tutorial."

Transcription

1 Material for tutorial Twitter: prabhu_r Slides: Demos:

2 3D Data visualization with Mayavi Prabhu Ramachandran Gaël Varoquaux Department of Aerospace Engineering IIT Bombay SciPy.in 2011, December 7, IIT Bombay. Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 2 / 72

3 Objectives At the end of this session you will be able to: 1 Use mlab effectively to visualize numpy array data of various kinds 2 Apply some of mayavi s advanced features 3 Embed mayavi visualizations in your dialogs 4 Create TVTK datasets for more effective visualization (if time permits)

4 Outline 1 Quick introduction to Mayavi 2 mlab 3 Embedding mayavi 4 Creating and working with datasets Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 4 / 72

5 Outline 1 Quick introduction to Mayavi 2 mlab 3 Embedding mayavi 4 Creating and working with datasets Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 5 / 72

6 Who are we? Prabhu Ramachandran 2001 Creator and lead Gaël Varoquaux 2007 mlab, documentation, usability Enthought Inc. ETS, Hosting, support, sprints, initial funding, distribution Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 6 / 72

7 History Mayavi-1.x: 2001 TVTK: 2004, Enthought Mayavi2: 2005, Enthought, IITB 2008: Mayavi sprint at Austin Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 7 / 72

8 Overview of features

9

10 Live in your dialogs

11 Mayavi in applications

12 Exploring the documentation

13 Other features Easy customization Offscreen animations Automatic script generation Powerful command line options

14 Summary mayavi Uses VTK ( BSD license Linux, win32 and Mac OS X Highly scriptable Embed in Traits UIs (wxpython and PyQt4) Envisage Plugins Debian/Ubuntu/Fedora Pythonic 15

15 Outline 1 Quick introduction to Mayavi 2 mlab 3 Embedding mayavi 4 Creating and working with datasets Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 15 / 72

16 Overview Simple Convenient Full-featured Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 16 / 72

17 Getting started Vanilla: $ ipython wthread with Pylab: $ ipython pylab wthread

18 Using mlab: >>> from enthought. mayavi import mlab Try these: >>> mlab. test_ <TAB> >>> mlab. test_contour3d ( ) >>> mlab. test_contour3d??

19 Exploring the view Mouse Keyboard Toolbar Mayavi icon 20

20 mlab plotting functions 0D data >>> from numpy import >>> t = l i nspace ( 0, 2 pi, 50) >>> u = cos ( t ) p i >>> x, y, z = s i n ( u ), cos ( u ), s i n ( t ) >>> mlab.points3d(x, y, z)

21 Changing how things look Clearing the view >>> mlab.clf() IPython is your friend! >>> mlab.points3d? Extra argument: Scalars Keyword arguments UI >>> mlab. points3d ( x, y, z, t, scale_mode= none )

22 Changing how things look Clearing the view >>> mlab.clf() IPython is your friend! >>> mlab.points3d? Extra argument: Scalars Keyword arguments UI >>> mlab. points3d ( x, y, z, t, scale_mode= none )

23 Changing how things look Clearing the view >>> mlab.clf() IPython is your friend! >>> mlab.points3d? Extra argument: Scalars Keyword arguments UI >>> mlab. points3d ( x, y, z, t, scale_mode= none )

24 1D data >>> mlab.plot3d(x, y, z, t ) Plots lines between the points

25 2D data >>> x = mgrid [ 3:3:100 j, 3:3:100 j ] >>> z = s i n ( x x + y y ) >>> mlab.surf(x, y, z) Assumes the points are rectilinear

26 2D data: mlab.mesh >>> mlab.mesh(x, y, z) Points needn t be regular >>> phi, t h e t a = numpy. mgrid [ 0 : p i :20 j,... 0:2 p i :20 j ] >>> x = s i n ( phi ) cos ( t h e t a ) >>> y = s i n ( phi ) s i n ( t h e t a ) >>> z = cos ( phi ) >>> mlab. mesh( x, y, z,... r e p r e s e n t a t i o n = wireframe )

27 3D data >>> x, y, z = o g r i d [ 5:5:64 j,... 5:5:64 j,... 5:5:64 j ] >>> mlab. contour3d ( x x y y + z z 2)

28 3D vector data: mlab.quiver3d >>> mlab. t e s t _ q u i v e r 3 d ( ) obj = mlab.quiver3d(x, y, z, u, v, w) 50

29 Exercise: Lorenz equation dx dt dy dt dz dt = s(y x) = rx y xz = xy bz Let s = 10, r = 28, b = 8./3. Region of interest x, y, z = mgrid [ 50:50:20 j, 50:50:20 j, 10:60:20 j ] Use mlab.quiver3d

30 mlab. quiver3d ( x, y, z, u, v, w, s c a l e _ f a c t o r =0.01, mask_points =5) mlab. show ( ) Solution def lorenz ( x, y, z, s =10., r =28., b = 8. / 3. ) : u = s ( y x ) v = r x y x z w = x y b z return u, v, w x, y, z = mgrid [ 50:50:20 j, 50:50:20 j, 10:60:20 j ] u, v, w = lorenz ( x, y, z )

31 Issues and solutions Basic visualization: not very useful Tweak parameters: mask_points, scale_factor Explore parameters on UI mlab.flow is a lot better! Good visualization involves work 60

32 Other utility functions gcf: get current figure savefig, figure axes, outline title, xlabel, ylabel, zlabel colorbar, scalarbar, vectorbar show: Standalone mlab scripts Others, see UG

33 Other utility functions gcf: get current figure savefig, figure axes, outline title, xlabel, ylabel, zlabel colorbar, scalarbar, vectorbar show: Standalone mlab scripts Others, see UG

34 Other utility functions gcf: get current figure savefig, figure axes, outline title, xlabel, ylabel, zlabel colorbar, scalarbar, vectorbar show: Standalone mlab scripts Others, see UG

35 Other utility functions gcf: get current figure savefig, figure axes, outline title, xlabel, ylabel, zlabel colorbar, scalarbar, vectorbar show: Standalone mlab scripts Others, see UG

36 Other utility functions gcf: get current figure savefig, figure axes, outline title, xlabel, ylabel, zlabel colorbar, scalarbar, vectorbar show: Standalone mlab scripts Others, see UG

37 Other utility functions gcf: get current figure savefig, figure axes, outline title, xlabel, ylabel, zlabel colorbar, scalarbar, vectorbar show: Standalone mlab scripts Others, see UG

38 Other utility functions gcf: get current figure savefig, figure axes, outline title, xlabel, ylabel, zlabel colorbar, scalarbar, vectorbar show: Standalone mlab scripts Others, see UG

39 Can we do more? Yes!

40 quiver3d ( x, y, z, u, v, w, s c a l e _ f a c t o r =0.01, mask_points =5)

41 Looking inside

42 The pipeline 70

43 Mayavi Engine TVTK Scene Source Filter ModuleManager Lookup tables List of Modules

44 Changing the pipeline On UI Right click on node drag drop Script Or use mlab.pipeline Example: mlab.pipeline. outline () obj.remove()

45 Exercise >>> mlab. t e s t _ q u i v e r 3 d ( ) Hide vectors, add a Vector Cut Plane >>> mlab. t e s t _ f l o w ( ) Add a Vector Cut Plane Can also use the Lorenz example

46 Exercise >>> mlab. t e s t _ q u i v e r 3 d ( ) Hide vectors, add a Vector Cut Plane >>> mlab. t e s t _ f l o w ( ) Add a Vector Cut Plane Can also use the Lorenz example

47 Surprised?

48 So what is the problem?

49 Points?

50 Curve?

51 Surface?

52 Interior of sphere?

53 Datasets Quiver v/s Flow Get back to this later! 85

54 Recap mlab gets you started Pipeline and data flow Datasets are important

55 Changing the pipeline On UI Right click on node drag drop Script Or use mlab.pipeline Example: mlab.pipeline. outline () obj.remove()

56 mlab and Mayavi2? mlab is just a thin layer over the Mayavi OO API mlab commands return mayavi objects

57 Exercise 1 Start with flow for the Lorenz system 2 Now extract the vector norm (use a filter) 3 Plot iso-contours of this 4 Figure out how to do this from the UI and mlab.pipeline 95 Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 48 / 72

58 So how do you make a fancier script? Use script recording Demo

59 So how do you make a fancier script? Use script recording Demo

60 Animating data >>> s = mlab. flow ( x, y, z, u, v, w) >>> s. mlab_source. u = u z mlab_source.set: multiple attributes If you change the shape of the arrays use the reset method

61 Setting the view >>> p r i n t mlab. view ( ) >>> mlab. view ( azimuth=none, e l e v a t i o n =None, distance=none, f o c a l p o i n t =None ) 110

62 Outline 1 Quick introduction to Mayavi 2 mlab 3 Embedding mayavi 4 Creating and working with datasets Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 52 / 72

63 General approach Embed Mayavi into a dialog box Use traits to wire up everything Full power of mayavi at your disposal

64 Simple example 120

65 Exercise: Lorenz trajectory Use the provided skeleton script 1 Create a simple UI to show a trajectory 2 Create sliders to change the position of the initial condition 3 Create a UI element to change the integration time 125 Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 55 / 72

66 Outline 1 Quick introduction to Mayavi 2 mlab 3 Embedding mayavi 4 Creating and working with datasets Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 56 / 72

67 Motivation Datasets are fundamental to doing visualization correctly Motivational problem Atmospheric data of temperature over the surface of the earth. Let temperature (T ) vary linearly with height (z): T = z

68 Simple solution l a t = l inspace ( 89, 89, 37) lon = l i n space ( 0, 360, 37) z = l i n s p ace ( 0, 100, 11) x, y, z = mgrid [0:360:37 j, 89:89:37 j, 0:100:11 j ] t = z mlab. contour3d ( x, y, z, t ) mlab. o u t l i n e ( ) mlab. c o l o r b a r ( )

69 Simple solution l a t = l inspace ( 89, 89, 37) lon = l i n space ( 0, 360, 37) z = l i n s p ace ( 0, 100, 11) x, y, z = mgrid [0:360:37 j, 89:89:37 j, 0:100:11 j ] t = z mlab. contour3d ( x, y, z, t ) mlab. o u t l i n e ( ) mlab. c o l o r b a r ( )

70 What happens underneath? P = mlab. p i p e l i n e src = P. s c a l a r _ f i e l d ( x, y, z, t ) i s o = P. iso_surface ( src ) # Try t h i s. p r i n t src

71 The underlying dataset from enthought. t v t k. api import t v t k o r i g = ( 0, 90, 0) spacing = (10, 5, 10) dims = (37, 37, 11) i d = t v t k. ImageData ( o r i g i n = orig, spacing =spacing, dimensions=dims ) i d. point_data. s c a l a r s = t. T. f l a t t e n ( ) i d. point_data. s c a l a r s. name = T # View i t. src = P. add_dataset ( i d ) i s o = P. iso_surface ( src )

72 The general idea Specify the points (explicitly or implicitly) Specify the connectivity between the points (explicit/implicit) The connectivity lets you build cells that break the space into pieces Specify attribute data at the points or cells Points Rectangular cell Triangular cells Point data Cell data 20 10

73

74 Types of datasets Implicit topology (structured): Image data (structured points) Rectilinear grids Structured grids Explicit topology (unstructured): Polygonal data (surfaces) Unstructured grids

75 Implicit versus explicit topology Implicit topology associated with points: The X co-ordinate increases first, Y next and Z last Easiest example: a rectangular mesh Non-rectangular mesh certainly possible Prabhu Ramachandran, Gaël Varoquaux (IIT Bombay) Mayavi2 tutorial 64 / 72

76 On a sphere? lon, l a t, ht = x p i /180, (90+y ) p i /180, z r = ( ht ) tmp = r s i n ( l a t ) # Points on the sphere x, y, z = tmp cos ( lon ), tmp s i n ( lon ), r cos ( l a t ) pts = empty ( x. shape + ( 3, ), dtype= f l o a t ) pts [..., 0 ] = x pts [..., 1 ] = y pts [..., 2 ] = z # Reorder the p o i n t s / s c a l a r s f o r VTK pts = pts. transpose ( 2, 1, 0, 3 ). copy ( ) pts. shape = pts. size / 3, 3 t = t. T. copy ( )

77 sg = t v t k. S t r u c t u r e d G r i d ( ) sg. dimensions = x. shape sg. p o i n t s = pts sg. point_data. s c a l a r s = t. r a v e l ( ) sg. point_data. s c a l a r s. name = T P = mlab. p i p e l i n e src = P. add_dataset ( sg ) P. grid_plane ( src ) P. iso_surface ( src, contours =1) mlab. show ( )

78 # Save a dataset to disk. from enthought. t v t k. api import w r i t e _ d a t a w r i t e _ d a t a ( dataset, fname ) # Open back t h e data. mlab. p i p e l i n e. open ( fname ) Try right clicking a node!

79 Unstructured grids Explicit topology specification Specified via connectivity lists Different number of neighbors, different types of cells

80 PolyData from enthought. t v t k. api import t v t k # The p o i n t s i n 3D. p o i n t s = array ( [ [ 0, 0, 0 ], [ 1, 0, 0 ], [ 0, 1, 0 ], [ 0, 0, 1 ] ], f ) # C o n n e c t i v i t y v i a i n d i c e s to the p o i n t s. t r i a n g l e s = array ( [ [ 0, 1, 3 ], [ 0, 3, 2 ], [ 1, 2, 3 ], [ 0, 2, 1 ] ] ) # Creating the data o b j e c t. mesh = t v t k. PolyData ( ) mesh. p o i n t s = p o i n t s # the p o i n t s mesh. polys = t r i a n g l e s # t r i a n g l e s f o r c o n n e c t i v i t y # For l i n e s use : mesh. l i n e s = l i n e s # Now create some p o i n t data. temperature = array ( [ 1 0, 20,20, 30], f ) mesh. point_data. s c a l a r s = temperature mesh. point_data. s c a l a r s. name = temperature

81 PolyData from enthought. t v t k. api import t v t k # The p o i n t s i n 3D. p o i n t s = array ( [ [ 0, 0, 0 ], [ 1, 0, 0 ], [ 0, 1, 0 ], [ 0, 0, 1 ] ], f ) # C o n n e c t i v i t y v i a i n d i c e s to the p o i n t s. t r i a n g l e s = array ( [ [ 0, 1, 3 ], [ 0, 3, 2 ], [ 1, 2, 3 ], [ 0, 2, 1 ] ] ) # Creating the data o b j e c t. mesh = t v t k. PolyData ( ) mesh. p o i n t s = p o i n t s # the p o i n t s mesh. polys = t r i a n g l e s # t r i a n g l e s f o r c o n n e c t i v i t y # For l i n e s use : mesh. l i n e s = l i n e s # Now create some p o i n t data. temperature = array ( [ 1 0, 20,20, 30], f ) mesh. point_data. s c a l a r s = temperature mesh. point_data. s c a l a r s. name = temperature

82 Summary 140

83 Advanced features Command line arguments, timeseries, scripting

84 Thank you!

3D Data visualization with Mayavi

3D Data visualization with Mayavi 3D Data visualization with Mayavi Prabhu Ramachandran Department of Aerospace Engineering IIT Bombay SciPy.in 2012, December 27, IIT Bombay. Prabhu Ramachandran (IIT Bombay) Mayavi2 tutorial 1 / 53 In

More information

First Prev Next Last MayaVi: A Free Tool for 3D/2D Data Visualization Prabhu Ramachandran October, 25, 2002 Abstract MayaVi (http://mayavi.sf.net) is an easy to use tool for interactive 3D/2D data visualization

More information

Mayavi User Guide. Release 3.3.1. Prabhu Ramachandran, Gael Varoquaux

Mayavi User Guide. Release 3.3.1. Prabhu Ramachandran, Gael Varoquaux Mayavi User Guide Release 3.3.1 Prabhu Ramachandran, Gael Varoquaux December 02, 2009 CONTENTS i ii Welcome. This is the User Guide for Mayavi (version 3.3.1), the scientific data visualization and 3D

More information

Visualization with ParaView

Visualization with ParaView Visualization with ParaView Before we begin Make sure you have ParaView 4.1.0 installed so you can follow along in the lab section http://paraview.org/paraview/resources/software.php Background http://www.paraview.org/

More information

Visualization with ParaView. Greg Johnson

Visualization with ParaView. Greg Johnson Visualization with Greg Johnson Before we begin Make sure you have 3.8.0 installed so you can follow along in the lab section http://paraview.org/paraview/resources/software.html http://www.paraview.org/

More information

VisIt Visualization Tool

VisIt Visualization Tool The Center for Astrophysical Thermonuclear Flashes VisIt Visualization Tool Randy Hudson hudson@mcs.anl.gov Argonne National Laboratory Flash Center, University of Chicago An Advanced Simulation and Computing

More information

MayaVi: A free tool for CFD data visualization

MayaVi: A free tool for CFD data visualization MayaVi: A free tool for CFD data visualization Prabhu Ramachandran Graduate Student, Dept. Aerospace Engg. IIT Madras, Chennai, 600 036. e mail: prabhu@aero.iitm.ernet.in Keywords: Visualization, CFD data,

More information

Processing Data with rsmap3d Software Services Group Advanced Photon Source Argonne National Laboratory

Processing Data with rsmap3d Software Services Group Advanced Photon Source Argonne National Laboratory Processing Data with rsmap3d Software Services Group Advanced Photon Source Argonne National Laboratory Introduction rsmap3d is an application for producing 3D reciprocal space maps from x-ray diffraction

More information

Introduction to Paraview. H.D.Rajesh

Introduction to Paraview. H.D.Rajesh Introduction to Paraview H.D.Rajesh 1.Introduction 2.file formats 3.How to use Brief Overview Info: www.paraview.org http://www.paraview.org/wiki/paraview Open source,multi-platform application (Linux,

More information

Why are we teaching you VisIt?

Why are we teaching you VisIt? VisIt Tutorial Why are we teaching you VisIt? Interactive (GUI) Visualization and Analysis tool Multiplatform, Free and Open Source The interface looks the same whether you run locally or remotely, serial

More information

Computational Fluid Dynamics. Department of Aerospace Engineering, IIT Bombay

Computational Fluid Dynamics. Department of Aerospace Engineering, IIT Bombay Computational Fluid Dynamics Department of Aerospace Engineering, IIT Bombay Expertise Core CFD and CEM Algorithm development Hypersonics, internal and external flows Grid generation: IITZeus Particle

More information

Visualization Plugin for ParaView

Visualization Plugin for ParaView Alexey I. Baranov Visualization Plugin for ParaView version 1.3 Springer Contents 1 Visualization with ParaView..................................... 1 1.1 ParaView plugin installation.................................

More information

Plotting: Customizing the Graph

Plotting: Customizing the Graph Plotting: Customizing the Graph Data Plots: General Tips Making a Data Plot Active Within a graph layer, only one data plot can be active. A data plot must be set active before you can use the Data Selector

More information

Steady Flow: Laminar and Turbulent in an S-Bend

Steady Flow: Laminar and Turbulent in an S-Bend STAR-CCM+ User Guide 6663 Steady Flow: Laminar and Turbulent in an S-Bend This tutorial demonstrates the flow of an incompressible gas through an s-bend of constant diameter (2 cm), for both laminar and

More information

AMATH 352 Lecture 3 MATLAB Tutorial Starting MATLAB Entering Variables

AMATH 352 Lecture 3 MATLAB Tutorial Starting MATLAB Entering Variables AMATH 352 Lecture 3 MATLAB Tutorial MATLAB (short for MATrix LABoratory) is a very useful piece of software for numerical analysis. It provides an environment for computation and the visualization. Learning

More information

Introduction to Visualization with VTK and ParaView

Introduction to Visualization with VTK and ParaView Introduction to Visualization with VTK and ParaView R. Sungkorn and J. Derksen Department of Chemical and Materials Engineering University of Alberta Canada August 24, 2011 / LBM Workshop 1 Introduction

More information

Scientific Visualization with ParaView

Scientific Visualization with ParaView Scientific Visualization with ParaView Geilo Winter School 2016 Andrea Brambilla (GEXCON AS, Bergen) Outline Part 1 (Monday) Fundamentals Data Filtering Part 2 (Tuesday) Time Dependent Data Selection &

More information

Finding Drag Coefficient using Solidworks Flow Simulation

Finding Drag Coefficient using Solidworks Flow Simulation Finding Drag Coefficient using Solidworks Flow Simulation Using solidworks to find the drag coefficient of shapes is a very useful way to cut down on the design time of a project, as it can remove tests.

More information

Python. Python. 1 Python. M.Ulvrova, L.Pouilloux (ENS LYON) Informatique L3 Automne 2011 1 / 25

Python. Python. 1 Python. M.Ulvrova, L.Pouilloux (ENS LYON) Informatique L3 Automne 2011 1 / 25 Python 1 Python M.Ulvrova, L.Pouilloux (ENS LYON) Informatique L3 Automne 2011 1 / 25 Python makes you fly M.Ulvrova, L.Pouilloux (ENS LYON) Informatique L3 Automne 2011 2 / 25 Let s start ipython vs python

More information

A Tutorial on dynamic networks. By Clement Levallois, Erasmus University Rotterdam

A Tutorial on dynamic networks. By Clement Levallois, Erasmus University Rotterdam A Tutorial on dynamic networks By, Erasmus University Rotterdam V 1.0-2013 Bio notes Education in economics, management, history of science (Ph.D.) Since 2008, turned to digital methods for research. data

More information

Visualizing molecular simulations

Visualizing molecular simulations Visualizing molecular simulations ChE210D Overview Visualization plays a very important role in molecular simulations: it enables us to develop physical intuition about the behavior of a system that is

More information

Quickstart for Desktop Version

Quickstart for Desktop Version Quickstart for Desktop Version What is GeoGebra? Dynamic Mathematics Software in one easy-to-use package For learning and teaching at all levels of education Joins interactive 2D and 3D geometry, algebra,

More information

ICEM CFD Tutorial. Simple Duct Grid

ICEM CFD Tutorial. Simple Duct Grid ICEM CFD Tutorial Simple Duct Grid Scott J. Ormiston Gavin Joyce Department of Mechanical Engineering Winnipeg, Manitoba Canada V1.01 17 January 2013 Department of Mechanical Engineering Page 1 of 22 1.

More information

Cassandra 2.0: Tutorial

Cassandra 2.0: Tutorial Cassandra 2.0 Tutorial V1.0 Sébastien Jourdain, Fatiha Zeghir 2005/06/01 1 / 16 Abstract Cassandra is a generic VTK data viewer written in Java which provides native multiplatform support. Cassandra is

More information

Gephi Tutorial Visualization

Gephi Tutorial Visualization Gephi Tutorial Welcome to this Gephi tutorial. It will guide you to the basic and advanced visualization settings in Gephi. The selection and interaction with tools will also be introduced. Follow the

More information

Creo Simulate 1.0 April 2011

Creo Simulate 1.0 April 2011 Creo Simulate 1.0 April 2011 Creo Simulate a Creo family app Installed / Un-installed separately Creo Simulate in two modes: Embedded mode module of Creo Parametric Standalone mode In Standalone mode:

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

An introduction to 3D draughting & solid modelling using AutoCAD

An introduction to 3D draughting & solid modelling using AutoCAD An introduction to 3D draughting & solid modelling using AutoCAD Faculty of Technology University of Plymouth Drake Circus Plymouth PL4 8AA These notes are to be used in conjunction with the AutoCAD software

More information

Maple Quick Start. Introduction. Talking to Maple. Using [ENTER] 3 (2.1)

Maple Quick Start. Introduction. Talking to Maple. Using [ENTER] 3 (2.1) Introduction Maple Quick Start In this introductory course, you will become familiar with and comfortable in the Maple environment. You will learn how to use context menus, task assistants, and palettes

More information

Microsoft PowerPoint 2011

Microsoft PowerPoint 2011 Microsoft PowerPoint 2011 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Adding an Image to a Slide... 4 Downloading Images

More information

version 3.0 tutorial - Turbulent mixing in a T-junction with CFDSTUDY in SALOME contact: saturne-support@edf.fr

version 3.0 tutorial - Turbulent mixing in a T-junction with CFDSTUDY in SALOME contact: saturne-support@edf.fr EDF R&D Fluid Dynamics, Power Generation and Environment Department Single Phase Thermal-Hydraulics Group 6, quai Watier F-78401 Chatou Cedex Tel: 33 1 30 87 75 40 Fax: 33 1 30 87 79 16 MAY 2013 documentation

More information

TABLE OF CONTENTS. INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE...

TABLE OF CONTENTS. INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE... Starting Guide TABLE OF CONTENTS INTRODUCTION... 5 Advance Concrete... 5 Where to find information?... 6 INSTALLATION... 7 STARTING ADVANCE CONCRETE... 7 ADVANCE CONCRETE USER INTERFACE... 7 Other important

More information

ParaView s Comparative Viewing, XY Plot, Spreadsheet View, Matrix View

ParaView s Comparative Viewing, XY Plot, Spreadsheet View, Matrix View ParaView s Comparative Viewing, XY Plot, Spreadsheet View, Matrix View Dublin, March 2013 Jean M. Favre, CSCS Motivational movie Supercomputing 2011 Movie Gallery Accepted at Supercomputing 11 Visualization

More information

Simulation of wireless ad-hoc sensor networks with QualNet

Simulation of wireless ad-hoc sensor networks with QualNet Advanced Seminar Embedded Systems 2008/2009 Simulation of wireless ad-hoc sensor networks with QualNet Documentation by Tobias Doerffel Chemnitz, April 9, 2009 Contents Contents 1 Introduction 3 1.1 The

More information

GeoGebra. 10 lessons. Gerrit Stols

GeoGebra. 10 lessons. Gerrit Stols GeoGebra in 10 lessons Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It was developed by Markus Hohenwarter

More information

OpenFOAM postprocessing and advanced running options

OpenFOAM postprocessing and advanced running options OpenFOAM postprocessing and advanced running options Tommaso Lucchini Department of Energy Politecnico di Milano The post processing tool: parafoam The main post-processing tool provided with OpenFOAM

More information

Activity: Using ArcGIS Explorer

Activity: Using ArcGIS Explorer Activity: Using ArcGIS Explorer Requirements You must have ArcGIS Explorer for this activity. Preparation: Download ArcGIS Explorer. The link below will bring you to the ESRI ArcGIS Explorer download page.

More information

Postprocessing with Python

Postprocessing with Python Postprocessing with Python Boris Dintrans (CNRS & University of Toulouse) dintrans@ast.obs-mip.fr Collaborator: Thomas Gastine (PhD) Outline Outline Introduction - what s Python and why using it? - Installation

More information

Exercise 0. Although Python(x,y) comes already with a great variety of scientic Python packages, we might have to install additional dependencies:

Exercise 0. Although Python(x,y) comes already with a great variety of scientic Python packages, we might have to install additional dependencies: Exercise 0 Deadline: None Computer Setup Windows Download Python(x,y) via http://code.google.com/p/pythonxy/wiki/downloads and install it. Make sure that before installation the installer does not complain

More information

0 Introduction to Data Analysis Using an Excel Spreadsheet

0 Introduction to Data Analysis Using an Excel Spreadsheet Experiment 0 Introduction to Data Analysis Using an Excel Spreadsheet I. Purpose The purpose of this introductory lab is to teach you a few basic things about how to use an EXCEL 2010 spreadsheet to do

More information

RVA: RESERVOIR VISUALIZATION AND ANALYSIS

RVA: RESERVOIR VISUALIZATION AND ANALYSIS RVA: RESERVOIR VISUALIZATION AND ANALYSIS USER MANUAL Beta 0.1.0 D. Keefer, D. Torridi, J. Duggirala Copyright 2011, University of Illinois at Urbana Champaign (UIUC). All Rights Reserved. 1 CONTENTS About...

More information

Edinburgh COLLEGE of ART ARCHITECTURE 3D Modelling in AutoCAD - tutorial exercise The screen The graphics area This is the part of the screen in which the drawing will be created. The command prompt area

More information

Microsoft PowerPoint 2010

Microsoft PowerPoint 2010 Microsoft PowerPoint 2010 Starting PowerPoint... 2 PowerPoint Window Properties... 2 The Ribbon... 3 Default Tabs... 3 Contextual Tabs... 3 Minimizing and Restoring the Ribbon... 4 The Backstage View...

More information

How is EnSight Uniquely Suited to FLOW-3D Data?

How is EnSight Uniquely Suited to FLOW-3D Data? How is EnSight Uniquely Suited to FLOW-3D Data? July 5, 2011 figure 1. FLOW-3D model of Dam visualized with EnSight If you would like to know how CEI s EnSight offers you more power than other postprocessors

More information

RAJALAKSHMI ENGINEERING COLLEGE MA 2161 UNIT I - ORDINARY DIFFERENTIAL EQUATIONS PART A

RAJALAKSHMI ENGINEERING COLLEGE MA 2161 UNIT I - ORDINARY DIFFERENTIAL EQUATIONS PART A RAJALAKSHMI ENGINEERING COLLEGE MA 26 UNIT I - ORDINARY DIFFERENTIAL EQUATIONS. Solve (D 2 + D 2)y = 0. 2. Solve (D 2 + 6D + 9)y = 0. PART A 3. Solve (D 4 + 4)x = 0 where D = d dt 4. Find Particular Integral:

More information

Microsoft Mathematics for Educators:

Microsoft Mathematics for Educators: Microsoft Mathematics for Educators: Familiarize yourself with the interface When you first open Microsoft Mathematics, you ll see the following elements displayed: 1. The Calculator Pad which includes

More information

Working With Animation: Introduction to Flash

Working With Animation: Introduction to Flash Working With Animation: Introduction to Flash With Adobe Flash, you can create artwork and animations that add motion and visual interest to your Web pages. Flash movies can be interactive users can click

More information

NaviCell Data Visualization Python API

NaviCell Data Visualization Python API NaviCell Data Visualization Python API Tutorial - Version 1.0 The NaviCell Data Visualization Python API is a Python module that let computational biologists write programs to interact with the molecular

More information

Understand the Sketcher workbench of CATIA V5.

Understand the Sketcher workbench of CATIA V5. Chapter 1 Drawing Sketches in Learning Objectives the Sketcher Workbench-I After completing this chapter you will be able to: Understand the Sketcher workbench of CATIA V5. Start a new file in the Part

More information

Customer Training Material. Shell Meshing Stamped Part ICEM CFD. ANSYS, Inc. Proprietary 2010 ANSYS, Inc. All rights reserved. WS3.

Customer Training Material. Shell Meshing Stamped Part ICEM CFD. ANSYS, Inc. Proprietary 2010 ANSYS, Inc. All rights reserved. WS3. Workshop 3.1 Shell Meshing Stamped Part Introduction to ANSYS ICEM CFD WS3.1-1 Create Project / Open Geometry File > New Project Enter the Stamping folder Type Stamped-mesh Save File > Geometry > Open

More information

Visualization of Adaptive Mesh Refinement Data with VisIt

Visualization of Adaptive Mesh Refinement Data with VisIt Visualization of Adaptive Mesh Refinement Data with VisIt Gunther H. Weber Lawrence Berkeley National Laboratory VisIt Richly featured visualization and analysis tool for large data sets Built for five

More information

Getting more out of Matplotlib with GR

Getting more out of Matplotlib with GR Member of the Helmholtz Association Getting more out of Matplotlib with GR July 20 th 26 th, 2015 Bilbao EuroPython 2015 Josef Heinen @josef_heinen Visualization needs visualize and analyzing two- and

More information

Visualisatie BMT. Introduction, visualization, visualization pipeline. Arjan Kok Huub van de Wetering (h.v.d.wetering@tue.nl)

Visualisatie BMT. Introduction, visualization, visualization pipeline. Arjan Kok Huub van de Wetering (h.v.d.wetering@tue.nl) Visualisatie BMT Introduction, visualization, visualization pipeline Arjan Kok Huub van de Wetering (h.v.d.wetering@tue.nl) 1 Lecture overview Goal Summary Study material What is visualization Examples

More information

GUIDE TO POST-PROCESSING OF THE POINT CLOUD

GUIDE TO POST-PROCESSING OF THE POINT CLOUD GUIDE TO POST-PROCESSING OF THE POINT CLOUD Contents Contents 3 Reconstructing the point cloud with MeshLab 16 Reconstructing the point cloud with CloudCompare 2 Reconstructing the point cloud with MeshLab

More information

http://school-maths.com Gerrit Stols

http://school-maths.com Gerrit Stols For more info and downloads go to: http://school-maths.com Gerrit Stols Acknowledgements GeoGebra is dynamic mathematics open source (free) software for learning and teaching mathematics in schools. It

More information

Microsoft PowerPoint 2008

Microsoft PowerPoint 2008 Microsoft PowerPoint 2008 Starting PowerPoint... 2 Creating Slides in Your Presentation... 3 Beginning with the Title Slide... 3 Inserting a New Slide... 3 Slide Layouts... 3 Adding an Image to a Slide...

More information

Scripted Operator Shoulder

Scripted Operator Shoulder Scripted Operator Shoulder by Josh Murtack, certified instructor from Vancouver Film School In this tutorial you will learn how to apply and edit scripted operators to create a shoulder rig that is both

More information

Applying a circular load. Immediate and consolidation settlement. Deformed contours. Query points and query lines. Graph query.

Applying a circular load. Immediate and consolidation settlement. Deformed contours. Query points and query lines. Graph query. Quick Start Tutorial 1-1 Quick Start Tutorial This quick start tutorial will cover some of the basic features of Settle3D. A circular load is applied to a single soil layer and settlements are examined.

More information

4VATARS PROJECT. Standard avatar specification for content creation in RealXtend

4VATARS PROJECT. Standard avatar specification for content creation in RealXtend 4VATARS PROJECT Standard avatar specification for content creation in RealXtend In partnership with the development team under opensource realxtend, the research program ENER of Ecole Nationale des Arts

More information

Using MuPAD and JavaView to Visualize Mathematics on the Internet

Using MuPAD and JavaView to Visualize Mathematics on the Internet Using MuPAD and JavaView to Visualize Mathematics on the Internet M. Majewski K. Polthier Zayed University, UAE Zuse Institute Berlin (ZIB) majewski@mupad.com polthier@zib.de Abstract Mathematics education

More information

Information Literacy Program

Information Literacy Program Information Literacy Program Excel (2013) Advanced Charts 2015 ANU Library anulib.anu.edu.au/training ilp@anu.edu.au Table of Contents Excel (2013) Advanced Charts Overview of charts... 1 Create a chart...

More information

CHAPTER 8, GEOMETRY. 4. A circular cylinder has a circumference of 33 in. Use 22 as the approximate value of π and find the radius of this cylinder.

CHAPTER 8, GEOMETRY. 4. A circular cylinder has a circumference of 33 in. Use 22 as the approximate value of π and find the radius of this cylinder. TEST A CHAPTER 8, GEOMETRY 1. A rectangular plot of ground is to be enclosed with 180 yd of fencing. If the plot is twice as long as it is wide, what are its dimensions? 2. A 4 cm by 6 cm rectangle has

More information

Norwegian Satellite Earth Observation Database for Marine and Polar Research http://normap.nersc.no USE CASES

Norwegian Satellite Earth Observation Database for Marine and Polar Research http://normap.nersc.no USE CASES Norwegian Satellite Earth Observation Database for Marine and Polar Research http://normap.nersc.no USE CASES The NORMAP Project team has prepared this document to present functionality of the NORMAP portal.

More information

KaleidaGraph Quick Start Guide

KaleidaGraph Quick Start Guide KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.

More information

Visualization of 2D Domains

Visualization of 2D Domains Visualization of 2D Domains This part of the visualization package is intended to supply a simple graphical interface for 2- dimensional finite element data structures. Furthermore, it is used as the low

More information

A QUICK OVERVIEW OF THE OMNeT++ IDE

A QUICK OVERVIEW OF THE OMNeT++ IDE Introduction A QUICK OVERVIEW OF THE OMNeT++ IDE The OMNeT++ 4.x Integrated Development Environment is based on the Eclipse platform, and extends it with new editors, views, wizards, and additional functionality.

More information

GR Framework / MODBUS on Raspberry Pi

GR Framework / MODBUS on Raspberry Pi Member of the Helmholtz Association GR Framework / MODBUS on Raspberry Pi May 4 5, 2013 PythonCamp 2013 Cologne Josef Heinen Part I: GR Framework on Raspberry Pi GR basic functionality Ø lines, marker

More information

Advanced visualization with VisNow platform Case study #2 3D scalar data visualization

Advanced visualization with VisNow platform Case study #2 3D scalar data visualization Advanced visualization with VisNow platform Case study #2 3D scalar data visualization This work is licensed under a Creative Commons Attribution- NonCommercial-NoDerivatives 4.0 International License.

More information

Plug-in Software Developer Kit (SDK)

Plug-in Software Developer Kit (SDK) Updated February 2, 2012 2 modo 601 Plug-in Development Kit for PC and Mac The modo 601 Plug-in Software Development Kit provides a set of Application Programming Interfaces (APIs) and numerous source

More information

Composite Surfaces Tutorial

Composite Surfaces Tutorial Composite Surfaces Tutorial 4-1 Composite Surfaces Tutorial This tutorial will use the same model as the Materials & Loading Tutorial (with some modifications), to demonstrate how to perform a circular

More information

Pro/ENGINEER Wildfire 4.0 Basic Design

Pro/ENGINEER Wildfire 4.0 Basic Design Introduction Datum features are non-solid features used during the construction of other features. The most common datum features include planes, axes, coordinate systems, and curves. Datum features do

More information

Getting Started with EnSight 10.0

Getting Started with EnSight 10.0 Getting Started with EnSight 10.0 Computational Engineering International, Inc. 2166 N. Salem Street, Suite 101, Apex, NC 27523 USA 919-363-0883 919-363-0833 FAX http://www.ceisoftware.com Copyright 1994-2012,

More information

CATIA V5 Tutorials. Mechanism Design & Animation. Release 18. Nader G. Zamani. University of Windsor. Jonathan M. Weaver. University of Detroit Mercy

CATIA V5 Tutorials. Mechanism Design & Animation. Release 18. Nader G. Zamani. University of Windsor. Jonathan M. Weaver. University of Detroit Mercy CATIA V5 Tutorials Mechanism Design & Animation Release 18 Nader G. Zamani University of Windsor Jonathan M. Weaver University of Detroit Mercy SDC PUBLICATIONS Schroff Development Corporation www.schroff.com

More information

Last lecture... Computer Graphics:

Last lecture... Computer Graphics: Last lecture... Computer Graphics: Visualisation can be greatly enhanced through the Introduction to the Visualisation use of 3D computer graphics Toolkit Visualisation Lecture 2 toby.breckon@ed.ac.uk

More information

Character Creation You can customize a character s look using Mixamo Fuse:

Character Creation You can customize a character s look using Mixamo Fuse: Using Mixamo Fuse, Mixamo, and 3ds Max, you can create animated characters for use with FlexSim. Character Creation You can customize a character s look using Mixamo Fuse: After creating the character,

More information

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine

Blender Notes. Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine Blender Notes Introduction to Digital Modelling and Animation in Design Blender Tutorial - week 9 The Game Engine The Blender Game Engine This week we will have an introduction to the Game Engine build

More information

Running and Scheduling QGIS Processing Jobs

Running and Scheduling QGIS Processing Jobs Running and Scheduling QGIS Processing Jobs QGIS Tutorials and Tips Author Ujaval Gandhi http://google.com/+ujavalgandhi Translations by Christina Dimitriadou Paliogiannis Konstantinos Tom Karagkounis

More information

Derive 5: The Easiest... Just Got Better!

Derive 5: The Easiest... Just Got Better! Liverpool John Moores University, 1-15 July 000 Derive 5: The Easiest... Just Got Better! Michel Beaudin École de Technologie Supérieure, Canada Email; mbeaudin@seg.etsmtl.ca 1. Introduction Engineering

More information

The following is an overview of lessons included in the tutorial.

The following is an overview of lessons included in the tutorial. Chapter 2 Tutorial Tutorial Introduction This tutorial is designed to introduce you to some of Surfer's basic features. After you have completed the tutorial, you should be able to begin creating your

More information

Introduction to Measurement Tools

Introduction to Measurement Tools Introduction to Measurement Tools Revu's built-in measurement tools make it easy to take length, area, perimeter, diameter, volume and radius measurements, count from PDFs and perform area cutouts. Compatibility

More information

Learning Module 4 - Thermal Fluid Analysis Note: LM4 is still in progress. This version contains only 3 tutorials.

Learning Module 4 - Thermal Fluid Analysis Note: LM4 is still in progress. This version contains only 3 tutorials. Learning Module 4 - Thermal Fluid Analysis Note: LM4 is still in progress. This version contains only 3 tutorials. Attachment C1. SolidWorks-Specific FEM Tutorial 1... 2 Attachment C2. SolidWorks-Specific

More information

Introduction to COMSOL. The Navier-Stokes Equations

Introduction to COMSOL. The Navier-Stokes Equations Flow Between Parallel Plates Modified from the COMSOL ChE Library module rev 10/13/08 Modified by Robert P. Hesketh, Chemical Engineering, Rowan University Fall 2008 Introduction to COMSOL The following

More information

Data Mining. SPSS Clementine 12.0. 1. Clementine Overview. Spring 2010 Instructor: Dr. Masoud Yaghini. Clementine

Data Mining. SPSS Clementine 12.0. 1. Clementine Overview. Spring 2010 Instructor: Dr. Masoud Yaghini. Clementine Data Mining SPSS 12.0 1. Overview Spring 2010 Instructor: Dr. Masoud Yaghini Introduction Types of Models Interface Projects References Outline Introduction Introduction Three of the common data mining

More information

PolyWorks V10 Beginner s Guide

PolyWorks V10 Beginner s Guide PolyWorks V10 Beginner s Guide February 2007 IMAlign IMEdit IMInspect IMMerge IMView InnovMetric Software Inc. 2014 Cyrille-Duquet, Suite 310 Québec, Québec, Canada, G1N 4N6 Tel.: (418) 688-2061 Fax: (418)

More information

James Ahrens, Berk Geveci, Charles Law. Technical Report

James Ahrens, Berk Geveci, Charles Law. Technical Report LA-UR-03-1560 Approved for public release; distribution is unlimited. Title: ParaView: An End-User Tool for Large Data Visualization Author(s): James Ahrens, Berk Geveci, Charles Law Submitted to: Technical

More information

MAKERBOT DESKTOP. All instructions in this tutorial are for use with a Flashforge Creator X (replicator single) using Makerbot Desktop.

MAKERBOT DESKTOP. All instructions in this tutorial are for use with a Flashforge Creator X (replicator single) using Makerbot Desktop. MAKERBOT DESKTOP All instructions in this tutorial are for use with a Flashforge Creator X (replicator single) using Makerbot Desktop. Download Software Download software fromhttps://www.makerbot.com/desktop

More information

Introduction to ANSYS ICEM CFD

Introduction to ANSYS ICEM CFD Workshop 8.2 3D Pipe Junction 14.5 Release Introduction to ANSYS ICEM CFD 2012 ANSYS, Inc. April 1, 2013 1 Release 14.5 3D Pipe Junction 3D Pipe Junction This is a simple 4-way pipe intersection with two

More information

Twelve. Figure 12.1: 3D Curved MPR Viewer Window

Twelve. Figure 12.1: 3D Curved MPR Viewer Window Twelve The 3D Curved MPR Viewer This Chapter describes how to visualize and reformat a 3D dataset in a Curved MPR plane: Curved Planar Reformation (CPR). The 3D Curved MPR Viewer is a window opened from

More information

SketchUp Instructions

SketchUp Instructions SketchUp Instructions Every architect needs to know how to use SketchUp! SketchUp is free from Google just Google it and download to your computer. You can do just about anything with it, but it is especially

More information

CLOUD DIGITISER 2014!

CLOUD DIGITISER 2014! CLOUD DIGITISER 2014 Interactive measurements of point cloud sequences July 2014 Cloud Digitiser Manual 1 CLOUD DIGITISER Interactive measurement of point clouds Bill Sellers July 2014 Introduction Photogrammetric

More information

Summary of important mathematical operations and formulas (from first tutorial):

Summary of important mathematical operations and formulas (from first tutorial): EXCEL Intermediate Tutorial Summary of important mathematical operations and formulas (from first tutorial): Operation Key Addition + Subtraction - Multiplication * Division / Exponential ^ To enter a

More information

Microsoft Excel 2010 Charts and Graphs

Microsoft Excel 2010 Charts and Graphs Microsoft Excel 2010 Charts and Graphs Email: training@health.ufl.edu Web Page: http://training.health.ufl.edu Microsoft Excel 2010: Charts and Graphs 2.0 hours Topics include data groupings; creating

More information

Signal Processing First Lab 01: Introduction to MATLAB. 3. Learn a little about advanced programming techniques for MATLAB, i.e., vectorization.

Signal Processing First Lab 01: Introduction to MATLAB. 3. Learn a little about advanced programming techniques for MATLAB, i.e., vectorization. Signal Processing First Lab 01: Introduction to MATLAB Pre-Lab and Warm-Up: You should read at least the Pre-Lab and Warm-up sections of this lab assignment and go over all exercises in the Pre-Lab section

More information

Nicolas P. Rougier PyConFr Conference 2014 Lyon, October 24 25

Nicolas P. Rougier PyConFr Conference 2014 Lyon, October 24 25 GRAPHICS AND ANIMATIONS IN PYTHON USING MATPLOTLIB AND OPENGL Nicolas P. Rougier PyConFr Conference 2014 Lyon, October 24 25 Graphics and Animations in Python Where do we start? A Bit of Context The Python

More information

GGobi meets R: an extensible environment for interactive dynamic data visualization

GGobi meets R: an extensible environment for interactive dynamic data visualization New URL: http://www.r-project.org/conferences/dsc-2001/ DSC 2001 Proceedings of the 2nd International Workshop on Distributed Statistical Computing March 15-17, Vienna, Austria http://www.ci.tuwien.ac.at/conferences/dsc-2001

More information

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES

INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES INSTRUCTIONS FOR MAKING 3D,.DWG CONTOUR LINES A TUTORIAL FROM SPATIAL AND NUMERIC DATA SERVICES NICOLE SCHOLTZ AND GEOFF IVERSON Overview... 2 A. Get a Digital Elevation Model (DEM)... 3 B. Open ArcMap,

More information

Building a Python Plugin

Building a Python Plugin Building a Python Plugin QGIS Tutorials and Tips Author Ujaval Gandhi http://google.com/+ujavalgandhi This work is licensed under a Creative Commons Attribution 4.0 International License. Building a Python

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Arena Tutorial 1. Installation STUDENT 2. Overall Features of Arena

Arena Tutorial 1. Installation STUDENT 2. Overall Features of Arena Arena Tutorial This Arena tutorial aims to provide a minimum but sufficient guide for a beginner to get started with Arena. For more details, the reader is referred to the Arena user s guide, which can

More information

User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool

User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool User s Guide The SimSphere Biosphere/Atmosphere Modeling Tool User s Guide Revision 11/1/00 Contents Introduction 3 1. SimSphere Modeling Tool Overview 4 System Requirements 4 Your User Status 4 Main Menu

More information