MTEX A MATLAB Toolbox Tutorial Texture Analysis

Size: px
Start display at page:

Download "MTEX A MATLAB Toolbox Tutorial Texture Analysis"

Transcription

1 MTEX A MATLAB Toolbox Tutorial Texture Analysis Ana María Fernández Blanco IMDEA Materials, Madrid 1. INTRODUCTION The MATLAB toolbox MTEX provides a unique way to represent, analyze and interpret crystallographic preferred orientation, i.e. texture, based on integral ( pole figure ) or individual orientation ( EBSD ) measurements. In particular, MTEX comprises functions to import, analyze and visualize diffraction pole figure data as well as EBSD data, to estimate an orientation density function from either kind of data, to compute texture characteristics, to model orientation density functions in terms of model functions or Fourier coefficients, to simulate pole figure or EBSD data, to create publication ready plots, to write scripts for multiple use, and others. Thus MTEX is a versatile free and open-source software toolbox for texture analysis and modeling. [1] 2. REQUIREMENTS 1. MTEX requires MATLAB version 7.1 or higher. It should also work fine on student versions. 2. Download the archive file mtex-3.1.zip from the web page The MTEX toolbox is available for Windows, Linux and MAC-OSX 3. Installation: you should proceed as follows: a. extract MTEX to an arbitrary folder b. start MATLAB c. navigate to the MTEX folder d. type startup_mtex 1

2 3. PROCEDURE Texture measurement in the X-ray laboratory Files data (Incomplete Pole Figures) from the laboratory of X-Ray MTEX Calculation of the ODF (complete information) Calculation of the Final Pole Figures 3.1. Import measured pole figures MTEX allows to create a Pole Figure object from data files containing diffraction data (note these files are the corrected data exported from the X-Ray diffractometer machine). Some formats are currently supported by MTEX, but.txt obtained from Philips difractometer (used at the Facultad de Químicas at the Universidad Complutense de Madrid ) is the most common interface (file type). The main steps in order to represent the Pole Figures are as follows: NOTE: In this tutorial, we will be using the Magnesium alloy AZ31 (Hexagonal Closed Packed metal) 2

3 1. The main way of getting any kind of experimental data into MTEX is the import wizard. 2. You can see the following window when you click the option import pole figure data in the Command Window of MATLAB. 3

4 3. Click the option add data files and you select your pole figure data (files.txt). 4. Click Open. 5. Click next. 4

5 6. Now, you should define the Crystal Geometry depending of your samples. MTEX has some data of the most common metals and defines automatically the crystal geometry (this is with the option Load Cif File ). However, if the parameters are different, you should insert them. Let s load the Magnesium material file and press Open button Click next. 8. In this step you should define the Specimen Geometry, mainly the Symmetry of the specimen. The rest of the options you can play with them (they are plotting conventions). 5

6 9. Click next. 10. Here, you can see the corresponding pole figure data and MTEX normally gives the Miller Indices. 11. Click next. 6

7 12. This window is the last! It is a summary of Pole Figure data has been imported. Choose the option script (m-file) and default in order to analyze the data according to the needs of each one. 13. Click finish. 14. The script is automatically generated. Now, we will work with that. 15. The screen should appear as follows: 7

8 3.2. Pole Figure representation In this section we will work with the script (m-file) generated in order to visualize and to represent the pole figures. As soon as you press the run button, if all is ok, a computation will start and the progressive output will be visible in the new window. Click run 8

9 The script contains different parts: Specify Crystal and Specimen Symetries, Specify File Names, etc. In the section Plot Calculated Pole Figures is where the command line necessary to execute the plot of the pole figures plotpdf (odf, h) is written. When you press the run button, a window will appear showing the result of the computation. As the computation is finished we will see the corresponding plots (pole figures). Note that you can modify the representation of the texture. Next, we will explain some plotting options in order to obtain the representation according to the needs of each one. 9

10 Plotting options: Notice that all modifications listed here must be made in the section of the script Plot Calculated Pole Figure. 1. Antipodal option The pole figures are a superposition of the northern and the southern hemisphere (since antipodal directions are associated). In order to plot pole figures as a superposition of the northern and southern hemisphere one has to enforce antipodal symmetry. This is done by the option antipodal. plotpdf(odf, h, antipodal ) ; 2. Remove min & max If you do not want to appear the minimum and maximum in the figures you should write the following line: plotpdf(odf, h, antipodal, minmax, off ) ; 10

11 3. Set plotting scale This option allows plotting all the pole figures with the same intensity scale (setcolorrange) and you can add the colorbar. You should write two lines in the following order: plotpdf(odf, h, antipodal, minmax, off ) ; setcolorrange( equal, all ) ; colorbar 11

12 Note that if you write in the setcolorrange option ( equal, all ) means that all pole figures have the same intensity scale. However, if you need to have a different range of scale because, for example you should compare different pole figures in other conditions, you should replace equal by [0, to whatever you want ]. plotpdf(odf, h, antipodal, minmax, off ) ; setcolorrange([0, 20], all ) ; colorbar Also, if you prefer to have the colorbar under the plot, you should write: colorbar( south ); 4. Annotations You can include specimen or crystal directions using the command annotate: plotpdf(odf, h, antipodal, minmax, off ) ; annotate([xvector, yvector, zvector], label, { x, y, z }, BackgroundColor, w ) ; setcolorrange( equal, all ) ; colorbar 12

13 5. Plot types Grayscale: plotpdf(odf, h, antipodal, minmax, off, gray ) ; setcolorrange( equal, all ) ; colorbar Contours: plotpdf(odf, h, antipodal, minmax, off, contourf ) ; setcolorrange( equal, all ) ; colorbar 13

14 Other option is: plotpdf(odf, h, antipodal, minmax, off, contour, 0:1:16) ; % the numbers mean that the contours go from 0 to 16 (step = 1). setcolorrange( equal, all ) ; colorbar 14

15 Note that you can change some options of the plot accessing from the plot options menu: 6. Representation the individual pole figures plotpdf(odf, Miller(0,0,0,1,CS), antipodal, minmax, off ) ; 7. Rotation of the pole figures You can represent the pole figures changing their orientation respect to one axis. For instance, you want the Normal Direction (ND) to be perpendicular to the Z axis, that is, that the ND is not in the center of the pole figure but, in the top of the plot. For that, you have to modify some lines in the script as follows: 1.- Rotation of the imported pole figures %% Import the Data % create a Pole Figure variable containing the data pf = loadpolefigure(fname, h, CS, SS, interface, philips ); rot = rotation( axis, yvector, angle, 90*degree); pf_rotated = rotate(pf, rot); % Visualize Data % plot or the raw data plot(pf_rotated) 15

16 2.- Calculation of the ODF %% ODF estimation % estimate some ODF odf = calcodf(pf_rotated); 3.- Plot calculated pole figures %% Plot Calculated Pole Figures plotpdf(odf, h, ) in this section do not change nothing. 16

17 Inverse pole figures: So far we have treated the case for direct pole figures, but it is possible to represent the case for inverse pole figures. For this, we have to write the following lines in the section Plot Calculated Pole Figures : Note: this representation is for FCC metal. %% Plot Calculated Pole Figures plotipdf(odf, [xvector, yvector], antipodal, minmax, off, contour, 0:0.55:33) annotate([miller(1,0,0), Miller(1,1,0), Miller(1,1,1)], all, labeled ) setcolorrange( equal, all ); colorbar 17

18 Representation of the Orientation Distribution Function (ODF): If you want to represent the ODF, you should define the angle convention, for this case it is defined by the three Euler angles. So, you should write the following lines: %% ODF estimation % estimate some ODF odf = calcodf(pf_rotated); plot(odf, Euler 3, sections, 12, projection, plain, gray, contourf ); % section means the number of sections you want to represent and the projection, plain means that the ODF is plotted in a simple rectangular plot. 18

19 Saving files and images: In order to save the images, you click File and then choose Save As and you can select the image file format (.jpg,.png,.tiff, etc): Volume portions: A volume portion describes the relative volume of crystals having a certain orientation. The relative volume of crystals having an orientation close to a given orientation is computed by the command volume. For this, you should write the following lines in the section ODF estimation : %% ODF estimation odf=calcodf(pf) o = orientation( Euler, 90*degree, 90*degree, 0*degree, CS, SS) % it is necessary to define the orientation of the crystal and specimen symmetry, in this case with the Euler convention. volume(odf, o, 60*degree) % 60*degree is an example, it is the spread around the given orientation o. The result from this calculation is a number given in the Command Window of MATLAB: 19

20 4. REFERENCES [1] Texture Analysis with MTEX - Free and Open Source Software Toolbox, F. Bachmann, R. Hielscher, H. Schaeben: Solid State Phenomena (2010), 160, [2] Available from: NOTE: This tutorial should help you become familiar with the basic operational concepts in order to represent and to visualize the texture through easy way. However, this software is a powerful tool, so if you are interested to use more options, use MATLAB s Help and you could explore the all possibilities! 20

How to use Matlab Texture, Microstructure & Anisotropy A.D. Rollett. Last revised: 25 th Feb. 14

How to use Matlab Texture, Microstructure & Anisotropy A.D. Rollett. Last revised: 25 th Feb. 14 1 How to use Matlab 27-750 Texture, Microstructure & Anisotropy A.D. Rollett Last revised: 25 th Feb. 14 2 In- Class Questions What is the procedure that one can follow to use Matlab+MTex to construct

More information

Texture Analysis with MTEX inside Matlab. For Texture, Microstructure and Anisotropy A.D. Rollett

Texture Analysis with MTEX inside Matlab. For Texture, Microstructure and Anisotropy A.D. Rollett Texture Analysis with MTEX inside Matlab For 27-750 Texture, Microstructure and Anisotropy A.D. Rollett Last revised: 3 rd Feb. 2016 2 In- Class Questions What is texture? Texture quantifies any bias in

More information

MTEX. an open source texture analysis toolbox. Ralf Hielscher. Belo Horizonte, TU Chemnitz, Germany

MTEX. an open source texture analysis toolbox. Ralf Hielscher. Belo Horizonte, TU Chemnitz, Germany MTEX an open source texture analysis toolbox Ralf Hielscher TU Chemnitz, Germany Belo Horizonte, 2015 What is MTEX? 1 a MATLAB toolbox for quantitative texture analysis 2 a scripting language 3 a tool

More information

GSA Data Repository Item

GSA Data Repository Item GSA Data Repository Item 2018096 Nicholas J.R. Hunter, Roberto F. Weinberg, Christopher J.L. Wilson, Vladimir Luzin, Santanu Misra, 2018, Microscopic anatomy of a hot-on-cold shear zone: Insights from

More information

LaboTex Version 3.0. Texture Analysis Software for Windows. Texture Analysis on the Basis of EBSD Data

LaboTex Version 3.0. Texture Analysis Software for Windows. Texture Analysis on the Basis of EBSD Data LaboTex Version 3.0 Texture Analysis Software for Windows Texture Analysis on the Basis of EBSD Data LaboSoft s.c. Telephone: +48 502 311 838 Fax: +48 12 3953 891 E-mail: office@labosoft.com.pl LaboSoft

More information

Crystallographic orientation

Crystallographic orientation Crystallographic orientation Orientations and misorientations Orientation (g): The orientation of the crystal lattice with respect to some reference frame; usual a frame defined by the processing or sample

More information

Orientation Distribution (OD)

