Conductance of single-molecule: Difference between revisions

From phys824
Jump to navigationJump to search
(Created page with "Lead Hamiltonians: <pre> H_lead = np.array([[ 0. , -1. , 0.2, 0. ], [-1. , 0. , -1. , 0.2], [ 0.2, -1. , 0. , -1. ], ...")
 
No edit summary
Line 1: Line 1:
===Using Tight Binding Method===
Lead Hamiltonians:
Lead Hamiltonians:
<pre>
<pre>

Revision as of 22:45, 29 November 2012

Using Tight Binding Method

Lead Hamiltonians:

H_lead = np.array([[ 0. , -1. ,  0.2,  0. ],
                     [-1. ,  0. , -1. ,  0.2],
                     [ 0.2, -1. ,  0. , -1. ],
                     [ 0. ,  0.2, -1. ,  0. ]])

Scattering Hamiltonian:

H_scat = np.array([[ 0. , -1 , 0.,  0., 0., 0. ],
                     [ -1 , 0 ,  0.2,  0., 0., 0. ],
                     [ 0 , 0.2 ,  0,  -0.8, 0., 0. ],
                     [ 0 , 0 ,  -0.8,  0., 0.2, 0. ],
                     [ 0 , 0 ,     0,  0.2, 0, -1 ],
                     [ 0 , 0 ,     0,  0, -1, 0 ]])