NEGF Simulation of Electron Transport in Carbon Nano-tubes and Graphene Nanoribbons

Size: px
Start display at page:

Download "NEGF Simulation of Electron Transport in Carbon Nano-tubes and Graphene Nanoribbons"

Transcription

1 2009 Summer School: Electronics from the Bottom Up NEGF Simulation of Electron Transport in Carbon Nano-tubes and Graphene Nanoribbons Samiran Ganguly and Seokmin Hong Purpose of the Experiment and Simulation: To convey a basic understanding of how electron transport through any given device may be solved using Non-equilibrium Green s Function approach and specifically through Carbon Nanotubes and Graphene Nano-ribbons in both Armchair and Zigzag configurations. Expected outcomes: After the lab session it is expected that the participant will have a basic understanding and appreciation of the following: NEGF formalism of quantum transport How a Hamiltonian of a given device may be written using the tight-binding method How Self-energy matrices may be calculated using iterative solution of surface Green s Functions How to include phase breaking processes (example to be covered is the electron-electron interaction) How to plot the band structure of the given device Calculate transmission through the device This lab session is meant to provide some hands-on practice to the lecture G5 of 2009 NCN@Purdue Summer School titled NEGF Simulation of Graphene Nanodevices by Prof. Supriyo Datta. 1

2 2009 Summer School: Electronics from the Bottom Up Introduction Graphene is essentially one-atom thick sheet of carbon atoms arranged in a hexagonal structure. Each carbon atom is thus sp 2 -hybridized leaving a free p orbital (conventionally p z orbital) with a single electron which then form delocalized π bonds. This can give rise to high conductivity in a graphene sheet. There are two associated carbon nano-structures which are also of great interest as material for future devices: Graphene Nano-ribbon, which is essentially a thin strip of graphene (which exhibits quantization of bands due to finite width, the box boundary condition) and Carbon Nano-tube which is essentially a nano-ribbon rolled up along its length (and hence has a periodic boundary condition) Deping upon how the nano-ribbon is cut or nano-tube grown, the structure of the device can vary, thereby giving different electrical properties. The structure of the device is often specified in terms of chirality of the device. For a visual definition of the chirality see the figure 1 attached at the of this handout. In this experiment we simulate 2 special chiralities: Armchair and Zigzag. However, note that the nano-tube configuration is as per the chirality of the transverse direction (i.e. transverse to the electron transport) and in nano-ribbon it is as per the longitudinal direction. See figure 2 for a better understanding. Description of the Hamiltonian For a better understanding of the following description, please refer to figure 3. We define a 4-atom unit cell (outlined by blue) which we will use to construct our Hamiltonian. The tight binding energy t is approximated to 3eV (the strength of the π bond). Using this information and the geometry of the unit cell we construct the matrix: 0 t 0 0 t 0 t 0 u 0 t 0 t 0 0 t 0 for each individual unit cell. We further see that the connection between the unit cells is defined by the matrices: t t t Therefore, deping upon the structure of the device, we can decide which of the connection are longitudinal and which ones are the transverse l w 2

3 2009 Summer School: Electronics from the Bottom Up Now to convert the problem into a 1-D problem, we can define another one single column of each individual unit cell as one single super -unit cell using the following matrix: u w 0 w' u. 0.. And the connection between these two super -unit cells is given by: l l. 0.. The complete Hamiltonian may, then, be written as: H 0 0 ' 0 0 ' Band structure Using the same tight binding method to create a 1-D array of unit cells, we may then proceed to calculate the band-structure of the device by using: ika ika h k e e Which can be derived from time-indepent formulation of Schrodinger s Equation (see chapter 5, Quantum Transport: Atom to Transistor, Supriyo Datta) The sub-bands are simply given by the Eigen values of hk of the previous expression. 3

4 2009 Summer School: Electronics from the Bottom Up MATLAB Code The provided MATLAB code calculates the transmission and sub-bands of a GNR and CNT device with Armchair and Zigzag edges. The following is a description of the MATLAB code: The code has been divided into 4 different sections: Device Setup This section defines some fundamental constants, the tight binding parameter t and accepts some inputs from the user regarding the type of device, structure and the width of the device (in terms of unit cells of 4-atoms). Since we are working in ballistic limit (we have considered only phase breaking processes) the transport through the device is indepent of the length, therefore to reduce computational time, we have taken the length of the device as 1. NEGF Setup This section is used to setup the Hamiltonian. This section uses some MATLAB commands to construct the matrices, described in the section Description of the Hamiltonian, in a concise way. To understand how they have been constructed, it would be useful to keep the MATLAB code and the above mentioned section side-by-side for comparison. Short descriptions of the commands are as below: diag: used to either extract a diagonal matrix or to construct a diagonal matrix. Diag(a,b) uses the array a as the diagonal elements, and b as the offset from the primary diagonal, +1 means one above the primary diagonal and -1 means one below the primary diagonal. This form can be used to quickly place elements in diagonal and off diagonal elements. ones and zeros: these are used to construct matrices fully composed of 1 and 0. eye: used to construct an identity matrix. kron: used for Kronecker tensor product. kron(x,y) constructs a big matrix composed of all the possible element-by element products of the matrices x and y. This can be used to construct the Hamiltonian in a concise way, when it is desired to put complete matrices in certain positions in the resulting matrix, which is not possible with the diag command. linspace: used to construct a vector with linearly spaced elements. linspace(p,q,r) creates an array whose elements range from p to q with r equally spaced elements. Use the command help or doc followed by command name to get more help on the commands 4

5 2009 Summer School: Electronics from the Bottom Up In line 81, we have implemented the periodic boundary condition for the CNT device by connecting the 1 st and the n th element of the super -unit cell by adding the two additional and elements. NEGF Calculation In this section we calculate the transmission and the band structure of the device. The transmission is calculated for energies -1 ev to 1 ev. Increasing the number of energy points make the calculation more time consuming. We then proceed to calculate the self energy matrices 1 and 2 using the iterative method as outlined in chapter 8, Quantum Transport: Atom to Transistor, Supriyo Datta. Since 1 is for the left contact, as per the structure of the Hamiltonian 1 g 1, because the left lead is connected by and right by ( g 1 is the surface Green s function for left contact, denoted as 1). Similarly, for contact 2 or the right contact 2 g2. See figure 3. Since acts as connection to the contacts, they have to be placed at proper locations along the longitudinal direction, which are done using the lines 119 and 120 (at the left most and right most points). We then calculate the Green s function of the device self consistently, including the electronelectron interaction, which is described by the phase-breaking potential D. See the lecture for the details. We then calculate the transmission of the device at the given energy. This process is repeated for all the energy points, to give us transmission through the device at energy range selected previously. We also calculate the sub bands using the formulation described previously in the section Band structure. Plot figures This section is used to plot the transmission and sub bands. A point to note: Increasing the width of the devices increases the computation time quite significantly, so for the purpose of the lab, use the values of 7, 8 and 9 which should run in a reasonable amount of time. 5