Orientation Distribution (OD) Orientation Distribution (OD) The Orientation Distribution (OD) is a central concept in texture analysis and anisotropy. Normalized probability* distribution, is typically denoted by f in whatever space

More information

Texture and Microstructure Analysis of IN718 Nickel Superalloy Samples Additively Manufactured by Selective Laser Melting

Texture and Microstructure Analysis of IN718 Nickel Superalloy Samples Additively Manufactured by Selective Laser Melting , March 15-17, 2017, Hong Kong Texture and Microstructure Analysis of IN718 Nickel Superalloy Samples Additively Manufactured by Selective Laser Melting Benjamin de Jager, Baicheng Zhang, Xu Song, Chryssanthi

More information

CRYSTAL GEOMETRY. An Introduction to the theory of lattice transformation in metallic materials with Matlab applications. 8 courses of 2 hours

CRYSTAL GEOMETRY. An Introduction to the theory of lattice transformation in metallic materials with Matlab applications. 8 courses of 2 hours CRYSTAL GEOMETRY An Introduction to the theory of lattice transformation in metallic materials with Matlab applications Français Cours 0 : lundi 4 décembre 9h30-11h30 Cours 1 : vendredi 8 décembre 9h30-11h30

More information

Grain Tracking Algorithm V1.0

Grain Tracking Algorithm V1.0 Grain Tracking Algorithm V1.0 Instructions: We have included a graphical user interface which helps illustrate usage of the Grain Tracking Algorithm (GTA) for two different example simulations. This interface

More information

Mambo is the perfect tool for viewing EBSD data in pole and inverse pole figures.

Mambo is the perfect tool for viewing EBSD data in pole and inverse pole figures. Mambo Pole figure and inverse pole figure software The physical properties of many samples are dependent on the common alignment of particular crystallographic directions: one of the easiest ways to view

More information

Tutorial. In Silico Cloning. Sample to Insight. March 31, 2016

Tutorial. In Silico Cloning. Sample to Insight. March 31, 2016 In Silico Cloning March 31, 2016 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com In Silico Cloning

More information

Crytallography of Maraging Steel: Influence of Variant Selection.

Crytallography of Maraging Steel: Influence of Variant Selection. Crytallography of Maraging Steel: Influence of Variant Selection. Neuman Fontenele Viana 1 ; Hamilton Ferreira Gomes de Abreu 1 ; 1 Department of Metallurgical Engineering and Materials,UFC, Fortaleza,

More information

Tutorial. Primer Design. Sample to Insight. November 27, 2015

Tutorial. Primer Design. Sample to Insight. November 27, 2015 Primer Design November 27, 2015 Sample to Insight CLC bio, a QIAGEN Company Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.clcbio.com support-clcbio@qiagen.com Primer Design

More information

Tutorial. Folding RNA Molecules. Sample to Insight. November 21, 2017

Tutorial. Folding RNA Molecules. Sample to Insight. November 21, 2017 Folding RNA Molecules November 21, 2017 Sample to Insight QIAGEN Aarhus Silkeborgvej 2 Prismet 8000 Aarhus C Denmark Telephone: +45 70 22 32 44 www.qiagenbioinformatics.com AdvancedGenomicsSupport@qiagen.com

More information

Fundamentals of Rietveld Refinement III. Additional Examples

Fundamentals of Rietveld Refinement III. Additional Examples Fundamentals of Rietveld Refinement III. Additional Examples An Introduction to Rietveld Refinement using PANalytical X Pert HighScore Plus v3.0a Scott A Speakman, Ph.D. MIT Center for Materials Science

More information

AN INTRODUCTION TO OIM ANALYSIS

AN INTRODUCTION TO OIM ANALYSIS AN INTRODUCTION TO OIM ANALYSIS Raising the standard for EBSD software The most powerful, flexible, and easy to use tool for the visualization and analysis of EBSD mapping data OIM Analysis - The Standard

More information

SETTLEMENTS DUE TO TUNNEL CONSTRUCTION

SETTLEMENTS DUE TO TUNNEL CONSTRUCTION 5 SETTLEMENTS DUE TO TUNNEL CONSTRUCTION In this tutorial the construction of a shield tunnel in medium soft soil and the influence on a pile foundation is considered. A shield tunnel is constructed by

More information

Infor HR Specialized Service Provider Self-Appraisal Guide

Infor HR Specialized Service Provider Self-Appraisal Guide Putting the Pieces Together The Specialized Service Provider (SSP) growth and performance system ensures that all SSPs receive meaningful feedback every year based on their performance. This guide outlines

More information

AASHTOWare BrD 6.8 Substructure Tutorial Solid Shaft Pier Example

AASHTOWare BrD 6.8 Substructure Tutorial Solid Shaft Pier Example AASHTOWare BrD 6.8 Substructure Tutorial Solid Shaft Pier Example Sta 4+00.00 Sta 5+20.00 (Pier Ref. Point) Sta 6+40.00 BL SR 123 Ahead Sta CL Brgs CL Pier CL Brgs Bridge Layout Exp Fix Exp CL Brgs Abut

More information

Hiring - Pre-Selection

Hiring - Pre-Selection Hiring - Pre-Selection Contents Page 3 Page 4 Page 5 Page 6 Page 6-7 Page 7-9 Page 7 Page 8 Page 8-9 Page 10-12 The Hiring Process Candidate Selection Page - Overview Display Candidates Page - Overview

More information

Service Plan Creator. Quick Reference Guide RapidFire Tools, Inc. All rights reserved. V Ver 1I

Service Plan Creator. Quick Reference Guide RapidFire Tools, Inc. All rights reserved. V Ver 1I Service Plan Creator Quick Reference Guide 2017 RapidFire Tools, Inc. All rights reserved. V20170423 Ver 1I Contents Purpose of this Guide... 2 Service Plan Creator Use Cases... 2 Creating Service Plans

