Phonons: Bandstructure, thermal transport, thermo-electrics

Size: px
Start display at page:

Download "Phonons: Bandstructure, thermal transport, thermo-electrics"

Transcription

1 Phonons: Bandstructure, thermal transport, thermo-electrics Tutorial Version

2 Phonons: Bandstructure, thermal transport, thermo-electrics: Tutorial Version Copyright QuantumWise A/S Atomistix ToolKit Copyright Notice All rights reserved. This publication may be freely redistributed in its full, unmodified form. No part of this publication may be incorporated or used in other publications without prior written permission from the publisher.

3 TABLE OF CONTENTS 1. Introduction Phonon bandstructure of a graphene nanoribbon... 2 Setting up the geometry... 2 Defining the phonon calculation... 3 Analyzing the results... 4 Algorithmic details of the phonon calculator Calculating electrical and heat transport for a graphene nanoribbon... 9 Setting up the graphene nanoribbon device... 9 Defining the transmission calculations... 9 Analyzing the results Bibliography iii

4 CHAPTER 1. INTRODUCTION The purpose of this tutorial is to illustrate the use of the ATK phonon module. The tutorial is applied to small toy problems such that the calculations are very fast. In the first chapter you will calculate the phonon bandstructure and density of states, and learn about how these modules work. In the second chapter you will study a device system and calculate the electronic and phonon thermal transport coefficients, as well as the electrical transport coefficients. From those coefficients you obtain the thermoelectric figure of merit ZT. Note You will primarily use the graphical user interface Virtual NanoLab (VNL) for setting up and analyzing the results. To familiarize yourself with VNL, it is recommended to go through the VNL Tutorial. The underlying calculation engines for this tutorial is ATK-Classical and ATK-SE. A complete description of all the parameters, and in many cases a longer discussion about their physical relevance, can be found in the ATK Reference Manual. In order to run this tutorial, you must have a license for ATK-SE. If you do not have one, you may obtain a time-limited demo license by contacting QuantumWise via our website. You are now ready to begin the tutorial. 1

5 CHAPTER 2. PHONON BANDSTRUCTURE OF A GRAPHENE NANORIBBON SETTING UP THE GEOMETRY Start VNL and create a new project and give it a name, then select it and click Open. Launch the Builder by clicking the Builder icon on the toolbar. In the builder, click Add From Plugin Nanoribbon. Remove the check box from Passivate dangling bonds with hydrogen. Select Armchair edge. Select the structure 8 atoms wide. Press the Build button to build the structure. In order to make sure that the phonon module can detect that the structure is one dimensional, you need to have ~ 7 Å vacuum on both sides of the structure. To this end open Bulk Tools Lattice Parameters... Increase A-x to 20 Å. Increase B-y to 30 Å. and close down the widget. Next Open Coordinate Tools Center, and press Apply, to center the nanoribbon in the unit cell. 2

6 Next send the structure to the Script Generator, by using the "Send To" icon right-hand corner of the Builder window. in the lower DEFINING THE PHONON CALCULATION In the following you will optimize the geometry and calculate the Phonon bandstructure and DOS of the nanoribbon using the Tersoff potential. In the Script Generator Add a "New Calculator" Add an "Optimization>OptimizeGeometry" Add an "Analysis>PhononBandstructure" Add an "Analysis>PhononDensityOfStates" Change the output file to armchair.nc ADJUSTING SCRIPT COMPONENTS To set up the calculation parameters, make the following changes: Double-click the New Calculator and select the ATK-Classical calculator and the Tersoff_C_2010 potential. Note that depending on the elements present in your configuration you will be able to choose among several potentials. A literature reference is also shown, giving you the possibility to check exactly how the potentials have been generated. It is very important that the potential you will use has been generated for a similar system or for similar conditions as your system. 3

7 In this case you can immediately see that the Tersoff_C_2010 potential is well suited for your phonon analysis: "Optimized Tersoff and Brenner empirical potential parameters for lattice dynamics and phonon thermal transport in carbon nanotubes and graphene". Double-click the OptimizeGeometry and set maximum force to 0.01 ev/å. Double-click the PhononBandstructure and set Points pr. segment to 100. Double-click the PhononDensityOfStates, uncheck sync, and set nc=51. Transfer the script to the Job Manager (again using the "Send To" icon) and run the calculation. ANALYZING THE RESULTS The generated output file armchair.nc, visible under Project Files in the main VNL window, now contains a PhononBandstructure object. Select the PhononBandstructure object on the LabFloor and press Show 2D Plot... in the plugin panel. Zoom into the low frequency area to get the figure below. 4

8 Figure 2.1: Phonon bandstructure of the armchair nanoribbon. Note the negative bands arising from stress in the nanoribbon which makes it unstable perpendicular to the plane. ORIGIN OF NEGATIVE PHONON BANDS The negative bands seen in the phonon spectrum show that the structure is at a saddle point and can gain energy by further relaxing. The problem is that you only performed a force optimization and not a stress optimization, thus there is a large stress in the structure and it would like to release the stress by relaxing perpendicular to the graphene plane. RELAXING THE STRESS IN THE CONFIGURATION In order to relax the stress in the configuration, reopen the Script Generator. Tip All open tools are available from the Windows menu at the top of each VNL tool. Next open the OptimizeGeometry block. Set Maximum stress to ev/å. Remove check from z under constrain cell. 5

9 Press OK to close the widget, transfer the script to the Job Manager and run the calculation. When you open the phonon bandstructure you will see that the the negative bands are now gone. Figure 2.2: Phonon bandstructure of the armchair nanoribbon after stress relaxation. Note that there are no longer negative bands. 6

