Skip to content

Commit 8e4e5db

Browse files
committed
initial commit
0 parents  commit 8e4e5db

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+6381
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* text=auto
2+

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Files generated by invoking Julia with --code-coverage
2+
*.jl.cov
3+
*.jl.*.cov
4+
5+
# Files generated by invoking Julia with --track-allocation
6+
*.jl.mem
7+
8+
# System-specific files and directories generated by the BinaryProvider and BinDeps packages
9+
# They contain absolute paths specific to the host computer, and so should not be committed
10+
deps/deps.jl
11+
deps/build.log
12+
deps/downloads/
13+
deps/usr/
14+
deps/src/
15+
16+
# Build artifacts for creating documentation generated by the Documenter package
17+
docs/build/
18+
docs/site/
19+
20+
# File generated by Pkg, the package manager, based on a corresponding Project.toml
21+
# It records a fixed state of all packages used by the project. As such, it should not be
22+
# committed for packages, but should be committed for applications that require a static
23+
# environment.
24+
Manifest.toml
25+
26+
.env
27+
results/
28+
package-lock.json
29+
dist/
30+
node_modules/
31+
32+
.vscode/
33+

Examples.md

Lines changed: 437 additions & 0 deletions
Large diffs are not rendered by default.

Project.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name = "SchroedingerNumerics"
2+
uuid = "537d3920-04f8-45d5-b939-67e14d5b2f3b"
3+
authors = ["cnoelle <[email protected]>"]
4+
version = "0.1.0"
5+
6+
[deps]
7+
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
8+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
9+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

README.md

Lines changed: 385 additions & 0 deletions
Large diffs are not rendered by default.

examples/freeParticle/gaussian.json

Lines changed: 17 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"type": "classical",
3+
"scheme": {"id": "SymplecticEuler" , "mass": 1, "deltaX": 0.001},
4+
"V_coefficients": [0,0,1],
5+
"mass": 1.0,
6+
"deltaT": 0.006283185307179587,
7+
"t": 0.0,
8+
"point": [1.0,0.0]
9+
}

examples/harmonicOscillator/coherentStateQm.json

Lines changed: 18 additions & 0 deletions
Large diffs are not rendered by default.

examples/harmonicOscillator/coherentStateQmResidual.json

Lines changed: 21 additions & 0 deletions
Large diffs are not rendered by default.

examples/harmonicOscillator/groundStateQm.json

Lines changed: 18 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)