SlideShare a Scribd company logo
1 of 6
Download to read offline
Homework 1
Dai - Nam Le
In[212]:= ClearAll "Global` "
1) Define a FCC lattice a×a×a with a = 2
In mathematica, there are lattice data for all Bravais lattices.
In[213]:= LatticeData "FaceCenteredCubic", "Image"
Out[213]=
2) Define basis vectors
Lattice data in mathematica also provide information about basis vectors of Bravais lattice
In[214]:= a1, a2, a3 LatticeData "FaceCenteredCubic", "Basis"
Out[214]= 1, 1, 0 , 1, 1, 0 , 0, 1, 1
Constructing FCC lattice via basis vectors
In[215]:= FCCPoints n1_, n2_, n3_ : n1 a1 n2 a2 n3 a3;
FCCList ;
n 6;
amax 2;
For n1 n, n1 n, n1 ,
For n2 n, n2 n, n2 ,
For n3 n, n3 n, n3 ,
If Table FCCPoints n1, n2, n3 i amax &&
FCCPoints n1, n2, n3 i amax, i, 1, 3 True, True, True ,
FCCList Join FCCList, FCCPoints n1, n2, n3
basis Graphics3D Arrowheads .05, 1 , Arrow Tube 0, 0, 0 , a1 , .025 ,
Arrow Tube 0, 0, 0 , a2 , .025 , Arrow Tube 0, 0, 0 , a3 , .025 ;
gridlines ParametricPlot3D 0, 0, t , 2, 0, t , 0, 2, t , 0, 2, t ,
2, 0, t , 2, 2, t , 2, 2, t , 2, 2, t , 2, 2, t , 0, t, 0 ,
2, t, 0 , 0, t, 2 , 0, t, 2 , 2, t, 0 , 2, t, 2 , 2, t, 2 ,
2, t, 2 , 2, t, 2 , t, 0, 0 , t, 2, 0 , t, 0, 2 , t, 0, 2 ,
t, 2, 0 , t, 2, 2 , t, 2, 2 , t, 2, 2 , t, 2, 2 ,
t, amax, amax , PlotRange amax, amax , amax, amax , amax, amax ,
PlotStyle AbsoluteThickness 1 , Black , AspectRatio 1 ;
FCCLattice ListPointPlot3D FCCList, PlotStyle AbsolutePointSize 10. ,
AspectRatio 1, PlotRange amax, amax , amax, amax , amax, amax ;
Show FCCLattice, basis, gridlines
Out[223]=
2
1
0
1
2
2
1
0
1
2
2
1
0
1
2
3) Find reciprocal lattice ’s basis vectors
To find reciprocal lattice ‘s basis vectors, we must solve the following system of equations
2 HW1_Nam.nb
In[224]:= b1 b1x, b1y, b1z ;
b2 b2x, b2y, b2z ;
b3 b3x, b3y, b3z ;
sol
Solve Flatten Table ai.bj 2 Π KroneckerDelta i, j , i, 1, 3 , j, 1, 3 ,
b1x, b1y, b1z, b2x, b2y, b2z, b3x, b3y, b3z ;
b1x b1x . sol 1 ;
b1y b1y . sol 1 ;
b1z b1z . sol 1 ;
b2x b2x . sol 1 ;
b2y b2y . sol 1 ;
b2z b2z . sol 1 ;
b3x b3x . sol 1 ;
b3y b3y . sol 1 ;
b3z b3z . sol 1 ;
In[237]:= b1, b2, b3
Out[237]= Π, Π, Π , Π, Π, Π , 0, 0, 2 Π
Comparing with BCC basis
In[238]:= LatticeData "BodyCenteredCubic", "Basis"
Out[238]= 2, 0, 0 , 0, 2, 0 , 1, 1, 1
4) Buid reciprocal lattice
HW1_Nam.nb 3
In[239]:= ReciprocalPoints n1_, n2_, n3_ : n1 b1 n2 b2 n3 b3;
ReciprocalList ;
n 3;
bmax 2 Π;
For n1 n, n1 n, n1 ,
For n2 n, n2 n, n2 ,
For n3 n, n3 n, n3 ,
If Table FCCPoints n1, n2, n3 i bmax &&
FCCPoints n1, n2, n3 i bmax, i, 1, 3 True, True, True ,
ReciprocalList Join ReciprocalList, ReciprocalPoints n1, n2, n3
Reciprocalbasis
Graphics3D Arrowheads .05, 1 , Arrow Tube 0, 0, 0 , b1 , .025 ,
Arrow Tube 0, 0, 0 , b2 , .025 , Arrow Tube 0, 0, 0 , b3 , .025 ;
Reciprocalgridlines ParametricPlot3D 0, 0, t , 2 Π, 0, t ,
0, 2 Π, t , 0, 2 Π, t , 2 Π, 0, t , 2 Π, 2 Π, t ,
2 Π, 2 Π, t , 2 Π, 2 Π, t , 2 Π, 2 Π, t , 0, t, 0 ,
2 Π, t, 0 , 0, t, 2 Π , 0, t, 2 Π , 2 Π, t, 0 , 2 Π, t, 2 Π ,
2 Π, t, 2 Π , 2 Π, t, 2 Π , 2 Π, t, 2 Π , t, 0, 0 ,
t, 2 Π, 0 , t, 0, 2 Π , t, 0, 2 Π , t, 2 Π, 0 , t, 2 Π, 2 Π ,
t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, bmax, bmax ,
PlotRange bmax, bmax , bmax, bmax , bmax, bmax ,
PlotStyle AbsoluteThickness 1 , Black , AspectRatio 1 ;
ReciprocalLattice ListPointPlot3D ReciprocalList,
PlotStyle AbsolutePointSize 10. , AspectRatio 1,
PlotRange bmax, bmax , bmax, bmax , bmax, bmax ;
Show ReciprocalLattice, Reciprocalbasis, Reciprocalgridlines
Out[247]=
5
0
5
5
0
5
5
0
5
4 HW1_Nam.nb
In[248]:= Clear n1, n2, n3
sol2 Solve ReciprocalPoints n1, n2, n3 kx, ky, kz , kx, ky, kz ;
kx kx . sol2 1 ;
ky ky . sol2 1 ;
kz kz . sol2 1 ;
Represent reciprocal vector in Cartesian coordinates
In[253]:= Print "on kx ", kx
Print "on ky ", ky
Print "on kz ", kz
on kx n1 Π n2 Π
on ky n1 Π n2 Π
on kz n1 Π n2 Π 2 n3 Π
5) [1,0,0]; [1,1,0] and [1,1,1]
a) on [1,0,0] direction
In[256]:= Clear n1, n2, n3, temp, min
temp Solve ky 0, kz 0 , n2, n3 ;
n2 n2 . temp 1 ;
n3 n3 . temp 1 ;
min Minimize kx2
ky2
kz2
, kx2
ky2
kz2
0, kx 0 , n1, Integers ;
n1 n1 . min 2 ;
In[262]:= kmin100 kx, ky, kz
Out[262]= 2 Π, 0, 0
b) on [1,1,0] direction
In[263]:= Clear n1, n2, n3, temp, min
temp Solve ky kx, kz 0 , n2, n3 ;
n2 n2 . temp 1 ;
n3 n3 . temp 1 ;
min Minimize kx2
ky2
kz2
, kx2
ky2
kz2
0, kx 0 , n1, Integers ;
n1 n1 . min 2 ;
In[269]:= kmin110 kx, ky, kz
Out[269]= Π, Π, 0
c) on [1,1,1] direction
In[270]:= Clear n1, n2, n3, temp, min
temp Solve ky kx, kz kx , n2, n3 ;
n2 n2 . temp 1 ;
n3 n3 . temp 1 ;
min Minimize kx2
ky2
kz2
, kx2
ky2
kz2
0, kx 0 , n1, Integers ;
n1 n1 . min 2 ;
In[276]:= kmin111 kx, ky, kz
Out[276]= Π, Π, Π
6) Dispersion relation on kx = [100] axis
HW1_Nam.nb 5
Define high symmetry points along kx axis: point and X point
In[277]:= point 0, 0, 0 ;
Xpoint
point kmin100
2
;
point
In[279]:= point
Out[279]= 0, 0, 0
Xpoint
In[280]:= Xpoint
Out[280]= Π, 0, 0
Dispersion relation from to X (a = 2, hbar = 1, m = 1)
In[281]:= m 1;
Plot Evaluate Flatten
Table
1
2
t, 0, 0 m1 b1 m2 b2 m3 b3 . t, 0, 0 m1 b1 m2 b2 m3 b3 ,
m1, m, m , m2, m, m , m3, m, m , t, point 1 , Xpoint 1 ,
PlotRange Full, Ticks 0,
Π
4
,
Π
2
,
3 Π
4
, Π , Automatic ,
PlotStyle ColorData 35, "ColorList" , Thick ,
PlotLegends Flatten Table " " ToString m1 " " ToString m2
" " ToString m3 " ", m1, m, m , m2, m, m , m3, m, m
Out[282]=
Π
4
Π
2
3 Π
4
Π
20
40
60
80
100 1 1 1
1 1 0
1 1 1
1 0 1
1 0 0
1 0 1
1 1 1
1 1 0
1 1 1
0 1 1
0 1 0
0 1 1
0 0 1
0 0 0
0 0 1
0 1 1
0 1 0
0 1 1
1 1 1
1 1 0
1 1
1 0
1 0 0
1 0 1
1 1
1 1 0
1 1 1
6 HW1_Nam.nb