More information

Introduction to Electron Backscattered Diffraction. TEQIP Workshop HREXRD Feb 1 st to Feb 5 th 2016

Introduction to Electron Backscattered Diffraction. TEQIP Workshop HREXRD Feb 1 st to Feb 5 th 2016 Introduction to Electron Backscattered Diffraction 1 TEQIP Workshop HREXRD Feb 1 st to Feb 5 th 2016 SE vs BSE 2 Ranges and interaction volumes 3 (1-2 m) http://www4.nau.edu/microanalysis/microprobe/interact-effects.html

More information

CRYSTAL LATTICE. Defining lattice: Mathematical construct; ideally infinite arrangement of points in space.

CRYSTAL LATTICE. Defining lattice: Mathematical construct; ideally infinite arrangement of points in space. CRYSTAL LATTICE How to form a crystal? 1. Define the structure of the lattice 2. Define the lattice constant 3. Define the basis Defining lattice: Mathematical construct; ideally infinite arrangement of

More information

Embarking new Project

Embarking new Project Embarking new Project Go to file, select new. This will open a screen for blank project click ok. You can now enter your project information viz. start date, finish date and also how would you like to

More information

Strain. Two types of stresses: Usually:

Strain. Two types of stresses: Usually: Stress and Texture Strain Two types of stresses: microstresses vary from one grain to another on a microscopic scale. macrostresses stress is uniform over large distances. Usually: macrostrain is uniform

More information

User Manual Automated Event Scheduling Assistant

User Manual Automated Event Scheduling Assistant User Manual Automated Event Scheduling Assistant 1 of 69 Welcome to AESA R3 Welcome to AESA R3 your Automated Event Scheduling Assistant. AESA combines integrated data storage, powerful functionality,

More information

Invoices 3.3 User Guide

Invoices 3.3 User Guide ! Invoices 3.3 User Guide We Make Software - Ecleti.com Invoices 2007-2018 Ecleti - Roberto Panetta all rights reserved Every effort has been made to ensure that the information in this manual is accurate.

More information

WMS 9.0 Tutorial GSSHA Applications Simulating Constituent Transport Model constituent transport in GSSHA

WMS 9.0 Tutorial GSSHA Applications Simulating Constituent Transport Model constituent transport in GSSHA v. 9.0 WMS 9.0 Tutorial GSSHA Applications Simulating Constituent Transport Model constituent transport in GSSHA Objectives Develop input parameters for and run a long-term model that simulates constituent

More information

A SOFTWARE FOR DIFFRACTION STRESS FACTOR CALCULATIONS FOR TEXTURED MATERIALS

A SOFTWARE FOR DIFFRACTION STRESS FACTOR CALCULATIONS FOR TEXTURED MATERIALS 123 A SOFTWARE FOR DIFFRACTION STRESS FACTOR CALCULATIONS FOR TEXTURED MATERIALS Thomas Gnäupel-Herold Materials Science and Engineering, University of Maryland, Bldg. 090, Rm 2135, College Park, MD, 20742,

More information

HRIS Import Guide. Instructions on how to use Trakstar s HRIS Import Tool.

HRIS Import Guide. Instructions on how to use Trakstar s HRIS Import Tool. HRIS Import Guide Instructions on how to use Trakstar s HRIS Import Tool. Introduction Trakstar s HRIS Import feature allows administrators to import Trakstar data with a spreadsheet exported from another

More information

Finance Manager: Human Resources

Finance Manager: Human Resources : Human Resources Benefit Dependent Assignment This Benefit Dependent Assignment utility will do the following: link any existing dependents to a benefit group (e.g., Health, Dental, Vision, etc.) based

More information

Almyta Control System Goods Replenishment Contents

Almyta Control System Goods Replenishment Contents Almyta Control System Goods Replenishment Contents Almyta Control System Goods Replenishment... 1 Creating the demo company... 2 Finished Goods Replenishment... 3 Raw Materials Replenishment... 9 Creating

More information

Staggered Structural-Heat Flow Analysis of Young Hardening Concrete

Staggered Structural-Heat Flow Analysis of Young Hardening Concrete Temperature [ C] 40 38 35 33 30 28 25 23 20 Crack index [-] 1.5 1.3 1.2 1.0 0.8 0.7 0.5 0.3 0.2 0.0 Staggered Structural-Heat Flow Analysis of Young Hardening Concrete Outline 1 Description 1.1 Material

More information

Halogen Goal / Objective Setting Halogen Goal Setting. 1AP and 2AP Senior Development Officers

Halogen Goal / Objective Setting Halogen Goal Setting. 1AP and 2AP Senior Development Officers Halogen Goal / Objective Setting Halogen Goal Setting 1AP and 2AP Senior Development Officers Manager Manager Guide Guide Contents Goal / Objective Setting Process... 2 Completing the Online Objective

More information

Application of MTEX in steel research

Application of MTEX in steel research Application of Dr. Marco Witte Salzgitter, 20 th February 2016 SZMF, ESWW, Folie 2, 26/02/16 Overview Introduction Macro Texture Analysis (XRD & EBSD) Elasticity tensor Wave velocities and ultrasound Symmetry

More information

Computational Materials Design. Tomi Suhonen, Anssi Laukkanen, Matti Lindroos, Tom Andersson, Tatu Pinomaa, et al. VTT Materials & Manufacturing

Computational Materials Design. Tomi Suhonen, Anssi Laukkanen, Matti Lindroos, Tom Andersson, Tatu Pinomaa, et al. VTT Materials & Manufacturing Computational Materials Design Tomi Suhonen, Anssi Laukkanen, Matti Lindroos, Tom Andersson, Tatu Pinomaa, et al. VTT Materials & Manufacturing Contents Click to edit Master title style Computational materials

