Preparing Figures in Matlab and L A TEX for Quality Publications

Size: px
Start display at page:

Download "Preparing Figures in Matlab and L A TEX for Quality Publications"

Transcription

1 Preparing Figures in Matlab and L A TEX for Quality Publications Azad Ghaffari Cymer Center for Control Systems and Dynamics - UC San Diego Second Edition, January 214

2 Image formats: Vector vs. Raster Raster graphics or bitmap Made up of individual pixels, resolution dependent Resizing reduces quality Minimal support for transparency Conversion to vector is difficult File types:.jpg,.gif,.tif, and.bmp Vector graphics or line art Created mathematically w/o the use of pixels High resolution Scalable to any size w/o pixelation or quality loss Conversion to raster is easy File types:.eps,.pdf,.ai, and.dxf Vector Raster

3 Figures in Matlab Handle Graphics is an object-oriented structure for creating, manipulating and displaying graphics Graphics objects: basic drawing elements used in Matlab to display graphs and GUI components Every graphics object: Unique identifier, called a handle Set of characteristics, called properties Possible to modify every single property using the command-line Objects organized into a hierarchy Root Figure UI Objects Axes Hidden Annotation Axes Core Objects Plot Objects Group Objects Annotation Objects

4 Avoid common mistakes Don t Use graphical commands with their default setting Export figures using the export menu function Modify figure properties using the mouse Use third party graphics editors where possible Do Use functions and scripts to generate plots: Reuseability Specify figure properties: Modifability Generate your figures using print command: Controllability

5 plot function Calling the plot function creates graphics objects: Figures: Windows that contain axes toolbars, menus, etc. Axes: Frames that contain graphs Lineseries plot objects: Representations of data passed to the plot function Text: Labels for axes tick marks, optional titles and annotations Main functions for working with objects gcf Handle of the current figure gca Handle of the current axis in the current figure get Query the values of an object s properties set Set the values of an object s properties delet Delete an object copyobj Copy graphics object

6 Example t = :.1:4*pi; y = sin(t); plot(t,y) xlabel( Time(s) ) ylabel( y(t) ) title( Sin function ) legend( y=sin(t) ) y(t) Sinusoidal function Time(s) y=sin(t) Save the plot as.eps Use L A TEX command \includegraphics[width=2.5in]{sin1} Problems: Huge difference between font size of the text and figure Axes are not proportional Figure is not informative to the audience!

7 Figure size What is the size of your presentation? For a beamer slide: width=5.4 in, length=3.78 in What is the desired figure size? Figurewidth=4in, figureheight=2in Runfigure command before drawing the plot figure( Units, inches,... Position,[xy width height],... PaperPositionMode, auto ); (x,y)=position of the lower left side of the figure

8 Figure size 1.5 Sinusoidal function y=sin(t) y(t) Time(s) Dimensions are corrected Correction needed: Font size and type Axes limits Legend and labels to appear in L ATEX format

9 Axes settings Commands right after runningplot axis([ t(end) ]) set(gca,... Units, normalized,... YTick,-1.5:.5:1.5,... XTick,:t(end)/4:t(end),... Position,[ ],... FontUnits, points,... FontWeight, normal,... FontSize,9,... FontName, Times ) Figure is exported to.eps

10 Axes setting Axes position, limits, font, and ticks locations are corrected y(t) Sinusoidal function y=sin(t) Time(s)

11 Labels and legend LATEX typesetting by settinginterpreter tolatex Labels can have different font sizes ylabel({ $y(t)$ },... FontUnits, points,... interpreter, latex,... FontSize,9,... FontName, Times ) xlabel( Time(s),... FontUnits, points,... FontWeight, normal,... FontSize,7,... FontName, Times )

12 Labels, legend, and L A TEX commands legend({ $y=\sin(t)$ },... FontUnits, points,... interpreter, latex,... FontSize,7,... FontName, Times,... Location, NorthEast ) title( Sinusoidalfunction,... FontUnits, points,... FontWeight, normal,... FontSize,7,... FontName, Times ) The figure is exported to.eps

13 Labels and legend Mathematical writing is corrected Figure has large white boundaries Fonts are not proportional to the values we want Sinusoidal function 2 y = sin(t) 1.5 y(t) Time(s)

14 How to save the plot Don t export the plot to.eps Useprint command to generate.eps files print -depsc2 myplot.eps Main vector formats -deps.eps black and white -depsc.eps color -deps2.eps level 2 black and white -depsc2.eps level 2 color -dpdf.pdf color file format

15 Exported.eps vs. printed.eps Exported.eps y(t) Sinusoidal function y = sin(t) Time(s) Printed.eps y(t) Sinusoidal function y = sin(t) Time(s)

16 Inserting.eps in L A TEX \includegraphics[options]{myplot} is useful to change the look of the.eps file Sinusoidal function 2 y(t) Time(s) 9.375

17 Ex (a) (Γ 11) 1 (b) (Γ 22) Time(s) (c) (Γ 12 ) 1 = (Γ 21 ) 1

18 Ex Step Down Newton Gradient Scalar 85 b D2(%) Step Up D 1 (%) a

19 Ex. 3 6 (a) (c) 6 Current(A) C C C (b) C 1 W/m W/m W/m 2 (d) 4 W/m 2 24 Power(W) Voltage(V) Voltage(V)

20 Ex. 4 PV module Power (W) ( C, 1. kw/m 2 ) (25 C, 1. kw/m 2 ) (5 C, 1. kw/m 2 ) (25 C,.8 kw/m 2 ) (25 C,.6 kw/m 2 ) (25 C,.4 kw/m 2 ) Vw = 7 m/s Vw = 9 m/s Vw = 11m/s Vw = 13 m/s Turbine power (kw) Voltage(V) Shaft speed (rad/s)