More Related Content

What's hot

Iit jee question_paper
Iit jee question_paperIit jee question_paper
Iit jee question_paperRahulMishra774
 
Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6Daniel Hong
 
lecture 15
lecture 15lecture 15
lecture 15sajinsc
 
Higher formal homeworks unit 2
Higher formal homeworks   unit 2Higher formal homeworks   unit 2
Higher formal homeworks unit 2sjamaths
 
Stressen's matrix multiplication
Stressen's matrix multiplicationStressen's matrix multiplication
Stressen's matrix multiplicationKumar
 
International Journal of Mathematics and Statistics Invention (IJMSI)
International Journal of Mathematics and Statistics Invention (IJMSI) International Journal of Mathematics and Statistics Invention (IJMSI)
International Journal of Mathematics and Statistics Invention (IJMSI) inventionjournals
 
Chapter 3 classroom
Chapter 3 classroomChapter 3 classroom
Chapter 3 classroomwellingb
 
Potencias resueltas 1eso (1)
Potencias resueltas 1eso (1)Potencias resueltas 1eso (1)
Potencias resueltas 1eso (1)Lina Manriquez
 
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...Parhamsagharchi
 
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
Mathematical Modelling of Electrical/Mechanical modellinng in MATLABMathematical Modelling of Electrical/Mechanical modellinng in MATLAB
Mathematical Modelling of Electrical/Mechanical modellinng in MATLABCOMSATS Abbottabad
 