More information

Comparison of Different Methods of Residual Stress Determination of Cold-Rolled Austenitic-Ferritic, Austenitic and Ferritic Steels

Comparison of Different Methods of Residual Stress Determination of Cold-Rolled Austenitic-Ferritic, Austenitic and Ferritic Steels Comparison of Different Methods of Residual Stress Determination of Cold-Rolled Austenitic-Ferritic, Austenitic and Ferritic Steels ČAPEK Jiří 1,a,*, TROJAN Karel 1,b, NĚMEČEK Jakub 1,c, GANEV Nikolaj

More information

Table of Contents. HVAC Remote Manual 2010

Table of Contents. HVAC Remote Manual 2010 Table of Contents Installation and Upgrades Download of Remote Technician Program Installation of Remote Technician Program Update of Remote Technician Program Using the Update Program Getting Started

More information

Using SPSS for Linear Regression

Using SPSS for Linear Regression Using SPSS for Linear Regression This tutorial will show you how to use SPSS version 12.0 to perform linear regression. You will use SPSS to determine the linear regression equation. This tutorial assumes

More information

Introductory Exercise: The Trucks Case

Introductory Exercise: The Trucks Case Prelude 7 ERP Introductory Exercise: The Trucks Case G. Baglin and Ch. van Delft HEC Paris Introductory Exercise: The Trucks Case - 2 - Objective of this exercise Assumptions and notations This exercise

More information

Orientation / Texture Polyethylene films

Orientation / Texture Polyethylene films Application Note PT-002 Orientation / Texture Polyethylene films Polyethylene (PE) film is one of the most commonly used polymeric products and orientation measurements of this material are of great interest.

More information

QuickBooks Integration Instructions for Attendance Rx

QuickBooks Integration Instructions for Attendance Rx Acroprint Time Recorder Company QuickBooks Integration Instructions for Attendance Rx Publication: ATRX-001 Date of Publication: February 18, 2005 Revision: B Introduction QuickBooks Integration from Attendance

More information

Classic Vista Payroll Delivery Enhancement Project (PDEP)

Classic Vista Payroll Delivery Enhancement Project (PDEP) Classic Vista Payroll Delivery Enhancement Project (PDEP) Table of Contents Overview... 2 Prerequisites... 2 Setting Up VPO Payroll Login... 3 Viewing and Printing Payroll Package Reports... 4 Creating

More information

Density Computations

Density Computations CHAPTER 3 THE STRUCTURE OF CRYSTALLINE SOLIDS Fundamental Concepts 3.1 What is the difference between atomic structure and crystal structure? Unit Cells Metallic Crystal Structures 3.2 If the atomic radius

More information

Step. Stability Analysis of Reinforced Earth Retaining Walls - LEM. Slope Module Tutorial

Step. Stability Analysis of Reinforced Earth Retaining Walls - LEM. Slope Module Tutorial Stability Analysis of Reinforced Earth Retaining Walls - LEM Slope Slope Module Tutorial 00 Stability Analysis of Reinforced Earth Retaining Walls - LEM Overview Limit Equilibrium Method (LEM) is used

More information

Advances in EBSD Analysis Using Novel Dynamical Pattern Simulation Software

Advances in EBSD Analysis Using Novel Dynamical Pattern Simulation Software Advances in EBSD Analysis Using Novel Dynamical Pattern Simulation Software Bruker Nano GmbH, Berlin Webinar, November 5 th, 2014 Innovation with Integrity Presenters Dr. Daniel Goran Product Manager EBSD,

More information

Texture development during processing

Texture development during processing Texture development during processing Course objectives: 1. To introduce the typical deformation textures in metals and alloys with FCC, BCC and HCP crystal structures 2. To explain the micro-mechanism

More information

FRET Sensitized Emission

FRET Sensitized Emission Page 1 of 8 FRET Sensitized Emission Function The FRET Sensitized Emission wizard is used for measuring the FRET efficiency. For this purpose, the fluorescence emission of the acceptor that results from

More information

OD Calculation from Pole Figure Data

OD Calculation from Pole Figure Data 1 OD Calculation from Pole Figure Data 27-750 Texture, Microstructure & Anisotropy A.D. Rollett Last revised: 2 nd Feb. 14 2 p Intensity in pole figure α, β angles in pole fig. Ψ,Θ,φ Euler angles (Roe/Kocks)

More information

Information Technology Solutions

Information Technology Solutions Connecting People, Process Information & Data Network Create Systems Workflow Diagnostic Jumps Testing Information Technology Solutions in Workflow Connect Prior Learning It is helpful but not essential

More information

LANSCE RESEARCH HIGHLIGHTS 2007

LANSCE RESEARCH HIGHLIGHTS 2007 LANSCE RESEARCH HIGHLIGHTS 2007 V6 Neutron Texture Analysis with HIPPO at Your Fingertips H-R. Wenk (University of California at Berkeley) L. Lutterotti and M. Bortolotti (University of Trento, Italy)

More information

Guide to Weak-Story Tool

Guide to Weak-Story Tool Appendix A Guide to Weak-Story Tool A.1 Introduction The Guidelines introduce topics that may be unfamiliar to some engineers. Though the calculations required in Chapters 4 and 5 are not conceptually

More information

Deposit and Sales Order Plug-in is an add-on function for AutoCount Accounting user to record the deposit payment from customer at Sales Order.

Deposit and Sales Order Plug-in is an add-on function for AutoCount Accounting user to record the deposit payment from customer at Sales Order. Introduction Deposit and Sales Order Plug-in is an add-on function for AutoCount Accounting user to record the deposit payment from customer at Sales Order. System Requirement & Installation In order to

More information

VIBRATION ANALYSIS FOR ROTATING MACHINES HEALTH MONITORING