21 Ex Current(A) Power(W) Voltage(V) Voltage(V)

22 Ex Pt (kw) ES w/ inner control 4 ES w/o inner control P&O w/ FOC Pt Time (s)

23 Ex D2(%) D 1 (%)

24 Ex. 8 Turbine power, Pt (kw) Vw = 7 m/s Vw = 9 Vw = 11 Vw = 13 P t = C p P w Turbine speed, ω t (rad/s)

25 Export Simulink models (Not for publication) Change the orientation to portrait, landscape, or tall Open the model orient(gcs, portrait ) print the model to an.eps file specify the name of your Simulink model using the switch -s print -deps -r3 -s myfig.eps

26 Export Simulink models (Not for publication) Interpreted MATLAB Fcn yg(t) y_g y_g h_theta_g h_theta_g h_g_g s s+omega_h High pass 1 s K*u Fout Fin Interpreted MATLAB Fcn Sg(t) K_g Interpreted MATLAB Fcn Mg(t) Filter1 t y_n Interpreted MATLAB Fcn Interpreted MATLAB Fcn Sn(t) yn(t) Interpreted MATLAB Fcn Mn(t) h_g_n s s+omega_h y_n High pass1 1 s K*u Matrix Multiply Fout Fin -K_n Filter2 h_theta_n h_theta_n H h_h_n Interpreted MATLAB Fcn inv Gamma Riccati Sigma Fout Fin Filter3 Interpreted MATLAB Fcn N(t)

27 Diagrams in L A TEX Picture environment For mathematical drawings Very limited options Time consuming β = v/c = tanhχ χ u(k) x B (k) x C (k) y(k) H B (q) N[ ] H C (q)

28 Diagrams in L A TEX L A TEXCAD package Has a basic GUI Easy to use and very time saving Not precise, basic graphical elements with 3 different pen sizes Generates a L A TEX compatible.tex output S(t) θ ẋ = f(x,α(x,θ)) y = h(x) M(t) y s s+ω h ω l + K Λ z = y η s+ω s ΓĜ Ĝ l N(t) Ĥ ω l Σ Γ = ω r Γ ω r ΓĤΓ s+ω l

29 Diagrams in L A TEX L A TEXCAD package T 11,S 11 T 12,S 12 T 1n,S 1n I 1 PV 11 PV 12 PV 1n T 21,S 21 T 22,S 22 T 2n,S 2n PV 21 PV 22 PV 2n I 2 T m1,s m1 T m2,s m2 PV m1 + PV m2 V dc DC Bus T mn,s mn I m PV mn I dc

30 Diagrams in L A TEX L A TEXCAD package D Multivariable ES V dc I dc T 11,S 11 T 12,S 12 T 1n,S 1n I 1 PV 11 PV 12 PV 1n d 11 d 12 d 1n T 21,S 21 T 22,S 22 T 2n,S 2n I 2 PV 21 PV 22 PV 2n d 21 d 22 d 2n T m1,s m1 T m2,s m2 PV m1 + PV m2 T mn,s mn I m PV mn d m1 d m2 d mn V dc DC Bus I dc

31 Diagrams in L A TEX TikZ and PGF packages Many options and tools Very sophisticated Cover many types of diagrams Other useful extensions based on Tikz and PGF (T 1,S 1 ) I 1 Converter I o1 PV 1 V 1 V o1 Multivariable MPPT I (T 2,S 2 ) 2 PV 2 V 2 (Tn, Sn) In PVn Vn D 1 Converter I o2 D 2 Converter Dn Ion V o2 Von P = V dc I dc V dc I dc Inverter U inv I grid AC grid

32 Diagrams in L A TEX TikZ and PGF packages [(T 1,S 1 ),,(T n,s n )] T D S(t) D 1 DC/DC V 1 PV 1 P 1 D 2 DC/DC V 2 PV 2 P Dn DC/DC Vn PVn Pn P = V dc I dc M(t) High-pass filter + ˆD K s ΓĜ Ĝ Low-pass filter N(t) Γ = ργ ργĥγ Ĥ Low-pass filter

33 Diagrams in L A TEX TikZ and PGF packages SaA Output frequency = ωo SbA Input frequency = ωi Shaft and gearbox ScA Wind turbine B Matrix converter AC grid Wind speed = Vw Blade pitch angle = β Turbine speed = ωt Turbine inertia = Jt Ks Gearbox ratio = n Rotor inertia = J Generator IG Rotor frequency = ωr Pole pairs = p Rotor speed = ωr p vc vb va SaB SbB ScB SaC SbC ScC va vb vc N

34 Electrical circuits in L A TEX CrcuitTikZ package I1 IRF64 IL1 L1 LA 25-NP Io1 PV1 + C + V1 (T1, S1) I2 + PV2 V2 C 1 IR2127 IRF64 C 2 IL2 MUR22 L2 MUR22 IC1 rc1 LA 25-NP C2 IC2 Vo1 Io2 + Vo2 Electronic load + Vdc = 5V (T2, S2) IR2127 rc2 Idc PWM1 PWM2 ADC5 IL2 MPPT DS114 ADC6 ADC8 IC2 Vo2 ADC7 Vdc

35 How to convert L A TEX-produced figures into.eps Put figure in a separate L A TEX file Generate.dvi output using latex command Make sure figure fits in one page Convert.dvi to.eps using command line dvips -E figure.dvi-o figure.eps Open.eps file using ghostview and measure lower-left (Ax, Ay) and upper-right (Bx, By) coordinates Open.eps file using a text editor and look up %%BoundingBox: X1 Y1 X2 Y2 Replace X1 Y1 X2 Y2 with Ax Ay Bx By Command includegraphics with option clip prints only BoundingBox area on the output