6 2009 Summer School: Electronics from the Bottom Up Further exploration Explain the steps observed in the Energy v Transmission plots in terms of sub-bands at the given energy. Explain which bands are degenerate for the GNR and CNT. If needed, change the energy range of the simulation. The code given to you is limited in the sense of chiralities it can simulate. Think about how you extract the unit cell for any given chirality and calculate sub-bands and transmission through it. The unit cell we have defined cannot simulate a monolayer Graphene nano-ribbon. Think about how you can define the unit cell to simulate a monolayer GNR. A part of the code which can calculate the Transmission for the coherent transport, compare the plots of coherent and incoherent transports and note the effect if increasing the value of D, the phase breaking potential. (defined in line 40) Another part of the code that is commented out calculates the Correlation function. Create a surface plot the diagonal elements of the correlation function with the energy. (diagonal elements of the correlation function corresponds to the electron density at that site) 6

7 Fig. 1: Chirality in a Graphene sheet a 2 a 1 Zigzag n,0 na ma n, m 1 2 Armchair nn, Image idea courtesy User:Kebes from Wikipedia

8 Fig2: Configurations of a GNR and CNT Armchair GNR Zigzag GNR Armchair CNT Zigzag CNT

9 Fig. 3: Definition of Unit cell and construction of the Hamiltonian u u 2 u 1 u t t u t t 0 0 t 0 t 0 u w 0 '. 0 t 0 t w u t 0 l l. 0.. In GNR Armchair case: 1 l, 2 win Zigzag case: 2 l, 1 w In CNT Armchair and Zigzag configurations are reversed. H 0 0 ' 0 0 '

10 %************************************************************************ % MATLAB code to generate Transmission and Sub-bands plots % for GNR and CNT devices % Developed by Samiran Ganguly % For NCN Summer School Purdue %************************************************************************ %% Device Setup clear all; clc; %define constants q = 1.6e-19; hbar = 1.06e-34;h = 2*pi*hbar;m = 9.1e-31;zplus=i*1e-3; %t has been given as a parameter t = -3; f1 =1; f2 = 0; fprintf(1,'enter the type of device you want to simulate GNR/CNT\n') fprintf(1,'1 for GNR\n'); fprintf(1,'2 for CNT\n'); device = input('valid inputs are 1 or 2 : '); if (~((device == 1) (device == 2))) device = 1; fprintf(1,'enter the configuration of device you want to simulate Armchair/Zigzag\n') fprintf(1,'1 for Armchair\n'); fprintf(1,'2 for Zigzag\n'); type = input('valid inputs are 1 or 2 : '); if (~((type == 1) (type == 2))) type = 1; %Points in GNR/CNT width NW = input('enter number of Unit Cells in the width : '); if isempty(nw) NW = 12; %Points in GNR/CNT length NL = 1; %Points in GNR/CNT unit cell NU = 4; %Define any scatterer as a delta potential barrier %No scatterer %Define phase breaking potential D = 1e-12; %Convergence criteria errmax = 1e-3; %Total H will be of LxWxU size NT = NL*NW*NU; fprintf(1,'simulating...\n'); if (device == 1) fprintf(1,'device: Graphene Nano-Ribbon\n'); else fprintf(1,'device: Carbon Nanotube\n'); if (type == 1) fprintf(1,'type: Armchair\n'); else fprintf(1,'type: Zigzag\n'); %% NEGF Setup

11 %Define Hamiltonians and alpha, beta matrices fprintf(1,'hamiltonian Setup...please wait\n'); alphau = t*diag(ones(1,nu-1),1)+t*diag(ones(1,nu-1),-1); betaw = zeros(nu); betal = zeros(nu); %Armchair Structure for GNR if ((type == 1)&&(device == 1)) betaw(2,1) = t; betaw(3,4) = t; betal(4,1) = t; elseif ((type == 2)&&(device == 1)) %Zigzag Structure for GNR betaw(4,1) = t; betal(2,1) = t; betal(3,4) = t; elseif ((type == 1)&&(device == 2)) %Armchair Structure for CNT betaw(4,1) = t; betal(2,1) = t; betal(3,4) = t; else %Zigzag Structure for CNT betaw(2,1) = t; betaw(3,4) = t; betal(4,1) = t; alpha = kron(diag(ones(1,nw)),alphau)+kron(diag(ones(1,nw- 1),1),betaw)+kron(diag(ones(1,NW-1),-1),betaw'); if (device == 2) alpha = alpha+kron(diag(ones(1,1),nw-1),betaw')+kron(diag(ones(1,1),1- NW),betaw); beta = kron(diag(ones(1,nw)),betal); H = kron(diag(ones(1,nl)),alpha)+kron(diag(ones(1,nl- 1),1),beta)+kron(diag(ones(1,NL-1),-1),beta'); %Define Energy grid for calculation of Transmission E = linspace(-1,1,51); %Define the matrices for NEGF T = zeros(1,length(e)); g1 = inv(e(1)*eye(nw*nu)-alpha); g2 = inv(e(1)*eye(nw*nu)-alpha); Es = zeros(nt); Esin = zeros(nt); fprintf(1,'done\n'); %% NEGF Calculations fprintf(1,'running NEGF...please wait\n') fprintf(1,'energy range = %d ev to %d ev\n',min(e),max(e)); fprintf(1,'%s\n',['[',blanks(length(e)),']']); fprintf(1,' '); %Run for each energy for k = 1:length(E) %Calculate surface GFs self consistently %Calculate for beta' err = 100; while(err>errmax) g1new = inv((e(k)+zplus)*eye(nw*nu)-alpha-beta'*g1*beta); err = (sum(sum(abs(g1new-g1))))/(sum(sum(abs(g1new+g1)))); g1 = g1new; sigma1 = beta'*g1*beta; %Calculate for beta

12 err = 100; while(err>errmax) g2new = inv((e(k)+zplus)*eye(nw*nu)-alpha-beta*g2*beta'); err = (sum(sum(abs(g2new-g2))))/(sum(sum(abs(g2new+g2)))); g2 = g2new; sigma2 = beta*g2*beta'; %Calculate self energy matrices E1 = kron(diag([1 zeros(1,nl-1)]),sigma1); E2 = kron(diag([zeros(1,nl-1) 1]),sigma2); %Calculate broadening G1 = 1i*(E1-E1'); G2 = 1i*(E2-E2'); %Calculate G, Gn, A, T for coherent transport % G = inv((e(k)+1i*etaplus)*eye(nt)-h-e1-e2); % T(k) = real(trace(g1*g*g2*g')); % Gn = f1*(g*g1*g')+f2*(g*g2*g'); % A = i*(g-g'); %Calculate G, Gn, A, T self consistently including the phase breaking processes err = 100; while(err>errmax) G = inv((e(k)+zplus)*eye(nt)-h-e1-e2-es); Esnew = D*G; err = sum(sum(abs(esnew-es)))/sum(sum(abs(esnew+es))); Es = Esnew; % err = 100; % while(err>errmax) % Gn = f1*(g*g1*g')+f2*(g*g2*g')+(g*esin*g'); % Esinnew = D*Gn; % err = sum(sum(abs(esinnew-esin)))/sum(sum(abs(esinnew+esin))); % Esin = Esinnew; % % A = i*(g-g'); T(k) = real(trace(g1*g*g2*g')); fprintf(1,' '); fprintf(1,'\n'); fprintf(1,'done\n'); %Calculate Subbands ka = linspace(-pi,pi,501); eige = zeros(length(ka),nw*nu); fprintf(1,'calculating Sub-bands...please wait\n'); for k = 1:length(ka) [V,D] = eig(alpha + beta*exp(i*ka(k))+ beta'*exp(-i*ka(k))); eige(k,:) = diag(d); fprintf(1,'done\n'); %% Plot Figures %Figure 1: Transmission and sub-band comparison figure(1); subplot(1,2,1); plot(t,e); xlabel('t(e)'); ylabel('e[ev]'); title('energy v Transmission'); xlim([0 max(t)+0.5]);

13 ylim([min(e) max(e)]); subplot(1,2,2); plot(ka/pi,eige); xlabel('ka/\pi'); ylabel('e[ev]'); title('sub-bands'); ylim([min(e) max(e)]); %Figure 2: Sub-bands figure(2); plot(ka/pi,eige,'b'); xlabel('ka/\pi'); ylabel('e[ev]'); title('sub-bands');

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

3-month progress Report

3-month progress Report 3-month progress Report Graphene Devices and Circuits Supervisor Dr. P.A Childs Table of Content Abstract... 1 1. Introduction... 1 1.1 Graphene gold rush... 1 1.2 Properties of graphene... 3 1.3 Semiconductor

More information

Clar Sextet Theory for low-dimensional carbon nanostructures: an efficient approach based on chemical criteria

Clar Sextet Theory for low-dimensional carbon nanostructures: an efficient approach based on chemical criteria Clar Sextet Theory for low-dimensional carbon nanostructures: an efficient approach based on chemical criteria Matteo Baldoni Fachbereich Chemie, Technische Universität Dresden, Germany Department of Chemistry

More information

Graphene and Carbon Nanotubes

Graphene and Carbon Nanotubes Graphene and Carbon Nanotubes 1 atom thick films of graphite atomic chicken wire Novoselov et al - Science 306, 666 (004) 100μm Geim s group at Manchester Novoselov et al - Nature 438, 197 (005) Kim-Stormer

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

Calculating Electronic Structure of Different Carbon Nanotubes and its Affect on Band Gap

Calculating Electronic Structure of Different Carbon Nanotubes and its Affect on Band Gap Calculating Electronic Structure of Different Carbon Nanotubes and its Affect on Band Gap 1 Rashid Nizam, 2 S. Mahdi A. Rizvi, 3 Ameer Azam 1 Centre of Excellence in Material Science, Applied Physics AMU,

More information

Graphene Devices, Interconnect and Circuits Challenges and Opportunities

Graphene Devices, Interconnect and Circuits Challenges and Opportunities Graphene Devices, Interconnect and Circuits Challenges and Opportunities Mircea R. Stan, Dincer Unluer, Avik Ghosh, Frank Tseng Univ. of Virginia, ECE Dept., Charlottesville, VA 22904 {mircea,du7x,ag7rq,ft8e}@virginia.edu

More information

ELECTRONIC ENERGY DISPERSION AND STRUCTURAL PROPERTIES ON GRAPHENE AND CARBON NANOTUBES

ELECTRONIC ENERGY DISPERSION AND STRUCTURAL PROPERTIES ON GRAPHENE AND CARBON NANOTUBES ELECTRONIC ENERGY DISPERSION AND STRUCTURAL PROPERTIES ON GRAPHENE AND CARBON NANOTUBES D. RACOLTA, C. ANDRONACHE, D. TODORAN, R. TODORAN Technical University of Cluj Napoca, North University Center of

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

CHAPTER 6 CHIRALITY AND SIZE EFFECT IN SINGLE WALLED CARBON NANOTUBES

CHAPTER 6 CHIRALITY AND SIZE EFFECT IN SINGLE WALLED CARBON NANOTUBES 10 CHAPTER 6 CHIRALITY AND SIZE EFFECT IN SINGLE WALLED CARBON NANOTUBES 6.1 PREAMBLE Lot of research work is in progress to investigate the properties of CNTs for possible technological applications.

More information

Conductance of Graphene Nanoribbon Junctions and the Tight Binding Model

Conductance of Graphene Nanoribbon Junctions and the Tight Binding Model Wu and Childs Nanoscale es Lett, 6:6 http://www.nanoscalereslett.com/content/6//6 NANO EXPE Open Access Conductance of Graphene Nanoribbon Junctions and the Tight Binding Model Y Wu, PA Childs * Abstract

More information

Theoretical Modeling of Tunneling Barriers in Carbon-based Molecular Electronic Junctions

Theoretical Modeling of Tunneling Barriers in Carbon-based Molecular Electronic Junctions Second Revised version, jp-2014-09838e Supporting Information Theoretical Modeling of Tunneling Barriers in Carbon-based Molecular Electronic Junctions Mykola Kondratenko 1,2, Stanislav R. Stoyanov 1,3,4,

More information

Carbon nanotubes: Models, correlations and the local density of states

Carbon nanotubes: Models, correlations and the local density of states Carbon nanotubes: Models, correlations and the local density of states Alexander Struck in collaboration with Sebastián A. Reyes Sebastian Eggert 15. 03. 2010 Outline Carbon structures Modelling of a carbon

More information

CARBON NANOTUBE ELECTRONICS: MODELING, PHYSICS, AND APPLICATIONS. A Thesis. Submitted to the Faculty. Purdue University. Jing Guo

CARBON NANOTUBE ELECTRONICS: MODELING, PHYSICS, AND APPLICATIONS. A Thesis. Submitted to the Faculty. Purdue University. Jing Guo 0 CARBON NANOTUBE ELECTRONICS: MODELING, PHYSICS, AND APPLICATIONS A Thesis Submitted to the Faculty of Purdue University by Jing Guo In Partial Fulfillment of the Requirements for the Degree of Doctor

More information

Refering to Fig. 1 the lattice vectors can be written as: ~a 2 = a 0. We start with the following Ansatz for the wavefunction:

Refering to Fig. 1 the lattice vectors can be written as: ~a 2 = a 0. We start with the following Ansatz for the wavefunction: 1 INTRODUCTION 1 Bandstructure of Graphene and Carbon Nanotubes: An Exercise in Condensed Matter Physics developed by Christian Schönenberger, April 1 Introduction This is an example for the application

More information

Evaluation of Electronic Characteristics of Double Gate Graphene Nanoribbon Field Effect Transistor for Wide Range of Temperatures

Evaluation of Electronic Characteristics of Double Gate Graphene Nanoribbon Field Effect Transistor for Wide Range of Temperatures Evaluation of Electronic Characteristics of Double Gate Graphene Nanoribbon Field Effect Transistor for Wide Range of Temperatures 1 Milad Abtin, 2 Ali Naderi 1 Department of electrical engineering, Masjed

More information

Nanoscience quantum transport

Nanoscience quantum transport Nanoscience quantum transport Janine Splettstößer Applied Quantum Physics, MC2, Chalmers University of Technology Chalmers, November 2 10 Plan/Outline 4 Lectures (1) Introduction to quantum transport (2)

More information

Carbon Nanotubes (CNTs)

Carbon Nanotubes (CNTs) Carbon Nanotubes (s) Seminar: Quantendynamik in mesoskopischen Systemen Florian Figge Fakultät für Physik Albert-Ludwigs-Universität Freiburg July 7th, 2010 F. Figge (University of Freiburg) Carbon Nanotubes

More information

structure of graphene and carbon nanotubes which forms the basis for many of their proposed applications in electronics.

structure of graphene and carbon nanotubes which forms the basis for many of their proposed applications in electronics. Chapter Basics of graphene and carbon nanotubes This chapter reviews the theoretical understanding of the geometrical and electronic structure of graphene and carbon nanotubes which forms the basis for

More information

Effects of edge chemistry doping on graphene nanoribbon mobility

Effects of edge chemistry doping on graphene nanoribbon mobility Effects of edge chemistry doping on graphene nanoribbon mobility Yijian Ouyang 1, Stefano Sanvito 2 and Jing Guo 1, * 1 Department of Electrical and Computer Engineering, University of Florida, Gainesville,

More information

Quantized Electrical Conductance of Carbon nanotubes(cnts)

Quantized Electrical Conductance of Carbon nanotubes(cnts) Quantized Electrical Conductance of Carbon nanotubes(cnts) By Boxiao Chen PH 464: Applied Optics Instructor: Andres L arosa Abstract One of the main factors that impacts the efficiency of solar cells is

More information

Spin and Charge transport in Ferromagnetic Graphene

Spin and Charge transport in Ferromagnetic Graphene Spin and Charge transport in Ferromagnetic Graphene Hosein Cheraghchi School of Physics, Damghan University Recent Progress in D Systems, Oct, 4, IPM Outline: Graphene Spintronics Background on graphene

More information

SUPPLEMENTARY INFORMATION

SUPPLEMENTARY INFORMATION SUPPLEMENTARY INFORMATION DOI: 10.1038/NNANO.2011.138 Graphene Nanoribbons with Smooth Edges as Quantum Wires Xinran Wang, Yijian Ouyang, Liying Jiao, Hailiang Wang, Liming Xie, Justin Wu, Jing Guo, and

More information

ELECTRONIC PROPERTIES OF GRAPHENE NANO STRUCTURES A THESIS SUBMITTED TO THE GRADUATE SCHOOL IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE

ELECTRONIC PROPERTIES OF GRAPHENE NANO STRUCTURES A THESIS SUBMITTED TO THE GRADUATE SCHOOL IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE ELECTRONIC PROPERTIES OF GRAPHENE NANO STRUCTURES A THESIS SUBMITTED TO THE GRADUATE SCHOOL IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE MASTER OF SCIENCE BY SPENCER JONES ADVISOR: DR. MAHFUZA

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

ECE 474: Principles of Electronic Devices. Prof. Virginia Ayres Electrical & Computer Engineering Michigan State University

ECE 474: Principles of Electronic Devices. Prof. Virginia Ayres Electrical & Computer Engineering Michigan State University ECE 474: Principles of Electronic Devices Prof. Virginia Ayres Electrical & Computer Engineering Michigan State University ayresv@msu.edu Lecture 07: Quantify physical structures of crystal systems that

More information

Lessons from Nanoscience: A Lecture Note Series

Lessons from Nanoscience: A Lecture Note Series Lessons from Nanoscience: A Lecture Note Series http://nanohub.org/topics/lessonsfromnanoscience Volume 1: Lessons from Nanoelectronics: A New Perspective on Transport Supriyo Datta Purdue University datta@purdue.edu

More information

Random Telegraph Signal in Carbon Nanotube Device

Random Telegraph Signal in Carbon Nanotube Device Random Telegraph Signal in Carbon Nanotube Device Tsz Wah Chan Feb 28, 2008 1 Introduction 1. Structure of Single-walled Carbon Nanotube (SWCNT) 2. Electronic properties of SWCNT 3. Sample preparation:

More information

Nanoscience, MCC026 2nd quarter, fall Quantum Transport, Lecture 1/2. Tomas Löfwander Applied Quantum Physics Lab

Nanoscience, MCC026 2nd quarter, fall Quantum Transport, Lecture 1/2. Tomas Löfwander Applied Quantum Physics Lab Nanoscience, MCC026 2nd quarter, fall 2012 Quantum Transport, Lecture 1/2 Tomas Löfwander Applied Quantum Physics Lab Quantum Transport Nanoscience: Quantum transport: control and making of useful things

More information

Computational Model of Edge Effects in Graphene Nanoribbon Transistors

Computational Model of Edge Effects in Graphene Nanoribbon Transistors Nano Res (2008) 1: 395 402 DOI 10.1007/s12274-008-8039-y Research Article 00395 Computational Model of Edge Effects in Graphene Nanoribbon Transistors Pei Zhao 1, Mihir Choudhury 2, Kartik Mohanram 2,

More information

Electrostatic Single-walled Carbon Nanotube (CNT) Field Effect Transistor Device Modeling

Electrostatic Single-walled Carbon Nanotube (CNT) Field Effect Transistor Device Modeling Electrostatic Single-walled Carbon Nanotube (CNT) Field Effect Transistor Device Modeling Henok Abebe The Service USC Viterbi School of Engineering Information Sciences Institute Collaborator Ellis Cumberbatch

More information

From Graphene to Nanotubes

From Graphene to Nanotubes From Graphene to Nanotubes Zone Folding and Quantum Confinement at the Example of the Electronic Band Structure Christian Krumnow christian.krumnow@fu-berlin.de Freie Universität Berlin June 6, Zone folding

More information

QUANTUM SIMULATION OF NANOCRYSTALLINE COMPOSITE THERMOELECTRIC PROPERTIES

QUANTUM SIMULATION OF NANOCRYSTALLINE COMPOSITE THERMOELECTRIC PROPERTIES Proceedings of the ASME 2009 InterPACK Conference IPACK2009 July 19-23, 2009, San Francisco, California, USA Proceedings of ASME/Pacific Rim Technical Conference and Exhibition on Packaging and Integration

More information

Quantum transport simulations: sensing DNA

Quantum transport simulations: sensing DNA Quantum transport simulations: sensing DNA Hauptseminar SS2016 Frank Schulz Tutor : Ganesh Sivaraman 1 1 Introduction Quantum transport simulations are a very important concept for simulating electronic

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

Lecture 3: Density of States

Lecture 3: Density of States ECE-656: Fall 2011 Lecture 3: Density of States Professor Mark Lundstrom Electrical and Computer Engineering Purdue University, West Lafayette, IN USA 8/25/11 1 k-space vs. energy-space N 3D (k) d 3 k

More information

Carbon based Nanoscale Electronics

Carbon based Nanoscale Electronics Carbon based Nanoscale Electronics 09 02 200802 2008 ME class Outline driving force for the carbon nanomaterial electronic properties of fullerene exploration of electronic carbon nanotube gold rush of

More information

ECE 535 Theory of Semiconductors and Semiconductor Devices Fall 2015 Homework # 5 Due Date: 11/17/2015

ECE 535 Theory of Semiconductors and Semiconductor Devices Fall 2015 Homework # 5 Due Date: 11/17/2015 ECE 535 Theory of Semiconductors and Semiconductor Devices Fall 2015 Homework # 5 Due Date: 11/17/2015 Problem # 1 Two carbon atoms and four hydrogen atoms form and ethane molecule with the chemical formula

More information

Device Performance Analysis of Graphene Nanoribbon Field-Effect Transistor with Rare- Earth Oxide (La 2 O 3 ) Based High-k Gate Dielectric

Device Performance Analysis of Graphene Nanoribbon Field-Effect Transistor with Rare- Earth Oxide (La 2 O 3 ) Based High-k Gate Dielectric Device Performance Analysis of Graphene Nanoribbon Field-Effect Transistor with Rare- Earth Oxide (La 2 O 3 ) Based High-k Gate Dielectric M. K. Bera 1, S. P. Pandey 2, A. K. Sharma 3, D. K. Tyagi 4, R.

More information

Low Bias Transport in Graphene: An Introduction

Low Bias Transport in Graphene: An Introduction Lecture Notes on Low Bias Transport in Graphene: An Introduction Dionisis Berdebes, Tony Low, and Mark Lundstrom Network for Computational Nanotechnology Birck Nanotechnology Center Purdue University West

More information

Non-equilibrium Green's function (NEGF) simulation of metallic carbon nanotubes including vacancy defects

Non-equilibrium Green's function (NEGF) simulation of metallic carbon nanotubes including vacancy defects Purdue University Purdue e-pubs Other Nanotechnology Publications Birck Nanotechnology Center 6-1-2007 Non-equilibrium Green's function (NEGF) simulation of metallic carbon nanotubes including vacancy

More information

Introduction to Nanotechnology Chapter 5 Carbon Nanostructures Lecture 1

Introduction to Nanotechnology Chapter 5 Carbon Nanostructures Lecture 1 Introduction to Nanotechnology Chapter 5 Carbon Nanostructures Lecture 1 ChiiDong Chen Institute of Physics, Academia Sinica chiidong@phys.sinica.edu.tw 02 27896766 Section 5.2.1 Nature of the Carbon Bond

More information

Modeling and Performance analysis of Metallic CNT Interconnects for VLSI Applications

Modeling and Performance analysis of Metallic CNT Interconnects for VLSI Applications IOSR Journal of Electronics and Communication Engineering (IOSR-JECE) e-issn: 2278-2834, p- ISSN: 2278-8735. Volume 4, Issue 6 (Jan. - Feb. 2013), PP 32-36 Modeling and Performance analysis of Metallic

More information

Electronic structure and transport in silicon nanostructures with non-ideal bonding environments

Electronic structure and transport in silicon nanostructures with non-ideal bonding environments Purdue University Purdue e-pubs Other Nanotechnology Publications Birck Nanotechnology Center 9-15-2008 Electronic structure and transport in silicon nanostructures with non-ideal bonding environments

More information

nanomos lab-ii NEGF formalism 5/20/2002 UIUC Summer School May

nanomos lab-ii NEGF formalism 5/20/2002 UIUC Summer School May nanomos lab-ii NEGF formalism 5/20/2002 UIUC Summer School May 2002 1 Summary Quantum ballistic transport (qbte model). Density of States (DOS) plots. Transmission coefficient. Low temperature simulations

More information

About OMICS Group Conferences

About OMICS Group Conferences About OMICS Group OMICS Group International is an amalgamation of Open Access publications and worldwide international science conferences and events. Established in the year 2007 with the sole aim of

More information

GRAPHENE NANORIBBONS Nahid Shayesteh,

GRAPHENE NANORIBBONS Nahid Shayesteh, USC Department of Physics Graduate Seminar 1 GRAPHENE NANORIBBONS Nahid Shayesteh, Outlines 2 Carbon based material Discovery and innovation of graphen Graphene nanoribbons structure Application of Graphene

More information

Carbon Nanomaterials: Nanotubes and Nanobuds and Graphene towards new products 2030

Carbon Nanomaterials: Nanotubes and Nanobuds and Graphene towards new products 2030 Carbon Nanomaterials: Nanotubes and Nanobuds and Graphene towards new products 2030 Prof. Dr. Esko I. Kauppinen Helsinki University of Technology (TKK) Espoo, Finland Forecast Seminar February 13, 2009

More information

Final exam. Introduction to Nanotechnology. Name: Student number:

Final exam. Introduction to Nanotechnology. Name: Student number: 1 Final exam. Introduction to Nanotechnology Name: Student number: 1. (a) What is the definition for a cluster size-wise? (3%) (b) Calculate the energy separation near the Fermi surface of a metallic cluster

More information

Manipulating and determining the electronic structure of carbon nanotubes

Manipulating and determining the electronic structure of carbon nanotubes Manipulating and determining the electronic structure of carbon nanotubes (06.12.2005 NTHU, Physics Department) Po-Wen Chiu Department of Electrical Engineering, Tsing Hua University, Hsinchu, Taiwan Max-Planck

More information

Impact of Silicon Wafer Orientation on the Performance of Metal Source/Drain MOSFET in Nanoscale Regime: a Numerical Study

Impact of Silicon Wafer Orientation on the Performance of Metal Source/Drain MOSFET in Nanoscale Regime: a Numerical Study JNS 2 (2013) 477-483 Impact of Silicon Wafer Orientation on the Performance of Metal Source/Drain MOSFET in Nanoscale Regime: a Numerical Study Z. Ahangari *a, M. Fathipour b a Department of Electrical

More information

The Physics of Nanoelectronics

The Physics of Nanoelectronics The Physics of Nanoelectronics Transport and Fluctuation Phenomena at Low Temperatures Tero T. Heikkilä Low Temperature Laboratory, Aalto University, Finland OXFORD UNIVERSITY PRESS Contents List of symbols

More information

Supporting information for: Electron Transport. Properties of Atomic Carbon Nanowires between. Graphene Electrodes

Supporting information for: Electron Transport. Properties of Atomic Carbon Nanowires between. Graphene Electrodes Supporting information for: Electron Transport Properties of Atomic Carbon Nanowires between Graphene Electrodes Lei Shen,,, Minggang Zeng,,, Shuo-Wang Yang,, Chun Zhang, Xuefeng Wang, and Yuanping Feng,

More information

From Graphene to Nanotubes

From Graphene to Nanotubes From Graphene to Nanotubes Zone Folding and Quantum Confinement at the Example of the Electronic Band Structure Christian Krumnow Freie Universität Berlin May 6, 011 Christian Krumnow (FU Berlin) From

More information

Simple Theory of the Ballistic Nanotransistor

Simple Theory of the Ballistic Nanotransistor Simple Theory of the Ballistic Nanotransistor Mark Lundstrom Purdue University Network for Computational Nanoechnology outline I) Traditional MOS theory II) A bottom-up approach III) The ballistic nanotransistor

More information

PROJECT C: ELECTRONIC BAND STRUCTURE IN A MODEL SEMICONDUCTOR

PROJECT C: ELECTRONIC BAND STRUCTURE IN A MODEL SEMICONDUCTOR PROJECT C: ELECTRONIC BAND STRUCTURE IN A MODEL SEMICONDUCTOR The aim of this project is to present the student with a perspective on the notion of electronic energy band structures and energy band gaps

More information

arxiv: v1 [cond-mat.mes-hall] 16 Nov 2007

arxiv: v1 [cond-mat.mes-hall] 16 Nov 2007 Transport properties of graphene nanoribbon arxiv:7.6v [cond-mat.mes-hall] 6 Nov 7 heterostructures L. Rosales a,, P. Orellana b, Z. Barticevic a, M.Pacheco a a Departamento de Física, Universidad Técnica

More information

Shear Properties and Wrinkling Behaviors of Finite Sized Graphene

Shear Properties and Wrinkling Behaviors of Finite Sized Graphene Shear Properties and Wrinkling Behaviors of Finite Sized Graphene Kyoungmin Min, Namjung Kim and Ravi Bhadauria May 10, 2010 Abstract In this project, we investigate the shear properties of finite sized

More information

OMEN an atomistic and full-band quantum transport simulator for post-cmos nanodevices

OMEN an atomistic and full-band quantum transport simulator for post-cmos nanodevices Purdue University Purdue e-pubs Other Nanotechnology Publications Birck Nanotechnology Center 8-18-28 OMEN an atomistic and full-band quantum transport simulator for post-cmos nanodevices Mathieu Luisier

More information

GRAPHENE NANORIBBONS Nahid Shayesteh,

GRAPHENE NANORIBBONS Nahid Shayesteh, USC Department of Physics Graduate Seminar GRAPHENE NANORIBBONS Nahid Shayesteh, Outlines 2 Carbon based material Discovery and innovation of graphen Graphene nanoribbons structure and... FUNCTIONS 3 Carbon-based

More information

Ballistic Graphene Nanoribbon MOSFETs: a full quantum real-space simualtion study

Ballistic Graphene Nanoribbon MOSFETs: a full quantum real-space simualtion study Ballistic Graphene Nanoribbon MOSFETs: a full quantum real-space simualtion study Gengchiau Liang *, Electrical and Computer Engineering, National University of Singapore, Singapore 117576 Neophytos Neophytou,

More information

ECE 659, PRACTICE EXAM II Actual Exam Friday, Feb.21, 2014, FNY B124, PM CLOSED BOOK. = H nm. Actual Exam will have five questions.

ECE 659, PRACTICE EXAM II Actual Exam Friday, Feb.21, 2014, FNY B124, PM CLOSED BOOK. = H nm. Actual Exam will have five questions. 1 ECE 659, PRACTICE EXAM II Actual Exam Friday, Feb.1, 014, FNY B14, 330-40PM CLOSED BOOK Useful relation h( k ) = H nm [ ] e +i k.( r m r n ) Actual Exam will have five questions. The following questions

More information

Math 515 Fall, 2008 Homework 2, due Friday, September 26.

Math 515 Fall, 2008 Homework 2, due Friday, September 26. Math 515 Fall, 2008 Homework 2, due Friday, September 26 In this assignment you will write efficient MATLAB codes to solve least squares problems involving block structured matrices known as Kronecker

More information

Toward an O(N) method for the non-equilibrium Green's function calculation

Toward an O(N) method for the non-equilibrium Green's function calculation Toward an O(N) method for the non-equilibrium Green's function calculation Masahiro FUKUDA Institute for Solid State Physics, University of Tokyo, Japan Table of Content Introduction Non equilibrium Green

More information

Understanding the effect of n-type and p-type doping in the channel of graphene nanoribbon transistor

Understanding the effect of n-type and p-type doping in the channel of graphene nanoribbon transistor Bull. Mater. Sci., Vol. 39, No. 5, September 2016, pp. 1303 1309. DOI 10.1007/s12034-016-1277-9 c Indian Academy of Sciences. Understanding the effect of n-type and p-type doping in the channel of graphene

More information

ENGR Spring Exam 2

ENGR Spring Exam 2 ENGR 1300 Spring 013 Exam INSTRUCTIONS: Duration: 60 minutes Keep your eyes on your own work! Keep your work covered at all times! 1. Each student is responsible for following directions. Read carefully..

More information

PH575 Spring Lecture #28 Nanoscience: the case study of graphene and carbon nanotubes.

PH575 Spring Lecture #28 Nanoscience: the case study of graphene and carbon nanotubes. PH575 Spring 2014 Lecture #28 Nanoscience: the case study of graphene and carbon nanotubes. Nanoscience scale 1-100 nm "Artificial atoms" Small size => discrete states Large surface to volume ratio Bottom-up

More information

Calculation of Cutting Lines of Single-Walled Carbon Nanotubes

Calculation of Cutting Lines of Single-Walled Carbon Nanotubes 65 C.Ü. Fen Fakültesi Fen Bilimleri Dergisi, Cilt 33, No. 1 (2012) Calculation of Cutting Lines of Single-Walled Carbon Nanotubes Erdem UZUN 1* 1 Karamanoğlu Mehmetbey Üniversitesi, Fen Fakültesi, Fizik

More information

Lectures Graphene and

Lectures Graphene and Lectures 15-16 Graphene and carbon nanotubes Graphene is atomically thin crystal of carbon which is stronger than steel but flexible, is transparent for light, and conducts electricity (gapless semiconductor).

More information

Performance Comparison of Graphene Nanoribbon FETs. with Schottky Contacts and Doped Reservoirs

Performance Comparison of Graphene Nanoribbon FETs. with Schottky Contacts and Doped Reservoirs Performance Comparison of Graphene Nanoribbon FETs with Schottky Contacts and Doped Reservoirs Youngki Yoon 1,a, Gianluca Fiori 2,b, Seokmin Hong 1, Giuseppe Iannaccone 2, and Jing Guo 1 1 Department of

More information

ECE606: Solid State Devices Lecture 3

ECE606: Solid State Devices Lecture 3 ECE66: Solid State Devices Lecture 3 Gerhard Klimeck gekco@purdue.edu Motivation Periodic Structure E Time-independent Schrodinger Equation ħ d Ψ dψ + U ( x) Ψ = iħ m dx dt Assume Ψ( x, t) = ψ( x) e iet/

More information

The many forms of carbon

The many forms of carbon The many forms of carbon Carbon is not only the basis of life, it also provides an enormous variety of structures for nanotechnology. This versatility is connected to the ability of carbon to form two

More information

Field-induced low-temperature electronic specific heat of boron nitride nanotubes

Field-induced low-temperature electronic specific heat of boron nitride nanotubes Field-induced low-temperature electronic specific heat of boron nitride nanotubes Feng-Lin Shyu Department of Physics, R.O.C. Military Academy, Kaohsiung 830, Taiwan, R.O.C. November 26, 2015 E-mail: fl.shyu@msa.hinet.net,

More information

EN2912C: Future Directions in Computing Lecture 08: Overview of Near-Term Emerging Computing Technologies

EN2912C: Future Directions in Computing Lecture 08: Overview of Near-Term Emerging Computing Technologies EN2912C: Future Directions in Computing Lecture 08: Overview of Near-Term Emerging Computing Technologies Prof. Sherief Reda Division of Engineering Brown University Fall 2008 1 Near-term emerging computing

More information

This paper is part of the following report: UNCLASSIFIED

This paper is part of the following report: UNCLASSIFIED UNCLASSIFIED Defense Technical Information Center Compilation Part Notice ADP012134 TITLE: External Chemical Reactivity of Fullerenes and s DISTRIBUTION: Approved for public release, distribution unlimited

More information

Physics of Nanoscale Transistors

Physics of Nanoscale Transistors Physics of Nanoscale ransistors Mark Electrical and Computer Engineering University, West Lafayette, IN 1. Introduction 2. he Ballistic MOSFE 3. Scattering heory of the MOSFE 4. Beyond the Si MOSFE 5.

More information

ECE 495N, Fall 09 Fundamentals of Nanoelectronics Final examination: Wednesday 12/16/09, 7-9 pm in CIVL 1144.

ECE 495N, Fall 09 Fundamentals of Nanoelectronics Final examination: Wednesday 12/16/09, 7-9 pm in CIVL 1144. 12/10/09 1 ECE 495N, Fall 09 Fundamentals of Nanoelectronics Final examination: Wednesday 12/16/09, 7-9 pm in CIVL 1144. Cumulative, closed book. Equations listed below will be provided. Pauli spin matrices:

More information

Hydrogen Storage in Single- and Multi-walled Carbon Nanotubes and Nanotube Bundles

Hydrogen Storage in Single- and Multi-walled Carbon Nanotubes and Nanotube Bundles Australian Journal of Basic and Applied Sciences, 5(7): 483-490, 2011 ISSN 1991-8178 Hydrogen Storage in Single- and Multi-walled Carbon Nanotubes and Nanotube Bundles 1 S. Hamidi and 2 H. Golnabi 1 Physics

More information

THE ELECTRONIC PROPERTIES OF HEXAGONAL BORON NITRIDE AND GRAPHENE NANORIBBONS A THESIS SUBMITTED TO THE GRADUATE SCHOOL

THE ELECTRONIC PROPERTIES OF HEXAGONAL BORON NITRIDE AND GRAPHENE NANORIBBONS A THESIS SUBMITTED TO THE GRADUATE SCHOOL THE ELECTRONIC PROPERTIES OF HEXAGONAL BORON NITRIDE AND GRAPHENE NANORIBBONS A THESIS SUBMITTED TO THE GRADUATE SCHOOL IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE DEGREE MASTER OF SCIENCE BY ALBERT

More information

Towards Atomistic Simulations of the Electro-Thermal Properties of Nanowire Transistors Mathieu Luisier and Reto Rhyner

Towards Atomistic Simulations of the Electro-Thermal Properties of Nanowire Transistors Mathieu Luisier and Reto Rhyner Towards Atomistic Simulations of the Electro-Thermal Properties of Nanowire Transistors Mathieu Luisier and Reto Rhyner Integrated Systems Laboratory ETH Zurich, Switzerland Outline Motivation Electron

More information

Bonding in solids The interaction of electrons in neighboring atoms of a solid serves the very important function of holding the crystal together.

Bonding in solids The interaction of electrons in neighboring atoms of a solid serves the very important function of holding the crystal together. Bonding in solids The interaction of electrons in neighboring atoms of a solid serves the very important function of holding the crystal together. For example Nacl In the Nacl lattice, each Na atom is

More information

The calculation of energy gaps in small single-walled carbon nanotubes within a symmetry-adapted tight-binding model

The calculation of energy gaps in small single-walled carbon nanotubes within a symmetry-adapted tight-binding model The calculation of energy gaps in small single-walled carbon nanotubes within a symmetry-adapted tight-binding model Yang Jie( ) a), Dong Quan-Li( ) a), Jiang Zhao-Tan( ) b), and Zhang Jie( ) a) a) Beijing