VIBRATION ANALYSIS FOR ROTATING MACHINES HEALTH MONITORING LOGISTICS FOR DEFENSE VIBRATION ANALYSIS FOR ROTATING MACHINES HEALTH MONITORING 2017/05/09 José Barriga Mangas Telecommunication Engineer Index 01 Key Takeaways 02 Introduction to Organization and Business

More information

Texture Evolution during Deep drawing of Mo sheet Kwang Kyun Park 1, J.H. Cho 1, Heung Nam Han 2, Hui-Choon Lee 3 and Kyu Hwan Oh 1

Texture Evolution during Deep drawing of Mo sheet Kwang Kyun Park 1, J.H. Cho 1, Heung Nam Han 2, Hui-Choon Lee 3 and Kyu Hwan Oh 1 Key Engineering Materials Vols. 33-36 (003) pp.567-57 c 003 Trans Tech Publications, Switzerland Texture Evolution during Deep drawing of Mo sheet Kwang Kyun Park 1, J.H. Cho 1, Heung Nam Han, Hui-Choon

More information

Halogen Goal / Objective Setting 1AP and 2AP Senior Development Officers Employee Guide

Halogen Goal / Objective Setting 1AP and 2AP Senior Development Officers Employee Guide Halogen Goal / Objective Setting 1AP and 2AP Senior Development Officers Employee Guide Contents Goal / Objective Setting Process... 2 Completing Online Objective Setting Form... 4 Reviewing and Keeping

More information

Chapter 2 Representation of Texture

Chapter 2 Representation of Texture Chapter 2 Representation of Texture 2.1 Introduction As has been stated already, texture of a rolled sheet material is commonly represented as {hkl} uvw, which means that most of the grains in the sheet

More information

Quick Start Guide. Support Support phone:

Quick Start Guide.   Support   Support phone: Quick Start Guide www.enablecstore.com Support email: support@enablecstore.com Support phone: 1-888-250-2082 Ecliptic Technologies, Inc. 403 Center Ave., Suite 704 Moorhead, MN 56560 Phone: (218) 359-2000

More information

Learn how to design inlet grates, detention basins, channels, and riprap using the FHWA Hydraulic Toolbox and WMS

Learn how to design inlet grates, detention basins, channels, and riprap using the FHWA Hydraulic Toolbox and WMS v. 11.0 WMS 11.0 Tutorial Learn how to design inlet grates, detention basins, channels, and riprap using the FHWA Hydraulic Toolbox and WMS Objectives Learn how to use several Hydraulic Toolbox calculators

More information

Importing Waypoints into Google Earth: Mac

Importing Waypoints into Google Earth: Mac : Mac Grades 9-12 Overview: Locations stored in a GPS are called waypoints. Waypoints are coordinates that can be transferred from a GPS to a computer. In this activity the waypoint file will be saved

More information

How to Integrate SAP Crystal Server with SAP Business One

How to Integrate SAP Crystal Server with SAP Business One How-To Guide SAP Business One 9.0 Document Version: 1.0 2012-10-31 How to Integrate SAP Crystal Server with SAP Business One All Countries Typographic Conventions Type Style Example Description Words or

More information

MWF Advanced Floor. User Guide. Last Updated on July 27 th 2015

MWF Advanced Floor. User Guide. Last Updated on July 27 th 2015 MWF Advanced Floor User Guide Last Updated on July 27 th 2015 2 Table of contents 1. Introduction... 3 1.1 Before starting... 3 2. Project Configuration... 5 2.1 Code Requirements - Analyses Configuration...

More information

Tutorial Formulating Models of Simple Systems Using VENSIM PLE System Dynamics Group MIT Sloan School of Management Cambridge, MA O2142

Tutorial Formulating Models of Simple Systems Using VENSIM PLE System Dynamics Group MIT Sloan School of Management Cambridge, MA O2142 Tutorial Formulating Models of Simple Systems Using VENSIM PLE System Dynamics Group MIT Sloan School of Management Cambridge, MA O2142 Originally prepared by Nelson Repenning. Vensim PLE 5.2a Last Revision:

More information

WorldShip Set Up Automated Hands-Off Shipping

WorldShip Set Up Automated Hands-Off Shipping Hands-Off Shipping allows WorldShip to poll a selected database at specified time intervals, check for new shipments, and import and process those shipments automatically. To import and process shipments

More information

Influence of Texture on the Plastic Anisotropy of Mg Alloy Determined by Experimental and Numerical Investigation

Influence of Texture on the Plastic Anisotropy of Mg Alloy Determined by Experimental and Numerical Investigation International Journal of Innovations in Materials Science and Engineering (IMSE), VOL. 1, NO. 3 108 Influence of Texture on the Plastic Anisotropy of Mg Alloy Determined by Experimental and Numerical Investigation

More information

Homework 6: Calculation of Misorientation; A.D. Rollett, , Texture, Microstructure and Anisotropy

Homework 6: Calculation of Misorientation; A.D. Rollett, , Texture, Microstructure and Anisotropy Homework 6: Calculation of Misorientation; A.D. Rollett, 27-75, Texture, Microstructure and Anisotropy Due date: 8 th November, 211 Corrected 8 th Nov. 211 Q1. [6 points] (a) You are given a list of orientations

More information

Analyzing Affymetrix GeneChip SNP 6 Copy Number Data in Partek

Analyzing Affymetrix GeneChip SNP 6 Copy Number Data in Partek Analyzing Affymetrix GeneChip SNP 6 Copy Number Data in Partek This example data set consists of 20 selected HapMap samples, representing 10 females and 10 males, drawn from a mixed ethnic population of

More information

SIwave for Power Integrity Analysis. Workshop 2_2: PI Advisor