36 References Damiano Varagnolo, How To Make Pretty Figures With Matlab, damiano/matlab/howtomakeprettyfigureswithmatlab.pdf Version 8, 21. Yair Moshe, Advanced Matlab Graphics and GUI, %2using%2Matlab.pdf November, 21. Richard E. Turner, Umesh Rajashekar Publication quality figures using Matlab, turner/teatalks/matlabfigs/matlabfig.pdf June, 211. Jeffrey D. Hein, Creating.eps figures using TikZ, April, 21.

Pulse Width Modulated (PWM) Drives. AC Drives Using PWM Techniques

Pulse Width Modulated (PWM) Drives. AC Drives Using PWM Techniques Drives AC Drives Using PWM Techniques Power Conversion Unit The block diagram below shows the power conversion unit in Pulse Width Modulated (PWM) drives. In this type of drive, a diode bridge rectifier

More information

Electrical Resonance

Electrical Resonance Electrical Resonance (R-L-C series circuit) APPARATUS 1. R-L-C Circuit board 2. Signal generator 3. Oscilloscope Tektronix TDS1002 with two sets of leads (see Introduction to the Oscilloscope ) INTRODUCTION

More information

Pulse Width Modulated (PWM)

Pulse Width Modulated (PWM) Control Technologies Manual PWM AC Drives Revision 1.0 Pulse Width Modulated (PWM) Figure 1.8 shows a block diagram of the power conversion unit in a PWM drive. In this type of drive, a diode bridge rectifier

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

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

R Graphics Cookbook. Chang O'REILLY. Winston. Tokyo. Beijing Cambridge. Farnham Koln Sebastopol

R Graphics Cookbook. Chang O'REILLY. Winston. Tokyo. Beijing Cambridge. Farnham Koln Sebastopol R Graphics Cookbook Winston Chang Beijing Cambridge Farnham Koln Sebastopol O'REILLY Tokyo Table of Contents Preface ix 1. R Basics 1 1.1. Installing a Package 1 1.2. Loading a Package 2 1.3. Loading a

More information

EDUMECH Mechatronic Instructional Systems. Ball on Beam System

EDUMECH Mechatronic Instructional Systems. Ball on Beam System EDUMECH Mechatronic Instructional Systems Ball on Beam System Product of Shandor Motion Systems Written by Robert Hirsch Ph.D. 998-9 All Rights Reserved. 999 Shandor Motion Systems, Ball on Beam Instructional

More information

Adobe Illustrator CS5 Part 1: Introduction to Illustrator

Adobe Illustrator CS5 Part 1: Introduction to Illustrator CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Adobe Illustrator CS5 Part 1: Introduction to Illustrator Summer 2011, Version 1.0 Table of Contents Introduction...2 Downloading

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

EE 402 RECITATION #13 REPORT

EE 402 RECITATION #13 REPORT MIDDLE EAST TECHNICAL UNIVERSITY EE 402 RECITATION #13 REPORT LEAD-LAG COMPENSATOR DESIGN F. Kağan İPEK Utku KIRAN Ç. Berkan Şahin 5/16/2013 Contents INTRODUCTION... 3 MODELLING... 3 OBTAINING PTF of OPEN

More information

MODELLING AND SIMULATION OF SVPWM INVERTER FED PERMANENT MAGNET BRUSHLESS DC MOTOR DRIVE

MODELLING AND SIMULATION OF SVPWM INVERTER FED PERMANENT MAGNET BRUSHLESS DC MOTOR DRIVE MODELLING AND SIMULATION OF SVPWM INVERTER FED PERMANENT MAGNET BRUSHLESS DC MOTOR DRIVE Devisree Sasi 1, Jisha Kuruvilla P Final Year M.Tech, Dept. of EEE, Mar Athanasius College of Engineering, Kothamangalam,

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

Power Electronics for Renewable Energy Integration into Hybrid AC/DC Microgrids Kai SUN Aug 27, 2015

Power Electronics for Renewable Energy Integration into Hybrid AC/DC Microgrids Kai SUN Aug 27, 2015 Power Electronics for Renewable Energy Integration into Hybrid AC/DC Microgrids Kai SUN Aug 27, 2015 厚 德 载 物 自 强 不 息 Dept. of Electrical Engineering Outlines Introduction Series-distributed Renewable Generation

More information

How long is the vector? >> length(x) >> d=size(x) % What are the entries in the matrix d?

How long is the vector? >> length(x) >> d=size(x) % What are the entries in the matrix d? MATLAB : A TUTORIAL 1. Creating vectors..................................... 2 2. Evaluating functions y = f(x), manipulating vectors. 4 3. Plotting............................................ 5 4. Miscellaneous

More information

Performance of 3-Phase 4-Wire Solid State Transformer under Imbalanced Loads

Performance of 3-Phase 4-Wire Solid State Transformer under Imbalanced Loads 1 Performance of 3-Phase 4-Wire Solid State Transformer under Imbalanced Loads Tao Yang, Ronan Meere, Orla Feely and Terence O'Donnell School of Electrical, Electronic and Communications Engineering University

More information

WIND TURBINE TECHNOLOGY

WIND TURBINE TECHNOLOGY Module 2.2-2 WIND TURBINE TECHNOLOGY Electrical System Gerhard J. Gerdes Workshop on Renewable Energies November 14-25, 2005 Nadi, Republic of the Fiji Islands Contents Module 2.2 Types of generator systems

More information

Beginner s Matlab Tutorial