10 THE DENSITY OF STATES The armchair.nc also contains the phonon density of state (DOS) of the armchair nanoribbon with and without stress relaxation. Below is shown the phonon DOS of the stress relaxed system. Figure 2.3: Phonon density of states of the armchair nanoribbon after stress relaxation. From the Phonon DOS it is possible to calculate the entropy of the system. In ATK this is implemented in the utility function entropy() of the PhononDensityOfStates. The script below evaluates the entropy and uses that to get the free energy of the system. # Read the last configuration in the output file configuration = nlread('armchair.nc', BulkConfiguration)[-1] # Read the last phonon DOS in the output file phonon_dos = nlread('armchair.nc', PhononDensityOfStates)[-1] # Calculate the total energy total_energy = TotalEnergy(configuration) e = total_energy.evaluate() # Define the temperature t = 300*Kelvin # Calculate the entropy s = phonon_dos.entropy(t) # Print results print 'Energy = ', e print 'Entropy = ', s print 'Free energy at 300K = ', e - t*s Execute the script by dropping it on the Job Manager, and get the output Energy = ev Entropy = mev/k Free energy at 300K = ev 7

11 ALGORITHMIC DETAILS OF THE PHONON CALCULATOR The phonons are calculated from the dynamical matrix of the system. The dynamical matrix is the second derivative of the system, corresponding to the first derivative of the forces. The first derivative of the forces are calculated using a finite difference scheme, where the system is displaced along each degree of freedom in the system, also called frozen phonon calculations. Before the calculation of a phonon quantity, it is checked if the configuration contains a dynamical matrix. If this is not the case the dynamical matrix will be calculated and stored on the object. When the configuration is subsequently stored, the dynamical matrix will be stored together with the configuration. The details of the calculation of the dynamical matrix is controlled by DynamicalMatrixParameters object, which can be given as a parameter of the calculator. dynamical_matrix_parameters = DynamicalMatrixParameters(repeats = (1,1,5), atomic_displacement = 0.01*Ang) potentialset = Tersoff_C_2010() calculator = TremoloXCalculator(parameters=potentialSet, dynamical_matrix_parameters=dynamical_matrix_parameters) In order to take into account the dynamical matrix entries with neighbour cells the system is repeated, controlled by the repeat parameter. If the value is automatic, the system will try to determine the relevant repetition and this is reported in the output file. For the current system it is reported Phonon: Automatically detected repetitions = [1 1 5] The atomic_displacement parameter controls the atomic displacements in the frozen phonon calculation. K-POINTS USED FOR ATK-DFT AND ATK-SE It is also possible to use the phonon module with ATK-DFT and ATK-SE. In this case be aware that the k-point sampling of the calculator will be used for the repeated cell that is used for calculating the dynamical matrix. I.e. in the above example let us say a k-point sampling of (1, 1, 21) is used for optimization of the geometry. For the dynamical matrix calculation you will use a geometry that is repeated 5 times in the z direction. Thus, to obtain the same accuracy for the dynamical matrix calculation, use fewer k-points in the z-direction and thereby save time. The following script shows how to change the k-point sampling of the calculator. # Change k-point sampling of a calculator calculator = bulk_configuration.calculator() numerical_accuracy_parameters = calculator.numericalaccuracyparameters() new_numerical_accuracy_parameters = numerical_accuracy_parameters(k_point_sampling = (1, 1, 5)) new_calculator = calculator(numerical_accuracy_parameters=new_numerical_accuracy_parameters) bulk_configuration.setcalculator(new_calculator) 8

12 CHAPTER 3. CALCULATING ELECTRICAL AND HEAT TRANSPORT FOR A GRAPHENE NANORIBBON In this section we will calculate the phonon transmission coefficient for the armchair nanoribbon from which the phonon thermal conductance can be obtained. This will be combined with a calculation of the electron transmission coefficient from which the conductance, Peltier coefficient and electron thermal conductance can be obtained. The different parameters are combined for calculating the thermoelectric figure of merit, ZT. The methodology for the calculations are described in Ref. [1]. SETTING UP THE GRAPHENE NANORIBBON DEVICE The first step is to build a device geometry from the relaxed armchair nanoribbon. In the VNL main window select the last configuration in the armchair.nc file and drag and drop the configuration onto the builder. In the builder perform the following operations Bulk Tools Repeat: repeat 5 times in C direction. Device Tools Device From Bulk...: Default values are fine, press OK Next send the structure to the Script Generator. DEFINING THE TRANSMISSION CALCULATIONS In the following you will setup the phonon and electron transmission calculations. For the phonon calculation you will use the Tersoff potential while using a carbon tight-binding model for the electron transmission calculation. Add a "New Calculator" Add a "Analysis>PhononTransmissionSpectrum" Add a "New Calculator" Add a "Analysis>TransmissionSpectrum" Change the output file to armchair_device.nc 9

13 ADJUSTING SCRIPT COMPONENTS To set up calculation parameters, make the following changes: Double-click the New Calculator and select the ATK-Classical calculator and the Tersoff potential. Double-click the PhononTransmissionSpectrum and set the energy range to 0 ev to 0.5 ev Double-click the New Calculator and select the ATK-SE: Slater-Koster calculator and choose the Hancock.C pppi basis set. No changes need to be made to the TransmissionSpectrum Transfer the script to the Job Manager and run the calculation. ANALYZING THE RESULTS Now inspect the result file armchair_device.nc in the VNL main window. You may select the Phonon and the electron transmission spectrum and plot them using the Transmission Analyzer... or Show 2D plot analysis plugins. Figure 3.1: Phonon transmission spectrum of the armchair nanoribbon. 10

14 Figure 3.2: Electron transmission spectrum of the armchair nanoribbon zoomed into the energy range -1 to 1 ev. THE THERMO-ELECTRIC FIGURE OF MERIT In this section you will calculate the linear response transport coefficients of an applied voltage difference ( ) or temperature difference ( ) between the two electrodes. The coefficients are The conductance, The Peltier coefficient, The Seebeck coefficient, The heat transport coefficient of electrons,, and phonons, where is the heat current. From these coefficients you can obtain the thermoelectric figure of merit which quantifies how efficient a temperature difference can be converted into a voltage difference in a thermoelectric material. These linear response coefficients are calculated by the Thermoelectric Coefficients plugin. To perform the calculation, select the PhononTransmissionSpectrum and the ElectronTransmissionSpectrum simultanously and press the Calculate button of the plugin. 11

15 For an undoped nanoribbon, the Fermi level is in the middle of the band gap. To get a significant Peltier coefficient the Fermi level must be at a band edge, corresponding to a doped nanoribbon. The plugin allows for shifting the Fermi level, and Figure 3.3 shows the result for ev, corresponding to an n-doped nanoribbon. Figure 3.3: The linear response electron and phonon transport coefficients for a Fermi level shift of 0.08 ev, corresponding to a Fermi level at the conduction band edge. The Thermoelectric Coefficients plugin allows you to plot the different thermoelectric coefficients as a function of the energy. For example, the figure below reports the figure of merit ZT at 300K as a function of the energy. The peaks corresponding to the band edges are clearly visible. Figure 3.4: ZT at 300 K for the armchair nanoribbon. 12

16 BIBLIOGRAPHY [1] T. Markussen, A.-P. Jauho, M. Brandbyge, Phys. Rev. Lett., 103, ,

Spin transport in Magnetic Tunnel Junctions

Spin transport in Magnetic Tunnel Junctions Spin transport in Magnetic Tunnel Junctions Tutorial on spin transport in Fe-MgO-Fe Version 2015.2 Spin transport in Magnetic Tunnel Junctions: Tutorial on spin transport in Fe-MgO-Fe Version 2015.2 Copyright

More information

The DFTB model in ATK-SE

The DFTB model in ATK-SE The DFTB model in ATK-SE Tutorial Version 2014.0 The DFTB model in ATK-SE: Tutorial Version 2014.0 Copyright 2008 2014 QuantumWise A/S Atomistix ToolKit Copyright Notice All rights reserved. This publication

More information

Table of Contents. Table of Contents Opening a band gap in silicene and bilayer graphene with an electric field

Table of Contents. Table of Contents Opening a band gap in silicene and bilayer graphene with an electric field Table of Contents Table of Contents Opening a band gap in silicene and bilayer graphene with an electric field Bilayer graphene Building a bilayer graphene structure Calculation and analysis Silicene Optimizing

More information

Table of Contents. Table of Contents Exploring graphene. Build a graphene sheet Build a CNT Transmission spectrum of a GNR Twisted nanoribbon

Table of Contents. Table of Contents Exploring graphene. Build a graphene sheet Build a CNT Transmission spectrum of a GNR Twisted nanoribbon Table of Contents Table of Contents Exploring graphene Build a graphene sheet Build a CNT Transmission spectrum of a GNR Twisted nanoribbon Transmission spectrum Möbius nanoribbon Buckling a graphene sheet

More information

Table of Contents. Table of Contents Spin-orbit splitting of semiconductor band structures

Table of Contents. Table of Contents Spin-orbit splitting of semiconductor band structures Table of Contents Table of Contents Spin-orbit splitting of semiconductor band structures Relavistic effects in Kohn-Sham DFT Silicon band splitting with ATK-DFT LSDA initial guess for the ground state

More information

Spontaneous polarization of ferroelectric BaTiO3

Spontaneous polarization of ferroelectric BaTiO3 Spontaneous polarization of ferroelectric BaTiO3 Tutorial on how to use ATK for polarization calculations Version 2014.0 Spontaneous polarization of ferroelectric BaTiO3: Tutorial on how to use ATK for

More information

QuantumWise. QuantumWise is now part of Synopsys

QuantumWise. QuantumWise is now part of Synopsys Table of Contents Table of Contents NiSi2 Si interface Create the NiSi2/Si device The screening region Increase the length of the central region Set-up the calculation for the undoped device Dope the device

More information

Table of Contents. Table of Contents Phonon-limited mobility in graphene using the Boltzmann transport equation

Table of Contents. Table of Contents Phonon-limited mobility in graphene using the Boltzmann transport equation Table of Contents Table of Contents Phonon-limited mobility in graphene using the Boltzmann transport equation Geometry and electronic structure of graphene Phonons in Graphene Mobility of graphene 1.

More information

Application Note. U. Heat of Formation of Ethyl Alcohol and Dimethyl Ether. Introduction

Application Note. U. Heat of Formation of Ethyl Alcohol and Dimethyl Ether. Introduction Application Note U. Introduction The molecular builder (Molecular Builder) is part of the MEDEA standard suite of building tools. This tutorial provides an overview of the Molecular Builder s basic functionality.

More information

Table of Contents. Table of Contents Electronic structure of NiO with DFT+U. Introduction The electronic structure of NiO calculated with DFT

Table of Contents. Table of Contents Electronic structure of NiO with DFT+U. Introduction The electronic structure of NiO calculated with DFT Table of Contents Table of Contents Electronic structure of NiO with DFT+U Introduction The electronic structure of NiO calculated with DFT Setting up the calculation Performing the calculation Analysing

More information

Spin transport in Magnetic Tunnel Junctions

Spin transport in Magnetic Tunnel Junctions Spin transport in Magnetic Tunnel Junctions This tutorial shows how to simulate and analyze the electronic transport properties of magnetic tunnel junctions (MTJs). You will study the collinear and non-collinear

More information

Table of Contents. Table of Contents DFT-1/2 and DFT-PPS density functional methods for electronic structure calculations

Table of Contents. Table of Contents DFT-1/2 and DFT-PPS density functional methods for electronic structure calculations Table of Contents Table of Contents DFT-1/2 and DFT-PPS density functional methods for electronic structure calculations DFT-1/2 methods InP bandstructure using PBE-1/2 III-V type semiconductor band gaps

More information

Table of Contents. Table of Contents LAMMPS trajectories into QuantumATK

Table of Contents. Table of Contents LAMMPS trajectories into QuantumATK Table of Contents Table of Contents LAMMPS trajectories into QuantumATK Preparing a LAMMPS script Running LAMMPS Importing to QuantumATK Postprocessing LAMMPS trajectories References 1 2 2 3 3 5 8 QuantumATK

More information

Speed-up of ATK compared to

Speed-up of ATK compared to What s new @ Speed-up of ATK 2008.10 compared to 2008.02 System Speed-up Memory reduction Azafulleroid (molecule, 97 atoms) 1.1 15% 6x6x6 MgO (bulk, 432 atoms, Gamma point) 3.5 38% 6x6x6 MgO (k-point sampling

More information

Table of Contents. Table of Contents Computing the piezoelectric tensor for AlN. Introduction. Computing the piezoelectric tensor

Table of Contents. Table of Contents Computing the piezoelectric tensor for AlN. Introduction. Computing the piezoelectric tensor Table of Contents Table of Contents Computing the piezoelectric tensor for AlN Introduction The piezoelectric tensor Computing the piezoelectric tensor Analysis of the e 33 e33 coefficient Alternative

More information

Table of Contents. Table of Contents Using the Crystal Builder. Introduction Crystal structure of black phosphorus Phosphorene and its bandstructure

Table of Contents. Table of Contents Using the Crystal Builder. Introduction Crystal structure of black phosphorus Phosphorene and its bandstructure Table of Contents Table of Contents Using the Crystal Builder Introduction Crystal structure of black phosphorus Phosphorene and its bandstructure Bandstructure References 1 2 2 3 7 9 10 QuantumATK Try

More information

Table of Contents. Table of Contents Bi2Se3 topological insulator. Build the Bi2Se3 crystal. Bi2Se3 bulk band structure

Table of Contents. Table of Contents Bi2Se3 topological insulator. Build the Bi2Se3 crystal. Bi2Se3 bulk band structure Table of Contents Table of Contents Bi2Se3 topological insulator Build the Bi2Se3 crystal Lattice Basis Bi2Se3 bulk band structure GGA calculation SOGGA calculation Results Bi2Se3 surface: Spin-orbit band

More information

Table of Contents. Table of Contents Initialize from a converged state. Introduction Examples

Table of Contents. Table of Contents Initialize from a converged state. Introduction Examples Table of Contents Table of Contents Initialize from a converged state Introduction Examples Water molecule example Looping over parameters Stepping up in bias Special example: anti-parallel spin in MTJs

More information

This tutorial is intended to familiarize you with the Geomatica Toolbar and describe the basics of viewing data using Geomatica Focus.

This tutorial is intended to familiarize you with the Geomatica Toolbar and describe the basics of viewing data using Geomatica Focus. PCI GEOMATICS GEOMATICA QUICKSTART 1. Introduction This tutorial is intended to familiarize you with the Geomatica Toolbar and describe the basics of viewing data using Geomatica Focus. All data used in

More information

GRAPHENE NANORIBBONS TRANSPORT PROPERTIES CALCULATION. Jan VOVES

GRAPHENE NANORIBBONS TRANSPORT PROPERTIES CALCULATION. Jan VOVES GRAPHENE NANORIBBONS TRANSPORT PROPERTIES CALCULATION Jan VOVES Czech Technical University in Prague, Faculty of Electrical Engineering, Technicka 2, CZ-16627 Prague 6 Czech Republic, voves@fel.cvut.cz

More information

Introduction to Hartree-Fock calculations in Spartan

Introduction to Hartree-Fock calculations in Spartan EE5 in 2008 Hannes Jónsson Introduction to Hartree-Fock calculations in Spartan In this exercise, you will get to use state of the art software for carrying out calculations of wavefunctions for molecues,

More information

Leaf Spring (Material, Contact, geometric nonlinearity)

Leaf Spring (Material, Contact, geometric nonlinearity) 00 Summary Summary Nonlinear Static Analysis - Unit: N, mm - Geometric model: Leaf Spring.x_t Leaf Spring (Material, Contact, geometric nonlinearity) Nonlinear Material configuration - Stress - Strain

More information

Jaguar DFT Optimizations and Transition State Searches

Jaguar DFT Optimizations and Transition State Searches Jaguar DFT Optimizations and Transition State Searches Density Functional Theory (DFT) is a quantum mechanical (QM) method that gives results superior to Hartree Fock (HF) in less computational time. A

More information

T. Interface Energy of Metal-Ceramic Interface Co-WC Using ab initio Thermodynamics

T. Interface Energy of Metal-Ceramic Interface Co-WC Using ab initio Thermodynamics Application Note T. Using ab initio Thermodynamics Introduction In many metal-ceramic composites the interface between the metallic and ceramic phases determines the mechanical properties of the material.

More information

1 Introduction to Computational Chemistry (Spartan)

1 Introduction to Computational Chemistry (Spartan) 1 Introduction to Computational Chemistry (Spartan) Start Spartan by clicking Start / Programs / Spartan Then click File / New Exercise 1 Study of H-X-H Bond Angles (Suitable for general chemistry) Structure

More information

Tutorial. Getting started. Sample to Insight. March 31, 2016

Tutorial. Getting started. Sample to Insight. March 31, 2016 Getting started 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 Getting started

More information

Branislav K. Nikolić

Branislav K. Nikolić First-principles quantum transport modeling of thermoelectricity in nanowires and single-molecule nanojunctions Branislav K. Nikolić Department of Physics and Astronomy, University of Delaware, Newark,

More information

Performing a Pharmacophore Search using CSD-CrossMiner

Performing a Pharmacophore Search using CSD-CrossMiner Table of Contents Introduction... 2 CSD-CrossMiner Terminology... 2 Overview of CSD-CrossMiner... 3 Searching with a Pharmacophore... 4 Performing a Pharmacophore Search using CSD-CrossMiner Version 2.0

More information

Electric Fields and Equipotentials

Electric Fields and Equipotentials OBJECTIVE Electric Fields and Equipotentials To study and describe the two-dimensional electric field. To map the location of the equipotential surfaces around charged electrodes. To study the relationship

More information

You w i ll f ol l ow these st eps : Before opening files, the S c e n e panel is active.

You w i ll f ol l ow these st eps : Before opening files, the S c e n e panel is active. You w i ll f ol l ow these st eps : A. O pen a n i m a g e s t a c k. B. Tr a c e t h e d e n d r i t e w i t h t h e user-guided m ode. C. D e t e c t t h e s p i n e s a u t o m a t i c a l l y. D. C

More information

QuantumATK Platform for Universities & Government Labs

QuantumATK Platform for Universities & Government Labs QuantumATK Platform for Universities & Government Labs QuantumATK is a complete and fully integrated software suite for atomic-scale modeling for academic research, professionally engineered using state-of-the-art

More information

Chemistry 14CL. Worksheet for the Molecular Modeling Workshop. (Revised FULL Version 2012 J.W. Pang) (Modified A. A. Russell)

Chemistry 14CL. Worksheet for the Molecular Modeling Workshop. (Revised FULL Version 2012 J.W. Pang) (Modified A. A. Russell) Chemistry 14CL Worksheet for the Molecular Modeling Workshop (Revised FULL Version 2012 J.W. Pang) (Modified A. A. Russell) Structure of the Molecular Modeling Assignment The molecular modeling assignment

More information

Virtual NanoLab. Tutorial. Version

Virtual NanoLab. Tutorial. Version Virtual NanoLab Tutorial Version 2008.10 Virtual NanoLab: Tutorial Version 2008.10 Copyright 2008 QuantumWise A/S Virtual NanoLab License to Use Agreement Licensor QuantumWise A/S Gyvelvej 20 Solrød Strand

More information

Lab 1 Uniform Motion - Graphing and Analyzing Motion

Lab 1 Uniform Motion - Graphing and Analyzing Motion Lab 1 Uniform Motion - Graphing and Analyzing Motion Objectives: < To observe the distance-time relation for motion at constant velocity. < To make a straight line fit to the distance-time data. < To interpret

More information

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK

ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK ES205 Analysis and Design of Engineering Systems: Lab 1: An Introductory Tutorial: Getting Started with SIMULINK What is SIMULINK? SIMULINK is a software package for modeling, simulating, and analyzing

More information

Coupling Physics. Tomasz Stelmach Senior Application Engineer

Coupling Physics. Tomasz Stelmach Senior Application Engineer Coupling Physics Tomasz Stelmach Senior Application Engineer Agenda Brief look @ Multiphysics solution What is new in R18 Fluent Maxwell coupling wireless power transfer Brief look @ ANSYS Multiphysics

More information

Table of Contents. Table of Contents Spin Transfer Torque. Introduction. Getting Started

Table of Contents. Table of Contents Spin Transfer Torque. Introduction. Getting Started Table of Contents Table of Contents Spin Transfer Torque Introduction Application in Random Access Memory (RAM Theory Getting Started Collinear Initial State Noncollinear State: 90 Spin Rotation Visualizations

More information

Molecular Modeling and Conformational Analysis with PC Spartan

Molecular Modeling and Conformational Analysis with PC Spartan Molecular Modeling and Conformational Analysis with PC Spartan Introduction Molecular modeling can be done in a variety of ways, from using simple hand-held models to doing sophisticated calculations on

More information

Automatic Watershed Delineation using ArcSWAT/Arc GIS

Automatic Watershed Delineation using ArcSWAT/Arc GIS Automatic Watershed Delineation using ArcSWAT/Arc GIS By: - Endager G. and Yalelet.F 1. Watershed Delineation This tool allows the user to delineate sub watersheds based on an automatic procedure using

More information

Table of Contents. Table of Contents Converting lattices: Rhombohedral to hexagonal and back

Table of Contents. Table of Contents Converting lattices: Rhombohedral to hexagonal and back Table of Contents Table of Contents Converting lattices: Rhombohedral to hexagonal and back Conversion between hp and hr representations Converting hp supercell to hr primitive cell Crystal classifications

More information

Dock Ligands from a 2D Molecule Sketch

Dock Ligands from a 2D Molecule Sketch Dock Ligands from a 2D Molecule Sketch 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

More information

Winmostar tutorial LAMMPS Melting point V X-Ability Co,. Ltd. 2017/8/17

Winmostar tutorial LAMMPS Melting point V X-Ability Co,. Ltd. 2017/8/17 Winmostar tutorial LAMMPS Melting point V7.025 X-Ability Co,. Ltd. question@winmostar.com Contents Configure I. Build solid phase II. Equilibration of solid phase III. Equilibration of liquid phase IV.

More information

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism

OECD QSAR Toolbox v.4.1. Tutorial illustrating new options for grouping with metabolism OECD QSAR Toolbox v.4.1 Tutorial illustrating new options for grouping with metabolism Outlook Background Objectives Specific Aims The exercise Workflow 2 Background Grouping with metabolism is a procedure

More information

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014

Bloomsburg University Weather Viewer Quick Start Guide. Software Version 1.2 Date 4/7/2014 Bloomsburg University Weather Viewer Quick Start Guide Software Version 1.2 Date 4/7/2014 Program Background / Objectives: The Bloomsburg Weather Viewer is a weather visualization program that is designed

More information

Chem 1 Kinetics. Objectives. Concepts

Chem 1 Kinetics. Objectives. Concepts Chem 1 Kinetics Objectives 1. Learn some basic ideas in chemical kinetics. 2. Understand how the computer visualizations can be used to benefit the learning process. 3. Understand how the computer models

More information

Stoichiometric Reactor Simulation Robert P. Hesketh and Concetta LaMarca Chemical Engineering, Rowan University (Revised 4/8/09)

Stoichiometric Reactor Simulation Robert P. Hesketh and Concetta LaMarca Chemical Engineering, Rowan University (Revised 4/8/09) Stoichiometric Reactor Simulation Robert P. Hesketh and Concetta LaMarca Chemical Engineering, Rowan University (Revised 4/8/09) In this session you will learn how to create a stoichiometric reactor model

More information

Patrick: An Introduction to Medicinal Chemistry 5e MOLECULAR MODELLING EXERCISES CHAPTER 17

Patrick: An Introduction to Medicinal Chemistry 5e MOLECULAR MODELLING EXERCISES CHAPTER 17 MOLECULAR MODELLING EXERCISES CHAPTER 17 Exercise 17.6 Conformational analysis of n-butane Introduction Figure 1 Butane Me Me In this exercise, we will consider the possible stable conformations of butane

More information

Basic Geostatistics: Pattern Description

Basic Geostatistics: Pattern Description Basic Geostatistics: Pattern Description A SpaceStat Software Tutorial Copyright 2013, BioMedware, Inc. (www.biomedware.com). All rights reserved. SpaceStat and BioMedware are trademarks of BioMedware,

More information

VCell Tutorial. Building a Rule-Based Model

VCell Tutorial. Building a Rule-Based Model VCell Tutorial Building a Rule-Based Model We will demonstrate how to create a rule-based model of EGFR receptor interaction with two adapter proteins Grb2 and Shc. A Receptor-monomer reversibly binds

More information

3D - Structure Graphics Capabilities with PDF-4 Database Products

3D - Structure Graphics Capabilities with PDF-4 Database Products 3D - Structure Graphics Capabilities with PDF-4 Database Products Atomic Structure Information in the PDF-4 Databases ICDD s PDF-4 databases contain atomic structure information for a significant number

More information

PDF-4+ Tools and Searches

PDF-4+ Tools and Searches PDF-4+ Tools and Searches PDF-4+ 2018 The PDF-4+ 2018 database is powered by our integrated search display software. PDF-4+ 2018 boasts 72 search selections coupled with 125 display fields resulting in

More information

Preparing a PDB File

Preparing a PDB File Figure 1: Schematic view of the ligand-binding domain from the vitamin D receptor (PDB file 1IE9). The crystallographic waters are shown as small spheres and the bound ligand is shown as a CPK model. HO

More information

Introduc)on to IQmol: Part I.!!! Shirin Faraji, Ilya Kaliman, and Anna Krylov

Introduc)on to IQmol: Part I.!!! Shirin Faraji, Ilya Kaliman, and Anna Krylov Introduc)on to IQmol: Part I!!! Shirin Faraji, Ilya Kaliman, and Anna Krylov! 1 Resources! Written by Dr. Andrew Gilbert Keep yourself up to date with IQmol website: http://iqmol.org! IQmol Youtube channel:

