Skip to content

Commit fa97b82

Browse files
authored
0.6.0 changes: Plots, bugfixes (#44)
* slow_flow! bugfix to keep higher-order diffs * remove deprecated code * Plots implemented * time-dependent plots * progress bars stdout fix * random_warmup made default * LimitCycles module and docs * LinearResponse cleanup * plot defaults * caps updated, version 0.6.0 * examples cleanup * newton solving added * docs plotting, time evo, lin resp
1 parent 59317c7 commit fa97b82

File tree

83 files changed

+917
-1646
lines changed

Some content is hidden

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

83 files changed

+917
-1646
lines changed

Project.toml

Lines changed: 5 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
name = "HarmonicBalance"
22
uuid = "e13b9ff6-59c3-11ec-14b1-f3d2cc6c135e"
33
authors = ["Jan Kosata <[email protected]>", "Javier del Pino <[email protected]>"]
4-
version = "0.5.2"
4+
version = "0.6.0"
55

66
[deps]
77
BijectiveHilbert = "91e7fc40-53cd-4118-bd19-d7fcd1de2a54"
8-
Conda = "8f4d0f93-b110-5947-807f-2305c1781a2d"
98
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2"
109
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
1110
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
@@ -18,29 +17,25 @@ JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
1817
Latexify = "23fbe1c1-3f47-55db-b15f-69d7ec21a316"
1918
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
2019
Peaks = "18e31ff7-3703-566c-8e60-38913d67486b"
20+
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
2121
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
2222
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
23-
PyCall = "438e738f-606a-5dbb-bf0a-cddfbfd45ab0"
24-
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
25-
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
2623
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
2724

2825
[compat]
2926
BijectiveHilbert = "0.3.0"
30-
Conda = "1.6.0"
3127
DSP = "0.7.4"
3228
DataStructures = "0.18.13"
33-
DifferentialEquations = "7.3.0"
29+
DifferentialEquations = "7.5.0"
3430
Distances = "0.10.7"
3531
DocStringExtensions = "0.8.6"
3632
FFTW = "1.5.0"
3733
HomotopyContinuation = "2.6.4"
38-
JLD2 = "0.4.22"
34+
JLD2 = "0.4.24"
3935
Latexify = "0.15.16"
4036
Peaks = "0.4.0"
37+
Plots = "1.35.0"
4138
ProgressMeter = "1.7.2"
42-
PyCall = "1.93.0"
43-
PyPlot = "2.10.0"
4439
Symbolics = "4.10.4"
4540
julia = "1.8.0"
4641

README.md

Lines changed: 6 additions & 6 deletions

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
33
HarmonicBalance = "e13b9ff6-59c3-11ec-14b1-f3d2cc6c135e"
44

55
[compat]
6-
Documenter = "0.27.12"
6+
Documenter = "0.27.23"

docs/images/DuffingPlot.png

-94.1 KB
Binary file not shown.
File renamed without changes.

docs/images/github_readme_plot.png

15.2 KB

docs/make.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@ makedocs(
1212
"background/stability_response.md"
1313
],
1414
"Examples" => Any[
15-
"examples/single_Duffing.md"
15+
"examples/simple_Duffing.md"
1616
"examples/linear_response.md"
1717
"examples/time_dependent.md"
18-
"examples/single_parametron_1D.md"
19-
"examples/single_parametron_2D.md"
20-
"examples/single_parametron_time_dep.md"
18+
"examples/parametron.md"
2119
],
2220
"Manual" => Any[
2321
"manual/entering_eom.md"
-175 KB
Binary file not shown.

docs/src/assets/duff_w_3w.png

-218 KB
Binary file not shown.

docs/src/assets/duffing_single.png

-112 KB
Binary file not shown.

0 commit comments

Comments
 (0)