Beginner s Matlab Tutorial Christopher Lum lum@u.washington.edu Introduction Beginner s Matlab Tutorial This document is designed to act as a tutorial for an individual who has had no prior experience with Matlab. For any questions

More information

Modelling, Simulation and Performance Analysis of A Variable Frequency Drive in Speed Control Of Induction Motor

Modelling, Simulation and Performance Analysis of A Variable Frequency Drive in Speed Control Of Induction Motor International Journal of Engineering Inventions e-issn: 78-7461, p-issn: 319-6491 Volume 3, Issue 5 (December 013) PP: 36-41 Modelling, Simulation and Performance Analysis of A Variable Frequency Drive

More information

KB COPY CENTRE. RM 2300 JCMB The King s Buildings West Mains Road Edinburgh EH9 3JZ. Telephone: 0131 6505001

KB COPY CENTRE. RM 2300 JCMB The King s Buildings West Mains Road Edinburgh EH9 3JZ. Telephone: 0131 6505001 KB COPY CENTRE RM 2300 JCMB The King s Buildings West Mains Road Edinburgh EH9 3JZ Telephone: 0131 6505001 Email: kbcopy@ed.ac.uk martin.byrne@ed.ac.uk colin.doherty@ed.ac.uk Step 1. Set up page orientation

More information

Renewable Energy Applications: Photovoltaic and Wind Energy Conversion Systems (WECS)

Renewable Energy Applications: Photovoltaic and Wind Energy Conversion Systems (WECS) Renewable Energy Applications: Photovoltaic and Wind Energy Conversion Systems (WECS) Josep Pou Antoni Arias Page 1 Outline 1. Renewable Energy Perspectives 2. Solar Photovoltaic (PV) 3. Wind Generation

More information

DCMS DC MOTOR SYSTEM User Manual

DCMS DC MOTOR SYSTEM User Manual DCMS DC MOTOR SYSTEM User Manual release 1.3 March 3, 2011 Disclaimer The developers of the DC Motor System (hardware and software) have used their best efforts in the development. The developers make

More information

MATLAB. Creating Graphical User Interfaces Version 6. The Language of Technical Computing. Computation. Visualization. Programming

MATLAB. Creating Graphical User Interfaces Version 6. The Language of Technical Computing. Computation. Visualization. Programming MATLAB The Language of Technical Computing Computation Visualization Programming Creating Graphical User Interfaces Version 6 How to Contact The MathWorks: www.mathworks.com comp.soft-sys.matlab support@mathworks.com

More information

NDSU Technology Learning & Media Center

NDSU Technology Learning & Media Center 1 NDSU Technology Learning & Media Center QBB 150C 231-5130 www.ndsu.edu/its/tlmc Creating a Large Format Poster (Plot) Using PowerPoint 2013 Posters should be designed and created in a manner that best

More information

Topography of an Origin Project and Workspace

Topography of an Origin Project and Workspace Origin Basics Topography of an Origin Project and Workspace When you start Origin, a new project opens displaying a worksheet window in the workspace. The worksheet is one type of window available in Origin.

More information

6.025J Medical Device Design Lecture 3: Analog-to-Digital Conversion Prof. Joel L. Dawson

6.025J Medical Device Design Lecture 3: Analog-to-Digital Conversion Prof. Joel L. Dawson Let s go back briefly to lecture 1, and look at where ADC s and DAC s fit into our overall picture. I m going in a little extra detail now since this is our eighth lecture on electronics and we are more

More information

GelAnalyzer 2010 User s manual. Contents

GelAnalyzer 2010 User s manual. Contents GelAnalyzer 2010 User s manual Contents 1. Starting GelAnalyzer... 2 2. The main window... 2 3. Create a new analysis... 2 4. The image window... 3 5. Lanes... 3 5.1 Detect lanes automatically... 3 5.2

More information

Links. Blog. Great Images for Papers and Presentations 5/24/2011. Overview. Find help for entire process Quick link Theses and Dissertations

Links. Blog. Great Images for Papers and Presentations 5/24/2011. Overview. Find help for entire process Quick link Theses and Dissertations Overview Great Images for Papers and Presentations May 26, 2011 Web Tips Definitions Using the Michigan Tech logo Photography 101 Great images from others Great images you create PDF conversion Final words

More information

Nuclear Science and Technology Division (94) Multigroup Cross Section and Cross Section Covariance Data Visualization with Javapeño

Nuclear Science and Technology Division (94) Multigroup Cross Section and Cross Section Covariance Data Visualization with Javapeño June 21, 2006 Summary Nuclear Science and Technology Division (94) Multigroup Cross Section and Cross Section Covariance Data Visualization with Javapeño Aaron M. Fleckenstein Oak Ridge Institute for Science

More information

7-41 POWER FACTOR CORRECTION

7-41 POWER FACTOR CORRECTION POWER FTOR CORRECTION INTRODUCTION Modern electronic equipment can create noise that will cause problems with other equipment on the same supply system. To reduce system disturbances it is therefore essential

More information

Design Considerations for an LLC Resonant Converter

Design Considerations for an LLC Resonant Converter Design Considerations for an LLC Resonant Converter Hangseok Choi Power Conversion Team www.fairchildsemi.com 1. Introduction Growing demand for higher power density and low profile in power converter

More information

User s Guide to ArcView 3.3 for Land Use Planners in Puttalam District

User s Guide to ArcView 3.3 for Land Use Planners in Puttalam District User s Guide to ArcView 3.3 for Land Use Planners in Puttalam District Dilhari Weragodatenna IUCN Sri Lanka, Country Office Table of Content Page No Introduction...... 1 1. Getting started..... 2 2. Geo-referencing...

More information

Scicos is a Scilab toolbox included in the Scilab package. The Scicos editor can be opened by the scicos command

