Show Posts
|
|
Pages: [1] 2
|
|
5
|
NanoLangauge / ATK / Virtual NanoLab / Questions and Answers / What is the meaning of the two value in the transmission coefficient?
|
on: December 8, 2009, 10:18
|
|
when we do the calculation of the transmission coefficient in two probe system, the result will give two value, such as Transmission Coefficients: [ 4.43261237e-004 5.75744413e-014] what is the meaning of them? sometimes I do the voltage calculations with the same magnitude but different directions, the sign of the current change, and the value of the current is in the same order, but the transmission coefficients will changed with 2 order? for example, the system with a (0.1 -0.1)Volt, the current is 2.6e-9A, the transmission coefficient is [2.12e-3 3.98e-17] but the same system with a (-0.1 0.1)Volt, the current is -1.55e-9A, the transmission coefficient is [1.50e-5 1.66e-8]? from the current value, it seems that the resistant change slightly when the bias is opposite, but from the transmission coefficient, it change dramatically, which one shoud we based to calculate the conductance of the two probe system?
|
|
|
|
|
7
|
NanoLangauge / ATK / Virtual NanoLab / Scripts, Tutorials and Applications / Re: Script for calculating the effective mass in semi-conductors.
|
on: March 26, 2009, 03:48
|
Hi Nordland I have tested your script with the BaTiO3, this model have 5 atoms. the calculated bandstruture is attatched below. for the cubic phase, both the conductiviey and DOS electron effectivemass gave 4.57579367772 me, but the experimental value for this phase is about 0.5 me. and for the tetragonal phase, the # ---> Conductivity = 0.487857138832 me # ---> Density of states = 0.805148177393 me I have two question: firstly, from the bandstructure, the curvature at the CBM in G (0. 0. .0.) is almost the same, why the electron effectivemass have so large difference. secondly, in the script, the experssion for the DOS effectivemass is print '# ---> Density of states = %10s'%((MH)**(2.0/3.0) * (abs(ml._value()*mt1._value()*mt2._value()))**(1.0/3.0) * me)
, but according to the paper you give us Paper with a note on conductivity effective mass. http://mems.caltech.edu/courses/EE40%20Web%20Files/Supplements/01_Effective_Mass.pdf, it should be Density of states = %10s'%((MH)**(3.0/2.0) * (abs(ml._value()*mt1._value()*mt2._value()))**(1.0/3.0) * me)
, it will affect the result of Si, but has no influence on the BaTiO3 here.
|
|
|
|
|
12
|
NanoLangauge / ATK / Virtual NanoLab / Scripts, Tutorials and Applications / Re: Script for calculating the effective mass in semi-conductors.
|
on: March 6, 2009, 04:45
|
|
Thank you Nordland, but the script seems can only calculated the effectivemass in the G point, if there is an indirect bandgap material, it is improper to use this script, I have revised some of the code in this script to do calculate the effectivemass in an indirect bandgap material, but the result is no so satisfied: Direct Band Gap = 6.97405383307 eV Indirect Band Gap = 6.69934035399 eV ---------------------------------------------------------------------- # Electron effective mass = 0.0219170891857 me ---------------------------------------------------------------------- # Hole effective mass (1) = 0.069356447541 me # Hole effective mass (2) = 0.0345840434497 me # Hole effective mass (3) = -2.93394832023 me ---------------------------------------------------------------------- # Average hole effectiv mass = -0.943335943081 me ----------------------------------------------------------------------
(the experimental value of electron effectivemass for alpha SiO2 is 0.5me, and the effective hole mass is 0.38m)
is there anything wrong with my revised script?
|
|
|
|
|
13
|
NanoLangauge / ATK / Virtual NanoLab / Scripts, Tutorials and Applications / Re: How to apply a force on the bulk system
|
on: February 19, 2009, 15:27
|
Hi, Nordland Thank you for the script, but i still have a question in the last two line of the GaN.py bands = calculateEnergyBands(scf,[(0.0,0.0,0.0)]) print '# Strain = %s Band gap = %s'%(ezz, bands.band(8)[0] - bands.band(7)[0])
how do you know that the gap is between bands.band( 8 )[0] - bands.band(7)[0], should we do some bandstruture before to define the position of the VBM (bands.band(7)[0]) and CBM (bands.band( 8 )[0])? Moderator edit: placed code in (code) to avoid sunglasses (bb code eight)  8 ) 
|
|
|
|
|