Day 7 examples u6w14
Day 7 examples u6w14Day 7 examples u6w14
Day 7 examples u6w14jchartiersjsd
 
Prim Algorithm and kruskal algorithm
Prim Algorithm and kruskal algorithmPrim Algorithm and kruskal algorithm
Prim Algorithm and kruskal algorithmAcad
 
Calculus :Tutorial 2
Calculus :Tutorial 2Calculus :Tutorial 2
Calculus :Tutorial 2Nuril Ekma
 
Numerical_Methods_Simpson_Rule
Numerical_Methods_Simpson_RuleNumerical_Methods_Simpson_Rule
Numerical_Methods_Simpson_RuleAlex_5991
 
Gaussian Quadrature Formula
Gaussian Quadrature FormulaGaussian Quadrature Formula
Gaussian Quadrature FormulaDhaval Shukla
 

What's hot (19)

Iit jee question_paper
Iit jee question_paperIit jee question_paper
Iit jee question_paper
 
Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6Daniel Hong ENGR 019 Q6
Daniel Hong ENGR 019 Q6
 
lecture 15
lecture 15lecture 15
lecture 15
 
Higher formal homeworks unit 2
Higher formal homeworks   unit 2Higher formal homeworks   unit 2
Higher formal homeworks unit 2
 
Stressen's matrix multiplication
Stressen's matrix multiplicationStressen's matrix multiplication
Stressen's matrix multiplication
 
Tutorial no. 1.doc
Tutorial no. 1.docTutorial no. 1.doc
Tutorial no. 1.doc
 
International Journal of Mathematics and Statistics Invention (IJMSI)
International Journal of Mathematics and Statistics Invention (IJMSI) International Journal of Mathematics and Statistics Invention (IJMSI)
International Journal of Mathematics and Statistics Invention (IJMSI)
 
Chapter 3 classroom
Chapter 3 classroomChapter 3 classroom
Chapter 3 classroom
 
Quadrature
QuadratureQuadrature
Quadrature
 
Potencias resueltas 1eso (1)
Potencias resueltas 1eso (1)Potencias resueltas 1eso (1)
Potencias resueltas 1eso (1)
 
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
NUMERICAL METHODS WITH MATLAB : bisection,mueller's,newton-raphson,false poin...
 
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
Mathematical Modelling of Electrical/Mechanical modellinng in MATLABMathematical Modelling of Electrical/Mechanical modellinng in MATLAB
Mathematical Modelling of Electrical/Mechanical modellinng in MATLAB
 
Residues in MATLAB
Residues in MATLABResidues in MATLAB
Residues in MATLAB
 
Day 7 examples u6w14
Day 7 examples u6w14Day 7 examples u6w14
Day 7 examples u6w14
 
Prim Algorithm and kruskal algorithm
Prim Algorithm and kruskal algorithmPrim Algorithm and kruskal algorithm
Prim Algorithm and kruskal algorithm
 
Calculus :Tutorial 2
Calculus :Tutorial 2Calculus :Tutorial 2
Calculus :Tutorial 2
 