SIwave for Power Integrity Analysis. Workshop 2_2: PI Advisor SIwave for Power Integrity Analysis Workshop 2_2: PI Advisor 1 2016 ANSYS, Inc. April 5, 2017 Opening or Importing a Project Starting SIwave To launch SIwave, click the Microsoft Start Button > ALL Programs

More information

Additive manufacturing

Additive manufacturing Comparison Between Microstructures, Deformation Mechanisms and Micromechanical Properties of 316L Stainless Steel Consolidated by Laser Melting I. Heikkilä, O. Karlsson, D. Lindell, A. Angré, Y. Zhong,

More information

Proxis Store Manager. for Windows 98, 2000, XP. Quick Start Guide

Proxis Store Manager. for Windows 98, 2000, XP. Quick Start Guide Proxis Store Manager for Windows 98, 2000, XP Quick Start Guide Store Manager Point-of-Sale System Overview Store Manager Point-of-Sale for Windows transforms a PC into a powerful point-of-sale cash register

More information

9/16/ :30 PM. Chapter 3. The structure of crystalline solids. Mohammad Suliman Abuhaiba, Ph.D., PE

9/16/ :30 PM. Chapter 3. The structure of crystalline solids. Mohammad Suliman Abuhaiba, Ph.D., PE Chapter 3 The structure of crystalline solids 1 Mohammad Suliman Abuhaiba, Ph.D., PE 2 Home Work Assignments HW 1 2, 7, 12, 17, 22, 29, 34, 39, 44, 48, 53, 58, 63 Due Sunday 17/9/2015 3 Why study the structure

More information

Calculation Schema. Setting up the calculation schema in beas. Beas Tutorial. Boyum Solutions IT A/S

Calculation Schema. Setting up the calculation schema in beas. Beas Tutorial. Boyum Solutions IT A/S Calculation Schema Setting up the calculation schema in beas Boyum Solutions IT A/S Beas Tutorial TABLE OF CONTENTS 1. INTRODUCTION... 3 2. PROCESS... 3 2.1. Master Data Tab... 5 2.2. Overhead Costs Tab...

More information

Crystallographic Textures Measurement

Crystallographic Textures Measurement Crystallographic Textures Measurement D. V. Subramanya Sarma Department of Metallurgical and Materials Engineering Indian Institute of Technology Madras E-mail: vsarma@iitm.ac.in Macrotexture through pole

More information

SignalP Plugin USER MANUAL

SignalP Plugin USER MANUAL SignalP Plugin USER MANUAL User manual for SignalP 2.3 Windows, Mac OS X and Linux November 7, 2017 This software is for research purposes only. QIAGEN Aarhus Silkeborgvej 2 Prismet DK-8000 Aarhus C Denmark

More information

UNIT 45: Riser Design Wizard

UNIT 45: Riser Design Wizard UNIT 45: Riser Design Wizard The Riser Design Wizard allows you to analyze a casting model without risers or feeders, and determine the number, placement and size of risers or feeders that should be attached

More information

International Journal of Mechanical Engineering and Technology (IJMET), ISSN (Print), INTERNATIONAL JOURNAL OF MECHANICAL ENGINEERING

International Journal of Mechanical Engineering and Technology (IJMET), ISSN (Print), INTERNATIONAL JOURNAL OF MECHANICAL ENGINEERING INTERNATIONAL JOURNAL OF MECHANICAL ENGINEERING AND TECHNOLOGY (IJMET) ISSN 0976 6340 (Print) ISSN 0976 6359 (Online) Volume 3, Issue 3, September - December (2012), pp. 645-653 IAEME: www.iaeme.com/ijmet.asp

More information

Atoma and Diem Product Equivalents

Atoma and Diem Product Equivalents ................................................................................................... Atoma and Diem Product Equivalents Pharmacy Technology Solutions Issued November 2013 Product Manager:

More information

44. Sim Reactions Example

44. Sim Reactions Example 14022-ORC-J 1 (15) 44. Sim Reactions Example 44.1. General This example contains instructions on how to create a simple leaching reactor model where 10 t/h of FeS is leached with acid (H 2 SO 4 ) and air

More information

1. Stress Analysis of a Cantilever Steel Beam

1. Stress Analysis of a Cantilever Steel Beam . Stress Analysis of a Cantilever Steel Beam Applicable CivilFEM Product: All CivilFEM Products Level of Difficulty: Easy Interactive Time Required: 5-0 minutes Discipline: Structural Steel Analysis Type:

More information

Pick and ship items. Ship cross-docked items. Breakbulk the item.

Pick and ship items. Ship cross-docked items. Breakbulk the item. Chapter 5: Shipping CHAPTER 5: SHIPPING Objectives Introduction The objectives are: Pick and ship items. Ship cross-docked items. Breakbulk the item. Warehouse Management Systems (WMS) provides the functionalities

More information

Xerox Configurator Pricing Manager Guide

Xerox Configurator Pricing Manager Guide Xerox Configurator Pricing Manager Guide 2010 Xerox Corporation. All rights reserved. XEROX, XEROX and Design, are trademarks of Xerox Corporation in the United States and/or other countries. Document

More information

Halogen Goal Setting Employee Guide. for Sr. Research Associates/Research Associates

Halogen Goal Setting Employee Guide. for Sr. Research Associates/Research Associates Halogen Goal Setting Employee Guide for Sr. Research Associates/Research Associates Contents Goal Setting Process... 2 Completing Online Goal Setting Form... 4 Important Notes... 8 Reviewing Goals and

More information

Set up the Grid: From the drop down menu: Settings, Configuration, Screen, Grid Settings

Set up the Grid: From the drop down menu: Settings, Configuration, Screen, Grid Settings ENGI 7928 Mastercam Lab Mill 1 C. Koenig 2012 Starting a Mastercam file: Once the SolidWorks models is complete, save the model as PivotClamp.x_t, Open Mastercam, select: File, Open, Files of type All