Scicos is a Scilab toolbox included in the Scilab package. The Scicos editor can be opened by the scicos command 7 Getting Started 7.1 Construction of a Simple Diagram Scicos contains a graphical editor that can be used to construct block diagram models of dynamical systems. The blocks can come from various palettes

More information

Understanding Poles and Zeros

Understanding Poles and Zeros MASSACHUSETTS INSTITUTE OF TECHNOLOGY DEPARTMENT OF MECHANICAL ENGINEERING 2.14 Analysis and Design of Feedback Control Systems Understanding Poles and Zeros 1 System Poles and Zeros The transfer function

More information

Tutorial 2: Using Excel in Data Analysis

Tutorial 2: Using Excel in Data Analysis Tutorial 2: Using Excel in Data Analysis This tutorial guide addresses several issues particularly relevant in the context of the level 1 Physics lab sessions at Durham: organising your work sheet neatly,

More information

MATLAB Workshop 14 - Plotting Data in MATLAB

MATLAB Workshop 14 - Plotting Data in MATLAB MATLAB: Workshop 14 - Plotting Data in MATLAB page 1 MATLAB Workshop 14 - Plotting Data in MATLAB Objectives: Learn the basics of displaying a data plot in MATLAB. MATLAB Features: graphics commands Command

More information

Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint

Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint Instructions for Creating a Poster for Arts and Humanities Research Day Using PowerPoint While it is, of course, possible to create a Research Day poster using a graphics editing programme such as Adobe

More information

American Mathematical Society. Naming Files File names should be no longer than 20 characters, including an extension.

American Mathematical Society. Naming Files File names should be no longer than 20 characters, including an extension. MS merican Mathematical Society reating Graphics for use in books and journals Table of ontents with bbreviated Guidelines (lick on the arrow for detailed instructions.) File Format The preferred file

More information

Drivetech, Inc. Innovations in Motor Control, Drives, and Power Electronics

Drivetech, Inc. Innovations in Motor Control, Drives, and Power Electronics Drivetech, Inc. Innovations in Motor Control, Drives, and Power Electronics Dal Y. Ohm, Ph.D. - President 25492 Carrington Drive, South Riding, Virginia 20152 Ph: (703) 327-2797 Fax: (703) 327-2747 ohm@drivetechinc.com

More information

FRENIC5000MS5 for Machine Tool Spindle Drives

FRENIC5000MS5 for Machine Tool Spindle Drives FRENIC5MS5 for Machine Tool Spindle Drives Yoshikazu Tanaka Hiroaki Hayashi Hiroshi Takahashi 1. Introduction Fig.1 External view of FRENIC5MS5 In AC spindle drive systems for machine tools, operation

More information

Equipment: Power Supply, DAI, Transformer (8341), Variable resistance (8311), Variable inductance (8321), Variable capacitance (8331)

Equipment: Power Supply, DAI, Transformer (8341), Variable resistance (8311), Variable inductance (8321), Variable capacitance (8331) Lab 5: Single-phase transformer operations. Objective: to examine the design of single-phase transformers; to study the voltage and current ratios of transformers; to study the voltage regulation of the

More information

dspace DSP DS-1104 based State Observer Design for Position Control of DC Servo Motor

dspace DSP DS-1104 based State Observer Design for Position Control of DC Servo Motor dspace DSP DS-1104 based State Observer Design for Position Control of DC Servo Motor Jaswandi Sawant, Divyesh Ginoya Department of Instrumentation and control, College of Engineering, Pune. ABSTRACT This

More information

Figure 1. An embedded chart on a worksheet.

Figure 1. An embedded chart on a worksheet. 8. Excel Charts and Analysis ToolPak Charts, also known as graphs, have been an integral part of spreadsheets since the early days of Lotus 1-2-3. Charting features have improved significantly over the

More information

Periodontology. Digital Art Guidelines JOURNAL OF. Monochrome Combination Halftones (grayscale or color images with text and/or line art)

Periodontology. Digital Art Guidelines JOURNAL OF. Monochrome Combination Halftones (grayscale or color images with text and/or line art) JOURNAL OF Periodontology Digital Art Guidelines In order to meet the Journal of Periodontology s quality standards for publication, it is important that authors submit digital art that conforms to the

More information

What is new in WiseImage

What is new in WiseImage Additional RAM support for 64-bit OS Now WiseImage installed on Windows 64-bit is able to use up to 3.5 3.7 GB of RAM, whereas the previous versions of WiseImage could not use more than 1.5 GB of RAM.

More information

ACE: Illustrator CC Exam Guide

ACE: Illustrator CC Exam Guide Adobe Training Services Exam Guide ACE: Illustrator CC Exam Guide Adobe Training Services provides this exam guide to help prepare partners, customers, and consultants who are actively seeking accreditation

More information

Fixplot Instruction Manual. (data plotting program)

Fixplot Instruction Manual. (data plotting program) Fixplot Instruction Manual (data plotting program) MANUAL VERSION2 2004 1 1. Introduction The Fixplot program is a component program of Eyenal that allows the user to plot eye position data collected with

More information

SOLID MECHANICS TUTORIAL MECHANISMS KINEMATICS - VELOCITY AND ACCELERATION DIAGRAMS

SOLID MECHANICS TUTORIAL MECHANISMS KINEMATICS - VELOCITY AND ACCELERATION DIAGRAMS SOLID MECHANICS TUTORIAL MECHANISMS KINEMATICS - VELOCITY AND ACCELERATION DIAGRAMS This work covers elements of the syllabus for the Engineering Council exams C105 Mechanical and Structural Engineering

More information

Hybrid Wind-Fuel Cell Renewable Energy Utilization Scheme for Village Electricity