More information

Diameter Optimization for Highest Degree of Ballisticity of Carbon Nanotube Field Effect Transistors I. Khan, O. Morshed and S. M.

Diameter Optimization for Highest Degree of Ballisticity of Carbon Nanotube Field Effect Transistors I. Khan, O. Morshed and S. M. Diameter Optimization for Highest Degree of Ballisticity of Carbon Nanotube Field Effect Transistors I. Khan, O. Morshed and S. M. Mominuzzaman Department of Electrical and Electronic Engineering, Bangladesh

More information

Heterostructures and sub-bands

Heterostructures and sub-bands Heterostructures and sub-bands (Read Datta 6.1, 6.2; Davies 4.1-4.5) Quantum Wells In a quantum well, electrons are confined in one of three dimensions to exist within a region of length L z. If the barriers

More information

Session Chair: Prof. Haiping Cheng (University of Florida) Dr. Lei Shen. National University of Singapore

Session Chair: Prof. Haiping Cheng (University of Florida) Dr. Lei Shen. National University of Singapore B1. Modeling Quantum Transport at Nanoscale Chair(s): Chun ZHANG, National University of Singapore, Singapore Session s Title (if available) Tue - 17 Jan 2017 13:00 ~ 14:30 Room 2 Session Chair: Prof.

