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
Anton Akhmerov
kwant
Commits
2a5effb5
Commit
2a5effb5
authored
7 years ago
by
Joseph Weston
Browse files
Options
Downloads
Patches
Plain Diff
doc: update KPM tutorial to match changes to API
parent
31353c63
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/source/tutorial/kernel_polynomial_method.py
+3
-3
3 additions, 3 deletions
doc/source/tutorial/kernel_polynomial_method.py
doc/source/tutorial/tutorial7.rst
+5
-11
5 additions, 11 deletions
doc/source/tutorial/tutorial7.rst
with
8 additions
and
14 deletions
doc/source/tutorial/kernel_polynomial_method.py
+
3
−
3
View file @
2a5effb5
...
...
@@ -106,7 +106,7 @@ def increasing_accuracy_example(fsyst):
original_dos
=
spectrum
()
# get unaltered DoS
#HIDDEN_BEGIN_acc1
spectrum
.
increase_
energy_resolution
(
tol
=
0.03
)
spectrum
.
add_moments
(
energy_resolution
=
0.03
)
#HIDDEN_END_acc1
increased_resolution_dos
=
spectrum
()
...
...
@@ -117,8 +117,8 @@ def increasing_accuracy_example(fsyst):
])
#HIDDEN_BEGIN_acc2
# we supply the *total* number of moments and sampling points
spectrum
.
increase_accuracy
(
num_moments
=
200
,
num_rand_vecs
=
5
)
spectrum
.
add_moments
(
100
)
spectrum
.
add_vectors
(
5
)
#HIDDEN_END_acc2
increased_moments_dos
=
spectrum
()
...
...
This diff is collapsed.
Click to expand it.
doc/source/tutorial/tutorial7.rst
+
5
−
11
View file @
2a5effb5
...
...
@@ -160,21 +160,20 @@ of the method, each of which offers different levels of control over what
exactly is changed.
The simplest way to obtain a more accurate solution is to use the
``
increase_energy_resolution
`` method:
``
add_moments
`` method:
.. literalinclude:: kernel_polynomial_method.py
:start-after: #HIDDEN_BEGIN_acc1
:end-before: #HIDDEN_END_acc1
This will update the number of calculated moments and also the
default
This will update the number of calculated moments and also the
number of sampling points such that the maximum distance between successive
energy points is ``
tol
`` (see notes on accuracy_).
energy points is ``
energy_resolution
`` (see notes on accuracy_).
.. image:: ../images/kpm_dos_acc.*
Alternatively, you can directly increase (or decrease) the number of moments,
random vectors and sampling points with the method
`~kwant.kpm.SpectralDensity.increase_accuracy`.
Alternatively, you can directly increase the number of moments
with ``add_moments``, or the number of random vectors with ``add_vectors``.
.. literalinclude:: kernel_polynomial_method.py
:start-after: #HIDDEN_BEGIN_acc2
...
...
@@ -182,11 +181,6 @@ random vectors and sampling points with the method
.. image:: ../images/kpm_dos_r.*
In the above example we only increased the number of moments and decreased the
number of random vectors. The keyword argument ``num_sampling_points`` can
be also specified by passing the keyword argument to
`~kwant.kpm.SpectralDensity.increase_accuracy`.
.. _operator_spectral_density:
...
...
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