AP Calculus 1984 FRQs
AP Calculus 1984 FRQsAP Calculus 1984 FRQs
AP Calculus 1984 FRQs
 
Numerical_Methods_Simpson_Rule
Numerical_Methods_Simpson_RuleNumerical_Methods_Simpson_Rule
Numerical_Methods_Simpson_Rule
 
Gaussian Quadrature Formula
Gaussian Quadrature FormulaGaussian Quadrature Formula
Gaussian Quadrature Formula
 

Similar to Homework 1 of Optical Semiconductor

M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docxM210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docxsmile790243
 
Karnaugh maps
Karnaugh mapsKarnaugh maps
Karnaugh mapsAJAL A J
 
Idea for ineractive programming language
Idea for ineractive programming languageIdea for ineractive programming language
Idea for ineractive programming languageLincoln Hannah
 
Econometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions ManualEconometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions ManualLewisSimmonss
 
Chapter 7: Matrix Multiplication
Chapter 7: Matrix MultiplicationChapter 7: Matrix Multiplication
Chapter 7: Matrix MultiplicationHeman Pathak
 
Catholic High Emath Paper1
Catholic High Emath Paper1Catholic High Emath Paper1
Catholic High Emath Paper1Felicia Shirui
 
Identification of the Mathematical Models of Complex Relaxation Processes in ...
Identification of the Mathematical Models of Complex Relaxation Processes in ...Identification of the Mathematical Models of Complex Relaxation Processes in ...
Identification of the Mathematical Models of Complex Relaxation Processes in ...Vladimir Bakhrushin
 
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer keyNbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer keyMD Kutubuddin Sardar
 
Rosser's theorem
Rosser's theoremRosser's theorem
Rosser's theoremWathna
 
射頻電子 - [第一章] 知識回顧與通訊系統簡介
射頻電子 - [第一章] 知識回顧與通訊系統簡介射頻電子 - [第一章] 知識回顧與通訊系統簡介
射頻電子 - [第一章] 知識回顧與通訊系統簡介Simen Li
 
RF Module Design - [Chapter 1] From Basics to RF Transceivers
RF Module Design - [Chapter 1] From Basics to RF TransceiversRF Module Design - [Chapter 1] From Basics to RF Transceivers
RF Module Design - [Chapter 1] From Basics to RF TransceiversSimen Li
 
determinants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdfdeterminants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdfTGBSmile
 

Similar to Homework 1 of Optical Semiconductor (20)

M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docxM210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
M210 Songyue.pages__MACOSX._M210 Songyue.pagesM210-S16-.docx
 
Determinants
DeterminantsDeterminants
Determinants
 
Karnaugh maps
Karnaugh mapsKarnaugh maps
Karnaugh maps
 
Unit 3
Unit 3Unit 3
Unit 3
 
Unit 3
Unit 3Unit 3
Unit 3
 
Idea for ineractive programming language
Idea for ineractive programming languageIdea for ineractive programming language
Idea for ineractive programming language
 
jammer_placement
jammer_placementjammer_placement
jammer_placement
 
Econometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions ManualEconometric Analysis 8th Edition Greene Solutions Manual
Econometric Analysis 8th Edition Greene Solutions Manual
 
Chapter 7: Matrix Multiplication
Chapter 7: Matrix MultiplicationChapter 7: Matrix Multiplication
Chapter 7: Matrix Multiplication
 
Catholic High Emath Paper1
Catholic High Emath Paper1Catholic High Emath Paper1
Catholic High Emath Paper1
 
Identification of the Mathematical Models of Complex Relaxation Processes in ...
Identification of the Mathematical Models of Complex Relaxation Processes in ...Identification of the Mathematical Models of Complex Relaxation Processes in ...
Identification of the Mathematical Models of Complex Relaxation Processes in ...
 
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer keyNbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
Nbhm m. a. and m.sc. scholarship test september 20, 2014 with answer key
 
Rosser's theorem
Rosser's theoremRosser's theorem
Rosser's theorem
 
UNIT I_3.pdf
UNIT I_3.pdfUNIT I_3.pdf
UNIT I_3.pdf
 
TikZ for economists
TikZ for economistsTikZ for economists
TikZ for economists
 
射頻電子 - [第一章] 知識回顧與通訊系統簡介
射頻電子 - [第一章] 知識回顧與通訊系統簡介射頻電子 - [第一章] 知識回顧與通訊系統簡介
射頻電子 - [第一章] 知識回顧與通訊系統簡介
 
RF Module Design - [Chapter 1] From Basics to RF Transceivers
RF Module Design - [Chapter 1] From Basics to RF TransceiversRF Module Design - [Chapter 1] From Basics to RF Transceivers
RF Module Design - [Chapter 1] From Basics to RF Transceivers
 