More information

PDF-4+ Tools and Searches

PDF-4+ Tools and Searches PDF-4+ Tools and Searches PDF-4+ 2019 The PDF-4+ 2019 database is powered by our integrated search display software. PDF-4+ 2019 boasts 74 search selections coupled with 126 display fields resulting in

More information

Modeling thermal conductivity: a Green-Kubo approach

Modeling thermal conductivity: a Green-Kubo approach Modeling thermal conductivity: a Green-Kubo approach Fabiano Oyafuso, Paul von Allmen, Markus Bühler Jet Propulsion Laboratory Pasadena, CA Funding: DARPA Outline Motivation -- thermoelectrics Theory Implementation

More information

Urban Canopy Tool User Guide `bo`

Urban Canopy Tool User Guide `bo` Urban Canopy Tool User Guide `bo` ADMS Urban Canopy Tool User Guide Version 2.0 June 2014 Cambridge Environmental Research Consultants Ltd. 3, King s Parade Cambridge CB2 1SJ UK Telephone: +44 (0)1223

More information

Learning ArcGIS: Introduction to ArcCatalog 10.1

Learning ArcGIS: Introduction to ArcCatalog 10.1 Learning ArcGIS: Introduction to ArcCatalog 10.1 Estimated Time: 1 Hour Information systems help us to manage what we know by making it easier to organize, access, manipulate, and apply knowledge to the