Hybrid Wind-Fuel Cell Renewable Energy Utilization Scheme for Village Electricity Proceedings of the 4 th International Middle East Power Systems Conference (MEPCON 0), Cairo University, Egypt, December 9-, 00, Paper ID 3. Hybrid Wind-Fuel Cell Renewable Energy Utilization Scheme for

More information

Modeling Grid Connection for Solar and Wind Energy

Modeling Grid Connection for Solar and Wind Energy 1 Modeling Grid Connection for Solar and Wind Energy P. J. van Duijsen, Simulation Research, The Netherlands Frank Chen, Pitotech, Taiwan Abstract Modeling of grid connected converters for solar and wind

More information

GUIDELINES FOR PREPARING POSTERS USING POWERPOINT PRESENTATION SOFTWARE

GUIDELINES FOR PREPARING POSTERS USING POWERPOINT PRESENTATION SOFTWARE Society for the Teaching of Psychology (APA Division 2) OFFICE OF TEACHING RESOURCES IN PSYCHOLOGY (OTRP) Department of Psychology, Georgia Southern University, P. O. Box 8041, Statesboro, GA 30460-8041

More information

Printing Guide. MapInfo Pro Version 15.0. Contents:

Printing Guide. MapInfo Pro Version 15.0. Contents: MapInfo Pro Version 15.0 The purpose of this guide is to assist you in getting the best possible output from your MapInfo Pro software. We begin by covering the new print, import, and export features and

More information

Microsoft Excel Basics

Microsoft Excel Basics COMMUNITY TECHNICAL SUPPORT Microsoft Excel Basics Introduction to Excel Click on the program icon in Launcher or the Microsoft Office Shortcut Bar. A worksheet is a grid, made up of columns, which are

More information

MATLAB Control System Toolbox Root Locus Design GUI

MATLAB Control System Toolbox Root Locus Design GUI MATLAB Control System Toolbox Root Locus Design GUI MATLAB Control System Toolbox contains two Root Locus design GUI, sisotool and rltool. These are two interactive design tools for the analysis and design

More information

EDEXCEL NATIONAL CERTIFICATE/DIPLOMA UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES NQF LEVEL 3 OUTCOME 4 - ALTERNATING CURRENT

EDEXCEL NATIONAL CERTIFICATE/DIPLOMA UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES NQF LEVEL 3 OUTCOME 4 - ALTERNATING CURRENT EDEXCEL NATIONAL CERTIFICATE/DIPLOMA UNIT 5 - ELECTRICAL AND ELECTRONIC PRINCIPLES NQF LEVEL 3 OUTCOME 4 - ALTERNATING CURRENT 4 Understand single-phase alternating current (ac) theory Single phase AC

More information

Lab 1: Introduction to PSpice

Lab 1: Introduction to PSpice Lab 1: Introduction to PSpice Objectives A primary purpose of this lab is for you to become familiar with the use of PSpice and to learn to use it to assist you in the analysis of circuits. The software

More information

CONVENTIONALLY reduced order models are being

CONVENTIONALLY reduced order models are being Co-Simulation of an Electric Traction Drive Christoph Schulte and Joachim Böcker Abstract For the simulation of electrical drives, reducedorder models or simple look-up tables are often used in order to

More information

This activity will show you how to draw graphs of algebraic functions in Excel.

This activity will show you how to draw graphs of algebraic functions in Excel. This activity will show you how to draw graphs of algebraic functions in Excel. Open a new Excel workbook. This is Excel in Office 2007. You may not have used this version before but it is very much the

More information

Sensorless Field Oriented Control (FOC) for Permanent Magnet Synchronous Motors (PMSM)

Sensorless Field Oriented Control (FOC) for Permanent Magnet Synchronous Motors (PMSM) ensorless Field Oriented Control (FOC) for Permanent Magnet ynchronous Motors (PMM) 2007 Microchip Technology Incorporated. All Rights Reserved. ensorless FOC for PMM lide 1 Welcome to the ensorless Field

More information

So you say you want something printed...

So you say you want something printed... So you say you want something printed... Well, that s great! You ve come to the right place. Whether you re having us design and edit your work, or you fancy yourself a designer and plan to hand over your

More information

MapInfo Professional Version 12.5. Printing Guide

MapInfo Professional Version 12.5. Printing Guide MapInfo Professional Version 12.5 Printing Guide The purpose of this guide is to assist you in getting the best possible output from your MapInfo Professional software. We begin by covering the new print,

More information

Business Objects Version 5 : Introduction

Business Objects Version 5 : Introduction Business Objects Version 5 : Introduction Page 1 TABLE OF CONTENTS Introduction About Business Objects Changing Your Password Retrieving Pre-Defined Reports Formatting Your Report Using the Slice and Dice

More information

DATASTREAM CHARTING ADVANCED FEATURES

DATASTREAM CHARTING ADVANCED FEATURES DATASTREAM DATASTREAM CHARTING ADVANCED FEATURES Thomson Reuters Training Creating and customizing complex charts is easy with Datastream Charting. The full breadth and depth of Datastream s vast database

More information

Analog signals are those which are naturally occurring. Any analog signal can be converted to a digital signal.

Analog signals are those which are naturally occurring. Any analog signal can be converted to a digital signal. 3.3 Analog to Digital Conversion (ADC) Analog signals are those which are naturally occurring. Any analog signal can be converted to a digital signal. 1 3.3 Analog to Digital Conversion (ADC) WCB/McGraw-Hill

More information

Linear algebra and the geometry of quadratic equations. Similarity transformations and orthogonal matrices