CN_slides.pdf
CN_slides.pdfCN_slides.pdf
CN_slides.pdf
 
determinants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdfdeterminants-160504230830_repaired.pdf
determinants-160504230830_repaired.pdf
 
determinants-160504230830.pdf
determinants-160504230830.pdfdeterminants-160504230830.pdf
determinants-160504230830.pdf
 

More from Lê Đại-Nam

[Essay] History of Classical Electrodynamics theory
[Essay] History of Classical Electrodynamics theory[Essay] History of Classical Electrodynamics theory
[Essay] History of Classical Electrodynamics theoryLê Đại-Nam
 
Homework: Structure of atoms and molecules (Ph.D. course)
Homework: Structure of atoms and molecules (Ph.D. course)Homework: Structure of atoms and molecules (Ph.D. course)
Homework: Structure of atoms and molecules (Ph.D. course)Lê Đại-Nam
 
Lecture on Relativity theory - Chapter 0 Introduction
Lecture on Relativity theory - Chapter 0 IntroductionLecture on Relativity theory - Chapter 0 Introduction
Lecture on Relativity theory - Chapter 0 IntroductionLê Đại-Nam
 
Lecture on Relativity theory - Chapter 3 General Relativity
Lecture on Relativity theory - Chapter 3 General RelativityLecture on Relativity theory - Chapter 3 General Relativity
Lecture on Relativity theory - Chapter 3 General RelativityLê Đại-Nam
 
Lecture on Relativity theory - Chapter 1 Relativity before Einstein
Lecture on Relativity theory - Chapter 1 Relativity before EinsteinLecture on Relativity theory - Chapter 1 Relativity before Einstein
Lecture on Relativity theory - Chapter 1 Relativity before EinsteinLê Đại-Nam
 
Lecture on Relativity theory - Chapter 2 Special Relativity
Lecture on Relativity theory - Chapter 2 Special RelativityLecture on Relativity theory - Chapter 2 Special Relativity
Lecture on Relativity theory - Chapter 2 Special RelativityLê Đại-Nam
 
Essay in Electrodynamics: Electromagnetic radiation
Essay in Electrodynamics: Electromagnetic radiationEssay in Electrodynamics: Electromagnetic radiation
Essay in Electrodynamics: Electromagnetic radiationLê Đại-Nam
 
Essay in Statistical Mechanics: Boltzmann transport equation
Essay in Statistical Mechanics: Boltzmann transport equationEssay in Statistical Mechanics: Boltzmann transport equation
Essay in Statistical Mechanics: Boltzmann transport equationLê Đại-Nam
 
Homework 2 of Unifying interaction
Homework 2 of Unifying interactionHomework 2 of Unifying interaction
Homework 2 of Unifying interactionLê Đại-Nam
 
Homework 6 of Optical Semiconductor
Homework 6 of Optical SemiconductorHomework 6 of Optical Semiconductor
Homework 6 of Optical SemiconductorLê Đại-Nam
 
Homework 5 of Optical Semiconductor
Homework 5 of Optical SemiconductorHomework 5 of Optical Semiconductor
Homework 5 of Optical SemiconductorLê Đại-Nam
 
Homework 4 of Optical Semiconductor
Homework 4 of Optical SemiconductorHomework 4 of Optical Semiconductor
Homework 4 of Optical SemiconductorLê Đại-Nam
 
Homework 2 of Optical Semiconductor
Homework 2 of Optical SemiconductorHomework 2 of Optical Semiconductor
Homework 2 of Optical SemiconductorLê Đại-Nam
 
Homework 3 of Optical Semiconductor
Homework 3 of Optical SemiconductorHomework 3 of Optical Semiconductor
Homework 3 of Optical SemiconductorLê Đại-Nam
 
Report on Computational Biophysics: MD simulation of Caspase protein.
Report on Computational Biophysics: MD simulation of Caspase protein.Report on Computational Biophysics: MD simulation of Caspase protein.
Report on Computational Biophysics: MD simulation of Caspase protein.Lê Đại-Nam
 
on the unfinished beautiful theory gut su5
on the unfinished beautiful theory gut su5on the unfinished beautiful theory gut su5
on the unfinished beautiful theory gut su5Lê Đại-Nam
 
Nguyen ly bat dinh Heisenberg va coherent states
Nguyen ly bat dinh Heisenberg va coherent statesNguyen ly bat dinh Heisenberg va coherent states
Nguyen ly bat dinh Heisenberg va coherent statesLê Đại-Nam
 

More from Lê Đại-Nam (20)

[Essay] History of Classical Electrodynamics theory
[Essay] History of Classical Electrodynamics theory[Essay] History of Classical Electrodynamics theory
[Essay] History of Classical Electrodynamics theory
 
