Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fobos123deimos committed Nov 30, 2024
1 parent 07b3dee commit fd21646
Show file tree
Hide file tree
Showing 18 changed files with 6,237 additions and 968 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,7 @@ $\displaystyle\Bigg(\frac{1}{\sqrt{2(n+1)}}\Bigg)\Bigg(\displaystyle\frac{e^{-x^

$$\psi_{n+1}(x) = \displaystyle\Bigg(\sqrt{\frac{2}{n+1}}\Bigg)x\psi_{n}(x) -\Bigg(\sqrt{\frac{n}{n+1}}\Bigg)\psi_{n-1}(x) \quad \mathbf{(12)}$$



Besides the use of this recurrence in this package, the same authors implemented a version of it in a Cython module of QuTip: [_distributions.pyx](https://github.com/qutip/qutip/blob/master/qutip/_distributions.pyx), to be used in the HarmonicOscillatorWaveFunction class from the [distributions.py](https://github.com/qutip/qutip/blob/master/qutip/distributions.py) module.

## ⚡️The Numba Module - Hybrid Solution

Expand Down
770 changes: 770 additions & 0 deletions docs/fast_wave.html

Large diffs are not rendered by default.

1,036 changes: 1,036 additions & 0 deletions docs/fast_wave/caching.html

Large diffs are not rendered by default.

674 changes: 674 additions & 0 deletions docs/fast_wave/wavefunction_cython.html

Large diffs are not rendered by default.

1,161 changes: 1,161 additions & 0 deletions docs/fast_wave/wavefunction_mpmath.html

Large diffs are not rendered by default.

1,707 changes: 1,707 additions & 0 deletions docs/fast_wave/wavefunction_numba.html

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=./fast_wave.html"/>
</head>
</html>
46 changes: 46 additions & 0 deletions docs/search.js

Large diffs are not rendered by default.

Binary file added images/Fast_Wave_faveicon.ico
Binary file not shown.
Binary file added images/Fast_Wave_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added pdoc
Empty file.
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = fast_wave
version = 1.5.1
version = 1.6.0
description = Package for the calculation of the time-independent wavefunction.
author = Matheus Gomes Cordeiro
author_email = matheusgomescord@gmail.com
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = fh.read()

name = "fast_wave"
version = "1.5.1"
version = "1.6.0"
description = "Package for the calculation of the time-independent wavefunction."
author_email = "matheusgomescord@gmail.com"
url = "https://github.com/pikachu123deimos/fast-wave"
Expand Down
247 changes: 247 additions & 0 deletions src/fast_wave/__init__.py

Large diffs are not rendered by default.

298 changes: 115 additions & 183 deletions src/fast_wave/caching.py

Large diffs are not rendered by default.

Loading

0 comments on commit fd21646

Please sign in to comment.