Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
kwant
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joseph Weston
kwant
Commits
a6570c39
Commit
a6570c39
authored
11 years ago
by
Anton Akhmerov
Committed by
Christoph Groth
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
update noise: allow to use reflection, disallow Green's functions
parent
6f2c0bc3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
kwant/physics/noise.py
+17
-10
17 additions, 10 deletions
kwant/physics/noise.py
kwant/physics/tests/test_noise.py
+7
-24
7 additions, 24 deletions
kwant/physics/tests/test_noise.py
with
24 additions
and
34 deletions
kwant/physics/noise.py
+
17
−
10
View file @
a6570c39
...
@@ -10,20 +10,27 @@ import numpy as np
...
@@ -10,20 +10,27 @@ import numpy as np
def
two_terminal_shotnoise
(
smatrix
):
def
two_terminal_shotnoise
(
smatrix
):
"""
Compute the shot-noise in a two-terminal setup.
"""
Compute the shot-noise in a two-terminal setup.
[Given by tr((1 - t*t^\dagger) * t*t^\dagger)].
"""
In a two terminal system the shot noise is given by `tr((1 - t*t^\dagger) *
t*t^\dagger)`.
Parameters
----------
smatrix : `~kwant.solvers.common.BlockResult` instance
A two terminal scattering matrix.
Returns
-------
noise : float
Shot noise measured in noise quanta `2 e^3 |V| / pi hbar`.
"""
if
len
(
smatrix
.
lead_info
)
!=
2
:
if
len
(
smatrix
.
lead_info
)
!=
2
:
raise
ValueError
(
"
Only works for two-terminal systems!
"
)
raise
ValueError
(
"
Only works for two-terminal systems!
"
)
if
1
in
smatrix
.
out_leads
and
0
in
smatrix
.
in_leads
:
t
=
smatrix
.
submatrix
(
smatrix
.
out_leads
[
0
],
smatrix
.
in_leads
[
0
])
ttdag
=
smatrix
.
_a_ttdagger_a_inv
(
1
,
0
)
ttdag
=
np
.
dot
(
t
,
t
.
conj
().
T
)
if
0
in
smatrix
.
out_leads
and
1
in
smatrix
.
in_leads
:
return
np
.
trace
(
ttdag
-
np
.
dot
(
ttdag
,
ttdag
)).
real
ttdag
=
smatrix
.
_a_ttdagger_a_inv
(
0
,
1
)
else
:
raise
ValueError
(
"
Need S-matrix block for transmission!
"
)
ttdag
-=
np
.
dot
(
ttdag
,
ttdag
)
return
np
.
trace
(
ttdag
).
real
# A general multi-terminal routine for noise would need to also have the
# A general multi-terminal routine for noise would need to also have the
...
...
This diff is collapsed.
Click to expand it.
kwant/physics/tests/test_noise.py
+
7
−
24
View file @
a6570c39
...
@@ -15,7 +15,7 @@ from kwant.physics.noise import two_terminal_shotnoise
...
@@ -15,7 +15,7 @@ from kwant.physics.noise import two_terminal_shotnoise
n
=
5
n
=
5
chain
=
kwant
.
lattice
.
chain
()
chain
=
kwant
.
lattice
.
chain
()
def
_
twoterminal_system
():
def
twoterminal_system
():
np
.
random
.
seed
(
11
)
np
.
random
.
seed
(
11
)
system
=
kwant
.
Builder
()
system
=
kwant
.
Builder
()
lead
=
kwant
.
Builder
(
kwant
.
TranslationalSymmetry
((
1
,)))
lead
=
kwant
.
Builder
(
kwant
.
TranslationalSymmetry
((
1
,)))
...
@@ -28,30 +28,22 @@ def _twoterminal_system():
...
@@ -28,30 +28,22 @@ def _twoterminal_system():
lead
[
chain
(
0
),
chain
(
1
)]
=
t
lead
[
chain
(
0
),
chain
(
1
)]
=
t
system
.
attach_lead
(
lead
)
system
.
attach_lead
(
lead
)
system
.
attach_lead
(
lead
.
reversed
())
system
.
attach_lead
(
lead
.
reversed
())
return
system
.
finalized
()
return
system
def
test_
two
terminal_input
():
def
test_
multi
terminal_input
():
"""
Input checks for two_terminal_shotnoise
"""
"""
Input checks for two_terminal_shotnoise
"""
fsys
=
_twoterminal_system
()
sys
=
twoterminal_system
()
sol
=
kwant
.
solve
(
fsys
,
out_leads
=
[
0
],
in_leads
=
[
0
])
sys
.
attach_lead
(
sys
.
leads
[
0
].
builder
)
sol
=
kwant
.
solve
(
sys
.
finalized
(),
out_leads
=
[
0
],
in_leads
=
[
0
])
assert_raises
(
ValueError
,
two_terminal_shotnoise
,
sol
)
assert_raises
(
ValueError
,
two_terminal_shotnoise
,
sol
)
class
LeadWithOnlySelfEnergy
(
object
):
def
__init__
(
self
,
lead
):
self
.
lead
=
lead
def
selfenergy
(
self
,
energy
,
args
=
()):
assert
args
==
()
return
self
.
lead
.
selfenergy
(
energy
)
def
test_twoterminal
():
def
test_twoterminal
():
"""
Shot noise in a two-terminal conductor
"""
"""
Shot noise in a two-terminal conductor
"""
fsys
=
_
twoterminal_system
()
fsys
=
twoterminal_system
()
.
finalized
()
sol
=
kwant
.
solve
(
fsys
)
sol
=
kwant
.
solve
(
fsys
)
t
=
sol
.
submatrix
(
1
,
0
)
t
=
sol
.
submatrix
(
1
,
0
)
...
@@ -59,12 +51,3 @@ def test_twoterminal():
...
@@ -59,12 +51,3 @@ def test_twoterminal():
noise_should_be
=
np
.
sum
(
Tn
*
(
1
-
Tn
))
noise_should_be
=
np
.
sum
(
Tn
*
(
1
-
Tn
))
assert_almost_equal
(
noise_should_be
,
two_terminal_shotnoise
(
sol
))
assert_almost_equal
(
noise_should_be
,
two_terminal_shotnoise
(
sol
))
# replace leads successively with self-energy
fsys
.
leads
[
0
]
=
LeadWithOnlySelfEnergy
(
fsys
.
leads
[
0
])
sol
=
kwant
.
solve
(
fsys
)
assert_almost_equal
(
noise_should_be
,
two_terminal_shotnoise
(
sol
))
fsys
.
leads
[
1
]
=
LeadWithOnlySelfEnergy
(
fsys
.
leads
[
1
])
sol
=
kwant
.
solve
(
fsys
)
assert_almost_equal
(
noise_should_be
,
two_terminal_shotnoise
(
sol
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment