Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ jobs:
fail-fast: false
matrix:
version:
- 'pre'
- 'lts'
- '1'
os:
Expand Down
13 changes: 8 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "HarmonicSteadyState"
uuid = "1158f75c-a779-4b85-8bfb-8fcf6bf02ced"
authors = ["Orjan Ameye <orjan.ameye@hotmail.com>", "Jan Kosata <kosataj@phys.ethz.ch>", "Javier del Pino <jdelpino@phys.ethz.ch>"]
version = "0.3.2"
version = "0.4.1"

[deps]
BijectiveHilbert = "91e7fc40-53cd-4118-bd19-d7fcd1de2a54"
Expand Down Expand Up @@ -37,6 +37,9 @@ QuantumCumulantsExt = "QuantumCumulants"
SteadyStateDiffEqExt = "SteadyStateDiffEq"
TimeEvolution = "OrdinaryDiffEqTsit5"

[sources]
HarmonicBalance = {url = "https://github.com/QuantumEngineeredSystems/HarmonicBalance.jl", rev = "MTK"}

[compat]
Peaks = "0.5"
Aqua = "0.8.11"
Expand All @@ -47,12 +50,12 @@ DocStringExtensions = "0.9.4"
Documenter = "1.4"
ExplicitImports = "1.11"
FunctionWrappers = "1.1.3"
HarmonicBalance = "0.15.1"
HarmonicBalance = "0.16"
HomotopyContinuation = "2.12"
JET = "0.9.18, 0.10"
LinearAlgebra = "1.10"
LinearSolve = "3.7.2"
ModelingToolkit = "9.70"
ModelingToolkit = "10"
NaNMath = "1.1"
NonlinearSolve = "4.5.1"
OrderedCollections = "1.8"
Expand All @@ -62,7 +65,7 @@ Plots = "1.40.9"
PrecompileTools = "1.2"
Printf = "1.10"
ProgressMeter = "1.7.2"
QuantumCumulants = "0.3.7"
QuantumCumulants = "0.4"
QuestBase = "0.3.4"
Random = "1.10"
RuntimeGeneratedFunctions = "0.5.5"
Expand All @@ -72,7 +75,7 @@ SymbolicUtils = "3.25"
Symbolics = "6.34"
Test = "1.10"
TestExtras = "0.3"
julia = "1.10"
julia = "1.11"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down
4 changes: 2 additions & 2 deletions test/extensions/SteadyStateDiffEqExt.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using HarmonicSteadyState,
@parameters g = 9.8 k = 0.2
D = Differential(t)
eqs = [D(v) ~ g - k * v]
@named model = ODESystem(eqs, t)
@named model = ModelingToolkit.System(eqs, t)

model = structural_simplify(model)

Expand Down Expand Up @@ -58,7 +58,7 @@ using HarmonicSteadyState,
) / (-(γ^2) - (4) * (ω^2)),
]

@named model = ODESystem(eqs, t, [u1, v1], [α, ω, ω0, F, γ])
@named model = ModelingToolkit.System(eqs, t, [u1, v1], [α, ω, ω0, F, γ])
model = structural_simplify(model)

param = [α, ω, ω0, F, γ] .=> [1.0, 1.2, 1.0, 0.01, 0.01]
Expand Down
Loading