More information

Prepare and Transmit Timesheet Data Quick Reference Card

Prepare and Transmit Timesheet Data Quick Reference Card Quick Reference Card Prepare CDK Drive Timesheet Information for Payroll Plus Import To prepare ETC timesheet information and create the timesheet transmission file: 1. Click the Timesheets button from

More information

Getting Started with OptQuest

Getting Started with OptQuest Getting Started with OptQuest What OptQuest does Futura Apartments model example Portfolio Allocation model example Defining decision variables in Crystal Ball Running OptQuest Specifying decision variable

More information

DRP Report. Using the ForecastX Wizard The Report Tab: Choosing Your Output

DRP Report. Using the ForecastX Wizard The Report Tab: Choosing Your Output DRP Report The DRP report provides information needed to complete the Distribution Resource Planning process. Data on this report is controlled by the Paras option on the Data Capture screen as well as

More information

This lecture is part of the Basic XRD Course.

This lecture is part of the Basic XRD Course. This lecture is part of the Basic XRD Course. Basic XRD Course 1 A perfect polycrystalline sample should contain a large number of crystallites. Ideally, we should always be able to find a set of crystallites

More information

9/29/2014 8:52 PM. Chapter 3. The structure of crystalline solids. Dr. Mohammad Abuhaiba, PE

9/29/2014 8:52 PM. Chapter 3. The structure of crystalline solids. Dr. Mohammad Abuhaiba, PE 1 Chapter 3 The structure of crystalline solids 2 Home Work Assignments HW 1 2, 7, 12, 17, 22, 29, 34, 39, 44, 48, 53, 58, 63 Due Sunday 12/10/2014 Quiz # 1 will be held on Monday 13/10/2014 at 11:00 am

More information

Appendix 1 TEXTURE A1.1 REPRESENTATION OF TEXTURE

Appendix 1 TEXTURE A1.1 REPRESENTATION OF TEXTURE Appendix 1 TEXTURE The crystallographic orientation or texture is an important parameter describing the microstructure of a crystalline material. Traditionally, textures have been determined by x-ray diffraction

More information

onepoint PROJECTS 17 Group Server and Enterprise Cloud/Server TUTORIAL

onepoint PROJECTS 17 Group Server and Enterprise Cloud/Server TUTORIAL onepoint PROJECTS 17 Group Server and Enterprise Cloud/Server TUTORIAL 1 1 Introduction onepoint PROJECTS is a project leadership software integrating project planning, controlling, monitoring and reporting

More information

Halogen Goal / Objective Setting 1AP and 2AP Program Managers Employee Guide

Halogen Goal / Objective Setting 1AP and 2AP Program Managers Employee Guide Halogen Goal / Objective Setting 1AP and 2AP Program Managers Employee Guide Contents Goal / Objective Setting Process... 2 Completing Online Objective Setting Form... 4 Reviewing and Keeping Track of

More information

Symmetry and Anisotropy Structure, Properties, Sample and Material, Texture and Anisotropy, Symmetry

Symmetry and Anisotropy Structure, Properties, Sample and Material, Texture and Anisotropy, Symmetry Symmetry and Anisotropy Structure, Properties, Sample and Material, Texture and Anisotropy, Symmetry Objectives Symmetry Operators & Matrix representation. Effect of crystal and sample symmetry

More information

9/28/2013 9:26 PM. Chapter 3. The structure of crystalline solids. Dr. Mohammad Abuhaiba, PE

9/28/2013 9:26 PM. Chapter 3. The structure of crystalline solids. Dr. Mohammad Abuhaiba, PE Chapter 3 The structure of crystalline solids 1 2 Why study the structure of crystalline solids? Properties of some materials are directly related to their crystal structure. Significant property differences

More information

Data Collection Advanced

Data Collection Advanced Data Collection Advanced Instructors : Joseph Reibenspies, Ph.D. Nattamai Bhuvanesh, Ph.D. Version 2.0.1_2009 Practicals X-ray Diffraction Series 1 APEXII Collect Matrix for UnitCell Practicals X-ray Diffraction

More information

Aldelo Liquor Controller Server User Manual

Aldelo Liquor Controller Server User Manual Aldelo Liquor Controller Server User Manual 2 Aldelo Liquor Controller Server Manual 3 PUBLISHED BY Aldelo, LP 6800 Koll Center Parkway, Suite 310 Pleasanton, CA 94566 Copyright 1997-2014 by Aldelo, LP.

More information

EDUCATIONAL ASSISTANCE JOB AID

EDUCATIONAL ASSISTANCE JOB AID EDUCATIONAL ASSISTANCE JOB AID How to Approve an Educational Assistance Expense Report Overview To recruit, develop, engage, and retain top quality workforce we must invest in the ongoing career and educational

More information

Autodesk Moldflow Insight AMI Thermoplastics Overmolding

Autodesk Moldflow Insight AMI Thermoplastics Overmolding Autodesk Moldflow Insight 2012 AMI Thermoplastics Overmolding Revision 1, 22 March 2012. This document contains Autodesk and third-party software license agreements/notices and/or additional terms and

More information

Two dimensional Bravais lattices

Two dimensional Bravais lattices Two dimensional Bravais lattices Two dimensional Bravais lattices Square lattice Symmetries: reflection about both x and y rotations by 90 o,180 o Two dimensional Bravais lattices Rectangular lattice Square

More information

May 26 th, MWF Truss. User Guide

May 26 th, MWF Truss. User Guide May 26 th, 2017 MWF Truss User Guide 1 1. Introduction... 3 1.1 Things to Know Before Starting... 3 1.1.1 Revit Model... 3 1.1.2 Roof... 3 1.1.3 Adding Families... 4 2. Envelopes... 5 2.1 General Envelope

More information