More information

Collisions and conservation laws

Collisions and conservation laws (ta initials) first name (print) last name (print) brock id (ab17cd) (lab date) Experiment 4 Collisions and conservation laws Prelab preparation Print a copy of this experiment to bring to your scheduled

More information

An Extended Hückel Theory based Atomistic Model for Graphene Nanoelectronics

An Extended Hückel Theory based Atomistic Model for Graphene Nanoelectronics Journal of Computational Electronics X: YYY-ZZZ,? 6 Springer Science Business Media, Inc. Manufactured in The Netherlands An Extended Hückel Theory based Atomistic Model for Graphene Nanoelectronics HASSAN

More information

SCIENCE & TECHNOLOGY

SCIENCE & TECHNOLOGY Pertanika J. Sci. & Technol. 25 (S): 205-212 (2017) SCIENCE & TECHNOLOGY Journal homepage: http://www.pertanika.upm.edu.my/ Effect of Boron and Oxygen Doping to Graphene Band Structure Siti Fazlina bt

More information

Winmostar tutorial LAMMPS Polymer modeling V X-Ability Co,. Ltd. 2017/7/6

Winmostar tutorial LAMMPS Polymer modeling V X-Ability Co,. Ltd. 2017/7/6 Winmostar tutorial LAMMPS Polymer modeling V7.021 X-Ability Co,. Ltd. question@winmostar.com 2017/7/6 Contents Configure I. Register a monomer II. Define a polymer III. Build a simulation cell IV. Execute

More information

EOS 102: Dynamic Oceans Exercise 1: Navigating Planet Earth

EOS 102: Dynamic Oceans Exercise 1: Navigating Planet Earth EOS 102: Dynamic Oceans Exercise 1: Navigating Planet Earth YOU MUST READ THROUGH THIS CAREFULLY! This exercise is designed to familiarize yourself with Google Earth and some of its basic functions while

More information

Carbon Structure Simulations using Crystal Viewer Tool