Linear algebra and the geometry of quadratic equations. Similarity transformations and orthogonal matrices MATH 30 Differential Equations Spring 006 Linear algebra and the geometry of quadratic equations Similarity transformations and orthogonal matrices First, some things to recall from linear algebra Two

More information

Charts for SharePoint

Charts for SharePoint KWizCom Corporation Charts for SharePoint Admin Guide Copyright 2005-2015 KWizCom Corporation. All rights reserved. Company Headquarters 95 Mural Street, Suite 600 Richmond Hill, ON L4B 3G2 Canada E-mail:

More information

Transient analysis of integrated solar/diesel hybrid power system using MATLAB Simulink

Transient analysis of integrated solar/diesel hybrid power system using MATLAB Simulink Transient analysis of integrated solar/diesel hybrid power system using ATLAB Simulink Takyin Taky Chan School of Electrical Engineering Victoria University PO Box 14428 C, elbourne 81, Australia. Taky.Chan@vu.edu.au

More information

Custom Reporting System User Guide

Custom Reporting System User Guide Citibank Custom Reporting System User Guide April 2012 Version 8.1.1 Transaction Services Citibank Custom Reporting System User Guide Table of Contents Table of Contents User Guide Overview...2 Subscribe

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

Manufacturing Equipment Modeling

Manufacturing Equipment Modeling QUESTION 1 For a linear axis actuated by an electric motor complete the following: a. Derive a differential equation for the linear axis velocity assuming viscous friction acts on the DC motor shaft, leadscrew,

More information

Interactive Voting System. www.ivsystem.nl. IVS-Basic IVS-Professional 4.4

Interactive Voting System. www.ivsystem.nl. IVS-Basic IVS-Professional 4.4 Interactive Voting System www.ivsystem.nl IVS-Basic IVS-Professional 4.4 Manual IVS-Basic 4.4 IVS-Professional 4.4 1213 Interactive Voting System The Interactive Voting System (IVS ) is an interactive

More information

LAMBDA CONSULTING GROUP Legendary Academy of Management & Business Development Advisories

LAMBDA CONSULTING GROUP Legendary Academy of Management & Business Development Advisories Curriculum # 05 Four Months Certification Program WEB DESIGNING & DEVELOPMENT LAMBDA CONSULTING GROUP Legendary Academy of Management & Business Development Advisories The duration of The Course is Four

More information

Coordination Control of a Hybrid AC/DC Microgrid With Various Renewable Energy Sources

Coordination Control of a Hybrid AC/DC Microgrid With Various Renewable Energy Sources Coordination Control of a Hybrid AC/DC Microgrid With Various Renewable Energy Sources 1 Hema Surya Teja Beram, 2 Nandigam Rama Narayana 1,2 Dept. of EEE, Sir C R Reddy College of Engineering, Eluru, AP,

More information

Graphic Design. Background: The part of an artwork that appears to be farthest from the viewer, or in the distance of the scene.

Graphic Design. Background: The part of an artwork that appears to be farthest from the viewer, or in the distance of the scene. Graphic Design Active Layer- When you create multi layers for your images the active layer, or the only one that will be affected by your actions, is the one with a blue background in your layers palette.

More information

Principles of Adjustable Frequency Drives

Principles of Adjustable Frequency Drives What is an Adjustable Frequency Drive? An adjustable frequency drive is a system for controlling the speed of an AC motor by controlling the frequency of the power supplied to the motor. A basic adjustable

More information

Analysis of System Performance IN2072 Chapter M Matlab Tutorial

Analysis of System Performance IN2072 Chapter M Matlab Tutorial Chair for Network Architectures and Services Prof. Carle Department of Computer Science TU München Analysis of System Performance IN2072 Chapter M Matlab Tutorial Dr. Alexander Klein Prof. Dr.-Ing. Georg

More information

A series Metric (cm) Imperial (inch)

A series Metric (cm) Imperial (inch) Poster Creation PowerPoint for Posters PowerPoint is well known as a presentation support application. However, it can also be used to create academic posters as it is a format that many people are already

More information

Power Electronics. Prof. K. Gopakumar. Centre for Electronics Design and Technology. Indian Institute of Science, Bangalore.

Power Electronics. Prof. K. Gopakumar. Centre for Electronics Design and Technology. Indian Institute of Science, Bangalore. Power Electronics Prof. K. Gopakumar Centre for Electronics Design and Technology Indian Institute of Science, Bangalore Lecture - 1 Electric Drive Today, we will start with the topic on industrial drive

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

Modeling and Control for Smart Grid Integration with MPPT of Solar/Wind Energy Conversion System S. Sathish Kumar 1, B.Swapna 2, Dr.C.

Modeling and Control for Smart Grid Integration with MPPT of Solar/Wind Energy Conversion System S. Sathish Kumar 1, B.Swapna 2, Dr.C. Modeling and Control for Smart Grid Integration with MPPT of Solar/Wind Energy Conversion System S. Sathish Kumar 1, B.Swapna 2, Dr.C.Nagarajan 3 Research Scholar, GRT Institute of Engineering & Technology,

More information

Figure 1: Multiple unsynchronized snapshots of the same sinusoidal signal.

Figure 1: Multiple unsynchronized snapshots of the same sinusoidal signal. 1 Oscilloscope Guide Introduction An oscilloscope is a device used to observe and measure time-dependent electronic signals. It is essentially an enhanced voltmeter which displays a graph of potential

More information