Homework: Structure of atoms and molecules (Ph.D. course)
Homework: Structure of atoms and molecules (Ph.D. course)Homework: Structure of atoms and molecules (Ph.D. course)
Homework: Structure of atoms and molecules (Ph.D. course)
 
Lecture on Relativity theory - Chapter 0 Introduction
Lecture on Relativity theory - Chapter 0 IntroductionLecture on Relativity theory - Chapter 0 Introduction
Lecture on Relativity theory - Chapter 0 Introduction
 
Lecture on Relativity theory - Chapter 3 General Relativity
Lecture on Relativity theory - Chapter 3 General RelativityLecture on Relativity theory - Chapter 3 General Relativity
Lecture on Relativity theory - Chapter 3 General Relativity
 
Lecture on Relativity theory - Chapter 1 Relativity before Einstein
Lecture on Relativity theory - Chapter 1 Relativity before EinsteinLecture on Relativity theory - Chapter 1 Relativity before Einstein
Lecture on Relativity theory - Chapter 1 Relativity before Einstein
 
Lecture on Relativity theory - Chapter 2 Special Relativity
Lecture on Relativity theory - Chapter 2 Special RelativityLecture on Relativity theory - Chapter 2 Special Relativity
Lecture on Relativity theory - Chapter 2 Special Relativity
 
Essay in Electrodynamics: Electromagnetic radiation
Essay in Electrodynamics: Electromagnetic radiationEssay in Electrodynamics: Electromagnetic radiation
Essay in Electrodynamics: Electromagnetic radiation
 
Essay in Statistical Mechanics: Boltzmann transport equation
Essay in Statistical Mechanics: Boltzmann transport equationEssay in Statistical Mechanics: Boltzmann transport equation
Essay in Statistical Mechanics: Boltzmann transport equation
 
Homework 5 of QFT
Homework 5 of QFTHomework 5 of QFT
Homework 5 of QFT
 
Homework 4 of QFT
Homework 4 of QFTHomework 4 of QFT
Homework 4 of QFT
 
Homework 3 of QFT
Homework 3 of QFTHomework 3 of QFT
Homework 3 of QFT
 
Homework 2 of Unifying interaction
Homework 2 of Unifying interactionHomework 2 of Unifying interaction
Homework 2 of Unifying interaction
 
Homework 6 of Optical Semiconductor
Homework 6 of Optical SemiconductorHomework 6 of Optical Semiconductor
Homework 6 of Optical Semiconductor
 
Homework 5 of Optical Semiconductor
Homework 5 of Optical SemiconductorHomework 5 of Optical Semiconductor
Homework 5 of Optical Semiconductor
 
Homework 4 of Optical Semiconductor
Homework 4 of Optical SemiconductorHomework 4 of Optical Semiconductor
Homework 4 of Optical Semiconductor
 
Homework 2 of Optical Semiconductor
Homework 2 of Optical SemiconductorHomework 2 of Optical Semiconductor
Homework 2 of Optical Semiconductor
 
Homework 3 of Optical Semiconductor
Homework 3 of Optical SemiconductorHomework 3 of Optical Semiconductor
Homework 3 of Optical Semiconductor
 
Report on Computational Biophysics: MD simulation of Caspase protein.
Report on Computational Biophysics: MD simulation of Caspase protein.Report on Computational Biophysics: MD simulation of Caspase protein.
Report on Computational Biophysics: MD simulation of Caspase protein.
 
on the unfinished beautiful theory gut su5
on the unfinished beautiful theory gut su5on the unfinished beautiful theory gut su5
on the unfinished beautiful theory gut su5
 
Nguyen ly bat dinh Heisenberg va coherent states
Nguyen ly bat dinh Heisenberg va coherent statesNguyen ly bat dinh Heisenberg va coherent states
Nguyen ly bat dinh Heisenberg va coherent states
 

Recently uploaded

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Mark Reed
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........LeaCamillePacle
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfphamnguyenenglishnb
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Celine George
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxiammrhaywood
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxAnupkumar Sharma
 

Recently uploaded (20)

Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Bikash Puri  Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Bikash Puri Delhi reach out to us at 🔝9953056974🔝
 
Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)Influencing policy (training slides from Fast Track Impact)
Influencing policy (training slides from Fast Track Impact)
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........Atmosphere science 7 quarter 4 .........
Atmosphere science 7 quarter 4 .........
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdfAMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
AMERICAN LANGUAGE HUB_Level2_Student'sBook_Answerkey.pdf
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17Difference Between Search & Browse Methods in Odoo 17
Difference Between Search & Browse Methods in Odoo 17
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptxECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
ECONOMIC CONTEXT - PAPER 1 Q3: NEWSPAPERS.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptxMULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
MULTIDISCIPLINRY NATURE OF THE ENVIRONMENTAL STUDIES.pptx
 