Carbon Structure Simulations using Crystal Viewer Tool Carbon Structure Simulations using Crystal Viewer Tool The Crystal Viewer tool in nanohub.org can be used to build three carbon nanostructures: graphene sheets, Buckminsterfullerene, Bucky balls (C 60

More information

TECDIS and TELchart ECS Weather Overlay Guide

TECDIS and TELchart ECS Weather Overlay Guide 1 of 24 TECDIS and TELchart ECS provides a very advanced weather overlay feature, using top quality commercial maritime weather forecast data available as a subscription service from Jeppesen Marine. The

More information

Available online at ScienceDirect. Procedia Materials Science 11 (2015 )

Available online at   ScienceDirect. Procedia Materials Science 11 (2015 ) Available online at www.sciencedirect.com ScienceDirect Procedia Materials Science 11 (2015 ) 407 411 5th International Biennial Conference on Ultrafine Grained and Nanostructured Materials, FGNSM15 Simulation

More information

Winmostar tutorial Gromacs Interfacial Tension V X-Ability Co., Ltd. 2018/01/15

Winmostar tutorial Gromacs Interfacial Tension V X-Ability Co., Ltd. 2018/01/15 Winmostar tutorial Gromacs Interfacial Tension V8.007 X-Ability Co., Ltd. question@winmostar.com Summary In this tutorial, we will calculate density distribution and interfacial tension between liquid-liquid

More information

ArcGIS 9 ArcGIS StreetMap Tutorial

ArcGIS 9 ArcGIS StreetMap Tutorial ArcGIS 9 ArcGIS StreetMap Tutorial Copyright 2001 2008 ESRI All Rights Reserved. Printed in the United States of America. The information contained in this document is the exclusive property of ESRI. This

More information

PDF-2 Tools and Searches

PDF-2 Tools and Searches PDF-2 Tools and Searches PDF-2 2019 The PDF-2 2019 database is powered by our integrated search display software. PDF-2 2019 boasts 69 search selections coupled with 53 display fields resulting in a nearly

More information

Mnova Software for Analyzing Reaction Monitoring NMR Spectra

Mnova Software for Analyzing Reaction Monitoring NMR Spectra Mnova Software for Analyzing Reaction Monitoring NMR Spectra Version 10 Chen Peng, PhD, VP of Business Development, US & China Mestrelab Research SL San Diego, CA, USA chen.peng@mestrelab.com 858.736.4563

More information

Spectrometer User s Guide

Spectrometer User s Guide Spectrometer User s Guide (Order Codes: V-SPEC, SPRT-VIS, SP-VIS, SP-UV-VIS, ESRT-VIS) The spectrometer is a portable light spectrophotometer, combining a spectrometer and a light source/cuvette holder.

More information

Experiment P-5 Motion of a Cart on an Inclined Plane

Experiment P-5 Motion of a Cart on an Inclined Plane 1 Experiment P-5 Motion of a Cart on an Inclined Plane Objectives To learn about the four motion equations. To study the motion of a cart on an inclined plane. To study motion with constant acceleration.

More information

Working with ArcGIS: Classification

Working with ArcGIS: Classification Working with ArcGIS: Classification 2 Abbreviations D-click R-click TOC Double Click Right Click Table of Content Introduction The benefit from the use of geographic information system (GIS) software is

More information

NMR Predictor. Introduction

NMR Predictor. Introduction NMR Predictor This manual gives a walk-through on how to use the NMR Predictor: Introduction NMR Predictor QuickHelp NMR Predictor Overview Chemical features GUI features Usage Menu system File menu Edit

More information

BOUNDARY MAP USER GUIDE

BOUNDARY MAP USER GUIDE BOUNDARY MAP USER GUIDE Get Exploring. Boundaries. The Northern Ontario Boundary Map provides users with the ability to explore the many community, administrative and service provider boundaries in the

More information

LAB 2 - ONE DIMENSIONAL MOTION

LAB 2 - ONE DIMENSIONAL MOTION Name Date Partners L02-1 LAB 2 - ONE DIMENSIONAL MOTION OBJECTIVES Slow and steady wins the race. Aesop s fable: The Hare and the Tortoise To learn how to use a motion detector and gain more familiarity

More information

EXPERIMENT 4 ONE DIMENSIONAL MOTION

EXPERIMENT 4 ONE DIMENSIONAL MOTION EXPERIMENT 4 ONE DIMENSIONAL MOTION INTRODUCTION This experiment explores the meaning of displacement; velocity, acceleration and the relationship that exist between them. An understanding of these concepts

More information

General Chemistry Lab Molecular Modeling

General Chemistry Lab Molecular Modeling PURPOSE The objectives of this experiment are PROCEDURE General Chemistry Lab Molecular Modeling To learn how to use molecular modeling software, a commonly used tool in chemical research and industry.

More information

Simple circuits - 3 hr

Simple circuits - 3 hr Simple circuits - 3 hr Resistances in circuits Analogy of water flow and electric current An electrical circuit consists of a closed loop with a number of different elements through which electric current

More information

OECD QSAR Toolbox v.4.0. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.0. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.0 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

Winmostar tutorial LAMMPS Polymer Annealing V X-Ability Co., Ltd. 2018/01/15

Winmostar tutorial LAMMPS Polymer Annealing V X-Ability Co., Ltd. 2018/01/15 Winmostar tutorial LAMMPS Polymer Annealing V8.007 X-Ability Co., Ltd. question@winmostar.com 2018/01/15 Summary In this tutorial we will calculate glass transition temperature from the cooling process

More information

Application Note. Capillary Zone Electrophoresis

Application Note. Capillary Zone Electrophoresis Application Note Capillary Zone Electrophoresis i Application Note: Capillary Zone Electrophoresis Version 8/PC Part Number 30-090-101 September 2008 Copyright IntelliSense Software Corporation 2004, 2005,

More information

Ratio of Polynomials Fit One Variable

Ratio of Polynomials Fit One Variable Chapter 375 Ratio of Polynomials Fit One Variable Introduction This program fits a model that is the ratio of two polynomials of up to fifth order. Examples of this type of model are: and Y = A0 + A1 X

More information

Environmental Systems Research Institute

Environmental Systems Research Institute Introduction to ArcGIS ESRI Environmental Systems Research Institute Redlands, California 2 ESRI GIS Development Arc/Info (coverage model) Versions 1-7 from 1980 1999 Arc Macro Language (AML) ArcView (shapefile

More information

ELEC 1908 The Electric Potential (V) March 28, 2013

ELEC 1908 The Electric Potential (V) March 28, 2013 ELEC 1908 The Electric Potential (V) March 28, 2013 1 Abstract The objective of this lab is to solve numerically Laplace s equation in order to obtain the electric potential distribution in di erent electric

More information

Computational Study of Chemical Kinetics (GIDES)

Computational Study of Chemical Kinetics (GIDES) Computational Study of Chemical Kinetics (GIDES) Software Introduction Berkeley Madonna (http://www.berkeleymadonna.com) is a dynamic modeling program in which relational diagrams are created using a graphical

More information

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance

OECD QSAR Toolbox v.4.1. Tutorial on how to predict Skin sensitization potential taking into account alert performance OECD QSAR Toolbox v.4.1 Tutorial on how to predict Skin sensitization potential taking into account alert performance Outlook Background Objectives Specific Aims Read across and analogue approach The exercise

More information

Tutorial I: IQ MOL and Basic DFT and MP2 Calculations 1 / 30

Tutorial I: IQ MOL and Basic DFT and MP2 Calculations 1 / 30 Tutorial I: IQ MOL and Basic DFT and MP2 Calculations Q-Chem User Workshop, Denver March 21, 2015 1 / 30 2 / 30 Introduction to IQMOL DFT and MP2 Calculations 3 / 30 IQMOL and Q-CHEM IQMOL is an open-source

More information

Temperature Sensor -40 C to 140 C

Temperature Sensor -40 C to 140 C imagine explore learn Temperature Sensor -40 C to 140 C Product Number: ENTMP029 Overview Monitoring temperature change is a key part of many scientific experiments. Our Temperature sensor is made of stainless

More information

IncuCyte ZOOM NeuroTrack Fluorescent Processing

IncuCyte ZOOM NeuroTrack Fluorescent Processing IncuCyte ZOOM NeuroTrack Fluorescent Processing The NeuroTrack TM Software Module (Cat No 9600-0011) is used to measure the processes of neurons in monoculture or with fluorescent labeling in co-culture.

More information

Exercises for Windows

Exercises for Windows Exercises for Windows CAChe User Interface for Windows Select tool Application window Document window (workspace) Style bar Tool palette Select entire molecule Select Similar Group Select Atom tool Rotate

More information

Electric Field PHYS 296

Electric Field PHYS 296 Electric Field PHYS 296 Your name Lab section PRE-LAB QUIZZES 1. What will we investigate in this lab? 2. In a uniform electric field between two parallel plates, a potential probe records the electric

More information

Homework 2: Structure and Defects in Crystalline and Amorphous Materials

Homework 2: Structure and Defects in Crystalline and Amorphous Materials Homework 2: Structure and Defects in Crystalline and Amorphous Materials Muhammad Ashraful Alam Network of Computational Nanotechnology Discovery Park, Purdue University. In Lectures 4-6, we have discussed

More information

SeeSAR 7.1 Beginners Guide. June 2017

SeeSAR 7.1 Beginners Guide. June 2017 SeeSAR 7.1 Beginners Guide June 2017 Part 1: Basics 1 Type a pdb code and press return or Load your own protein or already existing project, or Just load molecules To begin, let s type 2zff and download

More information

Table of content. Understanding workflow automation - Making the right choice Creating a workflow...05

Table of content. Understanding workflow automation - Making the right choice Creating a workflow...05 Marketers need to categorize their audience to maximize their r e a c h. Z o h o C a m p a i g n s a u t o m a t e s r e c i p i e n t c l a s s i fi c a t i o n a n d action performance to free up marketers

More information

Ligand Scout Tutorials

Ligand Scout Tutorials Ligand Scout Tutorials Step : Creating a pharmacophore from a protein-ligand complex. Type ke6 in the upper right area of the screen and press the button Download *+. The protein will be downloaded and

More information

Lab 1: Numerical Solution of Laplace s Equation

Lab 1: Numerical Solution of Laplace s Equation Lab 1: Numerical Solution of Laplace s Equation ELEC 3105 last modified August 27, 2012 1 Before You Start This lab and all relevant files can be found at the course website. You will need to obtain an

More information

Work and Energy. This sum can be determined graphically as the area under the plot of force vs. distance. 1

Work and Energy. This sum can be determined graphically as the area under the plot of force vs. distance. 1 Work and Energy Experiment 18 Work is a measure of energy transfer. In the absence of friction, when positive work is done on an object, there will be an increase in its kinetic or potential energy. In

More information

Instructions for Using Spartan 14

Instructions for Using Spartan 14 Instructions for Using Spartan 14 Log in to the computer with your Colby ID and password. Click on the Spartan 14 icon in the dock at the bottom of your screen. I. Building Molecules Spartan has one main

More information

X: The Hall Effect in Metals

X: The Hall Effect in Metals X: The all Effect in Metals I. References C. Kittel: Introduction to Solid State Physics, pp. 148-151. Ashcroft and Mermin: Solid state Physics, pp. 6-15. Dekker: Solid State Physics, pp. 301-302. Yarwood:

More information

Creating a Pharmacophore Query from a Reference Molecule & Scaffold Hopping in CSD-CrossMiner

Creating a Pharmacophore Query from a Reference Molecule & Scaffold Hopping in CSD-CrossMiner Table of Contents Creating a Pharmacophore Query from a Reference Molecule & Scaffold Hopping in CSD-CrossMiner Introduction... 2 CSD-CrossMiner Terminology... 2 Overview of CSD-CrossMiner... 3 Features

More information