More information

Projected Performance Advantage of Multilayer Graphene Nanoribbon as Transistor Channel Material

Projected Performance Advantage of Multilayer Graphene Nanoribbon as Transistor Channel Material Projected Performance Advantage of Multilayer Graphene Nanoribbon as Transistor Channel Material Yijian Ouyang 1, Hongjie Dai 2, and Jing Guo 1 1 Department of Electrical and Computer Engineering, University

More information

On the possibility of tunable-gap bilayer graphene FET

On the possibility of tunable-gap bilayer graphene FET On the possibility of tunable-gap bilayer graphene FET 1 arxiv:0810.0128v1 [cond-mat.mes-hall] 1 Oct 2008 Gianluca Fiori, Giuseppe Iannaccone Dipartimento di Ingegneria dell Informazione : Elettronica,

More information

Transversal electric field effect in multilayer graphene nanoribbon

Transversal electric field effect in multilayer graphene nanoribbon Transversal electric field effect in multilayer graphene nanoribbon S. Bala kumar and Jing Guo a) Department of Electrical and Computer Engineering, University of Florida, Gainesville, Florida 32608, USA

More information

Quantum Tunneling and

Quantum Tunneling and BEIJING SHANGHAI Quantum Tunneling and Field Electron Emission Theories Shi-Dong Liang Sun Yat-Sen University, China World Scientific NEW JERSEY LONDON SINGAPORE HONG KONG TAIPEI CHENNAI Contents Preface