Homework 1 of Optical Semiconductor

  • 1. Homework 1 Dai - Nam Le In[212]:= ClearAll "Global` " 1) Define a FCC lattice a×a×a with a = 2 In mathematica, there are lattice data for all Bravais lattices. In[213]:= LatticeData "FaceCenteredCubic", "Image" Out[213]= 2) Define basis vectors Lattice data in mathematica also provide information about basis vectors of Bravais lattice In[214]:= a1, a2, a3 LatticeData "FaceCenteredCubic", "Basis" Out[214]= 1, 1, 0 , 1, 1, 0 , 0, 1, 1 Constructing FCC lattice via basis vectors
  • 2. In[215]:= FCCPoints n1_, n2_, n3_ : n1 a1 n2 a2 n3 a3; FCCList ; n 6; amax 2; For n1 n, n1 n, n1 , For n2 n, n2 n, n2 , For n3 n, n3 n, n3 , If Table FCCPoints n1, n2, n3 i amax && FCCPoints n1, n2, n3 i amax, i, 1, 3 True, True, True , FCCList Join FCCList, FCCPoints n1, n2, n3 basis Graphics3D Arrowheads .05, 1 , Arrow Tube 0, 0, 0 , a1 , .025 , Arrow Tube 0, 0, 0 , a2 , .025 , Arrow Tube 0, 0, 0 , a3 , .025 ; gridlines ParametricPlot3D 0, 0, t , 2, 0, t , 0, 2, t , 0, 2, t , 2, 0, t , 2, 2, t , 2, 2, t , 2, 2, t , 2, 2, t , 0, t, 0 , 2, t, 0 , 0, t, 2 , 0, t, 2 , 2, t, 0 , 2, t, 2 , 2, t, 2 , 2, t, 2 , 2, t, 2 , t, 0, 0 , t, 2, 0 , t, 0, 2 , t, 0, 2 , t, 2, 0 , t, 2, 2 , t, 2, 2 , t, 2, 2 , t, 2, 2 , t, amax, amax , PlotRange amax, amax , amax, amax , amax, amax , PlotStyle AbsoluteThickness 1 , Black , AspectRatio 1 ; FCCLattice ListPointPlot3D FCCList, PlotStyle AbsolutePointSize 10. , AspectRatio 1, PlotRange amax, amax , amax, amax , amax, amax ; Show FCCLattice, basis, gridlines Out[223]= 2 1 0 1 2 2 1 0 1 2 2 1 0 1 2 3) Find reciprocal lattice ’s basis vectors To find reciprocal lattice ‘s basis vectors, we must solve the following system of equations 2 HW1_Nam.nb
  • 3. In[224]:= b1 b1x, b1y, b1z ; b2 b2x, b2y, b2z ; b3 b3x, b3y, b3z ; sol Solve Flatten Table ai.bj 2 Π KroneckerDelta i, j , i, 1, 3 , j, 1, 3 , b1x, b1y, b1z, b2x, b2y, b2z, b3x, b3y, b3z ; b1x b1x . sol 1 ; b1y b1y . sol 1 ; b1z b1z . sol 1 ; b2x b2x . sol 1 ; b2y b2y . sol 1 ; b2z b2z . sol 1 ; b3x b3x . sol 1 ; b3y b3y . sol 1 ; b3z b3z . sol 1 ; In[237]:= b1, b2, b3 Out[237]= Π, Π, Π , Π, Π, Π , 0, 0, 2 Π Comparing with BCC basis In[238]:= LatticeData "BodyCenteredCubic", "Basis" Out[238]= 2, 0, 0 , 0, 2, 0 , 1, 1, 1 4) Buid reciprocal lattice HW1_Nam.nb 3
  • 4. In[239]:= ReciprocalPoints n1_, n2_, n3_ : n1 b1 n2 b2 n3 b3; ReciprocalList ; n 3; bmax 2 Π; For n1 n, n1 n, n1 , For n2 n, n2 n, n2 , For n3 n, n3 n, n3 , If Table FCCPoints n1, n2, n3 i bmax && FCCPoints n1, n2, n3 i bmax, i, 1, 3 True, True, True , ReciprocalList Join ReciprocalList, ReciprocalPoints n1, n2, n3 Reciprocalbasis Graphics3D Arrowheads .05, 1 , Arrow Tube 0, 0, 0 , b1 , .025 , Arrow Tube 0, 0, 0 , b2 , .025 , Arrow Tube 0, 0, 0 , b3 , .025 ; Reciprocalgridlines ParametricPlot3D 0, 0, t , 2 Π, 0, t , 0, 2 Π, t , 0, 2 Π, t , 2 Π, 0, t , 2 Π, 2 Π, t , 2 Π, 2 Π, t , 2 Π, 2 Π, t , 2 Π, 2 Π, t , 0, t, 0 , 2 Π, t, 0 , 0, t, 2 Π , 0, t, 2 Π , 2 Π, t, 0 , 2 Π, t, 2 Π , 2 Π, t, 2 Π , 2 Π, t, 2 Π , 2 Π, t, 2 Π , t, 0, 0 , t, 2 Π, 0 , t, 0, 2 Π , t, 0, 2 Π , t, 2 Π, 0 , t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, 2 Π, 2 Π , t, bmax, bmax , PlotRange bmax, bmax , bmax, bmax , bmax, bmax , PlotStyle AbsoluteThickness 1 , Black , AspectRatio 1 ; ReciprocalLattice ListPointPlot3D ReciprocalList, PlotStyle AbsolutePointSize 10. , AspectRatio 1, PlotRange bmax, bmax , bmax, bmax , bmax, bmax ; Show ReciprocalLattice, Reciprocalbasis, Reciprocalgridlines Out[247]= 5 0 5 5 0 5 5 0 5 4 HW1_Nam.nb
  • 5. In[248]:= Clear n1, n2, n3 sol2 Solve ReciprocalPoints n1, n2, n3 kx, ky, kz , kx, ky, kz ; kx kx . sol2 1 ; ky ky . sol2 1 ; kz kz . sol2 1 ; Represent reciprocal vector in Cartesian coordinates In[253]:= Print "on kx ", kx Print "on ky ", ky Print "on kz ", kz on kx n1 Π n2 Π on ky n1 Π n2 Π on kz n1 Π n2 Π 2 n3 Π 5) [1,0,0]; [1,1,0] and [1,1,1] a) on [1,0,0] direction In[256]:= Clear n1, n2, n3, temp, min temp Solve ky 0, kz 0 , n2, n3 ; n2 n2 . temp 1 ; n3 n3 . temp 1 ; min Minimize kx2 ky2 kz2 , kx2 ky2 kz2 0, kx 0 , n1, Integers ; n1 n1 . min 2 ; In[262]:= kmin100 kx, ky, kz Out[262]= 2 Π, 0, 0 b) on [1,1,0] direction In[263]:= Clear n1, n2, n3, temp, min temp Solve ky kx, kz 0 , n2, n3 ; n2 n2 . temp 1 ; n3 n3 . temp 1 ; min Minimize kx2 ky2 kz2 , kx2 ky2 kz2 0, kx 0 , n1, Integers ; n1 n1 . min 2 ; In[269]:= kmin110 kx, ky, kz Out[269]= Π, Π, 0 c) on [1,1,1] direction In[270]:= Clear n1, n2, n3, temp, min temp Solve ky kx, kz kx , n2, n3 ; n2 n2 . temp 1 ; n3 n3 . temp 1 ; min Minimize kx2 ky2 kz2 , kx2 ky2 kz2 0, kx 0 , n1, Integers ; n1 n1 . min 2 ; In[276]:= kmin111 kx, ky, kz Out[276]= Π, Π, Π 6) Dispersion relation on kx = [100] axis HW1_Nam.nb 5
  • 6. Define high symmetry points along kx axis: point and X point In[277]:= point 0, 0, 0 ; Xpoint point kmin100 2 ; point In[279]:= point Out[279]= 0, 0, 0 Xpoint In[280]:= Xpoint Out[280]= Π, 0, 0 Dispersion relation from to X (a = 2, hbar = 1, m = 1) In[281]:= m 1; Plot Evaluate Flatten Table 1 2 t, 0, 0 m1 b1 m2 b2 m3 b3 . t, 0, 0 m1 b1 m2 b2 m3 b3 , m1, m, m , m2, m, m , m3, m, m , t, point 1 , Xpoint 1 , PlotRange Full, Ticks 0, Π 4 , Π 2 , 3 Π 4 , Π , Automatic , PlotStyle ColorData 35, "ColorList" , Thick , PlotLegends Flatten Table " " ToString m1 " " ToString m2 " " ToString m3 " ", m1, m, m , m2, m, m , m3, m, m Out[282]= Π 4 Π 2 3 Π 4 Π 20 40 60 80 100 1 1 1 1 1 0 1 1 1 1 0 1 1 0 0 1 0 1 1 1 1 1 1 0 1 1 1 0 1 1 0 1 0 0 1 1 0 0 1 0 0 0 0 0 1 0 1 1 0 1 0 0 1 1 1 1 1 1 1 0 1 1 1 0 1 0 0 1 0 1 1 1 1 1 0 1 1 1 6 HW1_Nam.nb