ε: Voltage output of Signal Generator (also called the Source voltage or Applied

ε: Voltage output of Signal Generator (also called the Source voltage or Applied Experiment #10: LR & RC Circuits Frequency Response EQUIPMENT NEEDED Science Workshop Interface Power Amplifier (2) Voltage Sensor graph paper (optional) (3) Patch Cords Decade resistor, capacitor, and

More information

CATIA Drafting TABLE OF CONTENTS

CATIA Drafting TABLE OF CONTENTS TABLE OF CONTENTS Introduction...1 Drafting...2 Drawing Screen...3 Pull-down Menus...4 File...4 Edit...5 View...6 Insert...7 Tools...8 Drafting Workbench...9 Views and Sheets...9 Dimensions and Annotations...10

More information

New Pulse Width Modulation Technique for Three Phase Induction Motor Drive Umesha K L, Sri Harsha J, Capt. L. Sanjeev Kumar

New Pulse Width Modulation Technique for Three Phase Induction Motor Drive Umesha K L, Sri Harsha J, Capt. L. Sanjeev Kumar New Pulse Width Modulation Technique for Three Phase Induction Motor Drive Umesha K L, Sri Harsha J, Capt. L. Sanjeev Kumar Abstract In this paper, various types of speed control methods for the three

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

Visualizing Data: Scalable Interactivity

Visualizing Data: Scalable Interactivity Visualizing Data: Scalable Interactivity The best data visualizations illustrate hidden information and structure contained in a data set. As access to large data sets has grown, so has the need for interactive

More information

Polynomial Neural Network Discovery Client User Guide

Polynomial Neural Network Discovery Client User Guide Polynomial Neural Network Discovery Client User Guide Version 1.3 Table of contents Table of contents...2 1. Introduction...3 1.1 Overview...3 1.2 PNN algorithm principles...3 1.3 Additional criteria...3

More information

AN ULTRA-CHEAP GRID CONNECTED INVERTER FOR SMALL SCALE GRID CONNECTION

AN ULTRA-CHEAP GRID CONNECTED INVERTER FOR SMALL SCALE GRID CONNECTION AN ULTRA-CHEAP GRID CONNECTED INVERTER FOR SMALL SCALE GRID CONNECTION Pramod Ghimire 1, Dr. Alan R. Wood 2 1 ME Candidate Email: pgh56@student.canterbury.ac.nz 2 Senior Lecturer: Canterbury University

More information

Creating a PowerPoint Poster using Windows

Creating a PowerPoint Poster using Windows Creating a PowerPoint Poster using Windows Copyright 2001 Michael Dougherty (michael@nmsu.edu) Purpose The purpose of this tutorial is to illustrate how to create a 3 x 4 ft. poster using PowerPoint. This

More information

Paladin DesignBase Toolbar Functions

Paladin DesignBase Toolbar Functions Paladin DesignBase Toolbar Functions Power Analytics Corporation 10805 Rancho Bernardo Road, Suite 270 San Diego, California 92127 U.S.A. U.S. Toll Free Phone: 800-362-0603 Fax: 858-675-9724 www.poweranalytics.com

More information

jorge s. marques image processing

jorge s. marques image processing image processing images images: what are they? what is shown in this image? What is this? what is an image images describe the evolution of physical variables (intensity, color, reflectance, condutivity)

More information

Section 1.1. Introduction to R n

Section 1.1. Introduction to R n The Calculus of Functions of Several Variables Section. Introduction to R n Calculus is the study of functional relationships and how related quantities change with each other. In your first exposure to

More information

Frequency Response of FIR Filters

Frequency Response of FIR Filters Frequency Response of FIR Filters Chapter 6 This chapter continues the study of FIR filters from Chapter 5, but the emphasis is frequency response, which relates to how the filter responds to an input

More information

Preparing graphics for IOP journals

Preparing graphics for IOP journals Please note that these guidelines do not apply to journals of the American Astronomical Society. Guidelines for these journals are available online. Preparing graphics for IOP journals IOP Publishing,

More information

Introduction to Complex Numbers in Physics/Engineering

Introduction to Complex Numbers in Physics/Engineering Introduction to Complex Numbers in Physics/Engineering ference: Mary L. Boas, Mathematical Methods in the Physical Sciences Chapter 2 & 14 George Arfken, Mathematical Methods for Physicists Chapter 6 The

More information

chapter Introduction to Digital Signal Processing and Digital Filtering 1.1 Introduction 1.2 Historical Perspective

chapter Introduction to Digital Signal Processing and Digital Filtering 1.1 Introduction 1.2 Historical Perspective Introduction to Digital Signal Processing and Digital Filtering chapter 1 Introduction to Digital Signal Processing and Digital Filtering 1.1 Introduction Digital signal processing (DSP) refers to anything

More information

Basic Excel Handbook

Basic Excel Handbook 2 5 2 7 1 1 0 4 3 9 8 1 Basic Excel Handbook Version 3.6 May 6, 2008 Contents Contents... 1 Part I: Background Information...3 About This Handbook... 4 Excel Terminology... 5 Excel Terminology (cont.)...

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

ABB PV + Storage REACT-3.6/4.6-TL 3.6 to 4.6 kw

ABB PV + Storage REACT-3.6/4.6-TL 3.6 to 4.6 kw Solar inverters ABB PV + Storage REACT-3.6/4.6-TL 3.6 to 4.6 kw PV energy, combined with energy storage systems, can help increase self-consumption and energy selfsufficiency*. One of the biggest challenges

More information

Formulas, Functions and Charts

Formulas, Functions and Charts Formulas, Functions and Charts :: 167 8 Formulas, Functions and Charts 8.1 INTRODUCTION In this leson you can enter formula and functions and perform mathematical calcualtions. You will also be able to

More information

How to build text and objects in the Titler

How to build text and objects in the Titler How to build text and objects in the Titler You can use the Titler in Adobe Premiere Pro to create text and geometric objects. There are three methods for creating text, each capable of producing either

More information