More information

Dissipative Transport in Rough Edge Graphene Nanoribbon. Tunnel Transistors

Dissipative Transport in Rough Edge Graphene Nanoribbon. Tunnel Transistors Dissipative Transport in Rough Edge Graphene Nanoribbon Tunnel Transistors Youngki Yoon and Sayeef Salahuddin Department of Electrical Engineering and Computer Sciences, University of California, Berkeley,

More information

Summary of Lecture Notes on Subbands, Density of States, and Current in Ballistic Nanowires and Nanotransistors

Summary of Lecture Notes on Subbands, Density of States, and Current in Ballistic Nanowires and Nanotransistors Mani Vaidyanathan 1 Summary of Lecture Notes on Subbands, Density of States, and Current in Ballistic Nanowires and Nanotransistors Overview 1. We began the final part of the course by recapitulating the

More information

MODELING AND SIMULATION OF GRAPHENE NANORIBBON ELECTRONICS

MODELING AND SIMULATION OF GRAPHENE NANORIBBON ELECTRONICS MODELING AND SIMULATION OF GRAPHENE NANORIBBON ELECTRONICS By YIJIAN OUYANG A DISSERTATION PRESENTED TO THE GRADUATE SCHOOL OF THE UNIVERSITY OF FLORIDA IN PARTIAL FULFILLMENT OF THE REQUIREMENTS FOR THE

More information

Quantum Confinement in Graphene

Quantum Confinement in Graphene Quantum Confinement in Graphene from quasi-localization to chaotic billards MMM dominikus kölbl 13.10.08 1 / 27 Outline some facts about graphene quasibound states in graphene numerical calculation of

More information

Towards Multi-Scale Modeling of Carbon Nanotube Transistors. Abstract

Towards Multi-Scale Modeling of Carbon Nanotube Transistors. Abstract Towards Multi-Scale Modeling of Carbon Nanotube Transistors Jing Guo, Supriyo Datta, and Mark Lundstrom School of Electrical and Computer Engineering, Purdue University West Lafayette, IN 47907 M. P. Anantam

More information

Projected Performance Advantage of Multilayer Graphene Nanoribbons as a Transistor Channel Material

Projected Performance Advantage of Multilayer Graphene Nanoribbons as a Transistor Channel Material 1Nano Res (2010) 3: 8 15 DOI 10.1007/s12274-010-1002-8 Research Article Projected Performance Advantage of Multilayer Graphene Nanoribbons as a Transistor Channel Material Yijian Ouyang 1 ( ), Hongjie

More information

CAAM 335: Matrix Analysis

CAAM 335: Matrix Analysis 1 CAAM 335: Matrix Analysis Solutions to Problem Set 4, September 22, 2008 Due: Monday September 29, 2008 Problem 1 (10+10=20 points) (1) Let M be a subspace of R n. Prove that the complement of M in R

More information

A Nested Dissection Approach to Modeling Transport in Nanodevices: Algorithms and Applications

A Nested Dissection Approach to Modeling Transport in Nanodevices: Algorithms and Applications Nested Dissection pproach to Modeling Transport in Nanodevices: lgorithms and pplications U. Hetmaniuk, Y. Zhao and M. P. nantram bstract arxiv:1305.1070v1 [math.n] 6 May 2013 Modeling nanoscale devices

More information

Robustness of edge states in graphene quantum dots

Robustness of edge states in graphene quantum dots Chapter 5 Robustness of edge states in graphene quantum dots 5.1 Introduction The experimental discovery of graphene [3, 57], a monolayer of carbon atoms, has opened room for new electronic devices (for

More information

Supplementary Figures

Supplementary Figures Supplementary Figures 8 6 Energy (ev 4 2 2 4 Γ M K Γ Supplementary Figure : Energy bands of antimonene along a high-symmetry path in the Brillouin zone, including spin-orbit coupling effects. Empty circles

More information