You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -183,7 +182,6 @@ If the environmental measurements register a quantum jump, the wave function und
183
182
- `ψ0::QuantumObject`: Initial state of the system ``|\psi(0)\rangle``.
184
183
- `tlist::AbstractVector`: List of times at which to save the state of the system.
185
184
- `c_ops::Union{Nothing,AbstractVector,Tuple}`: List of collapse operators ``\{\hat{C}_n\}_n``.
186
-
- `alg::OrdinaryDiffEqAlgorithm`: Algorithm to use for the time evolution.
187
185
- `e_ops::Union{Nothing,AbstractVector,Tuple}`: List of operators for which to calculate expectation values.
188
186
- `H_t::Union{Nothing,Function,TimeDependentOperatorSum}`: Time-dependent part of the Hamiltonian.
189
187
- `params::NamedTuple`: Dictionary of parameters to pass to the solver.
@@ -196,7 +194,6 @@ If the environmental measurements register a quantum jump, the wave function und
196
194
- The states will be saved depend on the keyword argument `saveat` in `kwargs`.
197
195
- If `e_ops` is empty, the default value of `saveat=tlist` (saving the states corresponding to `tlist`), otherwise, `saveat=[tlist[end]]` (only save the final state). You can also specify `e_ops` and `saveat` separately.
198
196
- The default tolerances in `kwargs` are given as `reltol=1e-6` and `abstol=1e-8`.
199
-
- For more details about `alg` please refer to [`DifferentialEquations.jl` (ODE Solvers)](https://docs.sciml.ai/DiffEqDocs/stable/solvers/ode_solve/)
200
197
- For more details about `kwargs` please refer to [`DifferentialEquations.jl` (Keyword Arguments)](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/)
@@ -373,7 +366,6 @@ If the environmental measurements register a quantum jump, the wave function und
373
366
- `ψ0::QuantumObject`: Initial state of the system ``|\psi(0)\rangle``.
374
367
- `tlist::AbstractVector`: List of times at which to save the state of the system.
375
368
- `c_ops::Union{Nothing,AbstractVector,Tuple}`: List of collapse operators ``\{\hat{C}_n\}_n``.
376
-
- `alg::OrdinaryDiffEqAlgorithm`: Algorithm to use for the time evolution.
377
369
- `e_ops::Union{Nothing,AbstractVector,Tuple}`: List of operators for which to calculate expectation values.
378
370
- `H_t::Union{Nothing,Function,TimeDependentOperatorSum}`: Time-dependent part of the Hamiltonian.
379
371
- `params::NamedTuple`: Dictionary of parameters to pass to the solver.
@@ -391,7 +383,6 @@ If the environmental measurements register a quantum jump, the wave function und
391
383
- The states will be saved depend on the keyword argument `saveat` in `kwargs`.
392
384
- If `e_ops` is empty, the default value of `saveat=tlist` (saving the states corresponding to `tlist`), otherwise, `saveat=[tlist[end]]` (only save the final state). You can also specify `e_ops` and `saveat` separately.
393
385
- The default tolerances in `kwargs` are given as `reltol=1e-6` and `abstol=1e-8`.
394
-
- For more details about `alg` please refer to [`DifferentialEquations.jl` (ODE Solvers)](https://docs.sciml.ai/DiffEqDocs/stable/solvers/ode_solve/)
395
386
- For more details about `kwargs` please refer to [`DifferentialEquations.jl` (Keyword Arguments)](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/)
396
387
397
388
# Returns
@@ -403,7 +394,6 @@ function mcsolveEnsembleProblem(
- `ψ0::QuantumObject`: The initial state of the system.
84
83
- `tlist::AbstractVector`: The time list of the evolution.
85
84
- `c_ops::Union{Nothing,AbstractVector,Tuple}=nothing`: The list of the collapse operators ``\{\hat{C}_n\}_n``.
86
-
- `alg::OrdinaryDiffEqAlgorithm=Tsit5()`: The algorithm used for the time evolution.
87
85
- `e_ops::Union{Nothing,AbstractVector,Tuple}=nothing`: The list of the operators for which the expectation values are calculated.
88
86
- `H_t::Union{Nothing,Function,TimeDependentOperatorSum}=nothing`: The time-dependent Hamiltonian or Liouvillian.
89
87
- `params::NamedTuple=NamedTuple()`: The parameters of the time evolution.
@@ -95,7 +93,6 @@ where
95
93
- The states will be saved depend on the keyword argument `saveat` in `kwargs`.
96
94
- If `e_ops` is empty, the default value of `saveat=tlist` (saving the states corresponding to `tlist`), otherwise, `saveat=[tlist[end]]` (only save the final state). You can also specify `e_ops` and `saveat` separately.
97
95
- The default tolerances in `kwargs` are given as `reltol=1e-6` and `abstol=1e-8`.
98
-
- For more details about `alg` please refer to [`DifferentialEquations.jl` (ODE Solvers)](https://docs.sciml.ai/DiffEqDocs/stable/solvers/ode_solve/)
99
96
- For more details about `kwargs` please refer to [`DifferentialEquations.jl` (Keyword Arguments)](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/)
Copy file name to clipboardExpand all lines: src/time_evolution/sesolve.jl
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,6 @@ end
40
40
sesolveProblem(H,
41
41
ψ0,
42
42
tlist;
43
-
alg=Tsit5()
44
43
e_ops = nothing,
45
44
params=NamedTuple(),
46
45
progress_bar=Val(true),
@@ -57,7 +56,6 @@ Generates the ODEProblem for the Schrödinger time evolution of a quantum system
57
56
- `H::Union{QuantumObject,Tuple}`: The Hamiltonian of the system ``\hat{H}``.
58
57
- `ψ0::QuantumObject`: The initial state of the system ``|\psi(0)\rangle``.
59
58
- `tlist::AbstractVector`: The time list of the evolution.
60
-
- `alg::OrdinaryDiffEqAlgorithm`: The algorithm used for the time evolution.
61
59
- `e_ops::Union{Nothing,AbstractVector,Tuple}`: The list of operators to be evaluated during the evolution.
62
60
- `H_t::Union{Nothing,Function,TimeDependentOperatorSum}`: The time-dependent Hamiltonian of the system. If `nothing`, the Hamiltonian is time-independent.
63
61
- `params::NamedTuple`: The parameters of the system.
@@ -69,7 +67,6 @@ Generates the ODEProblem for the Schrödinger time evolution of a quantum system
69
67
- The states will be saved depend on the keyword argument `saveat` in `kwargs`.
70
68
- If `e_ops` is empty, the default value of `saveat=tlist` (saving the states corresponding to `tlist`), otherwise, `saveat=[tlist[end]]` (only save the final state). You can also specify `e_ops` and `saveat` separately.
71
69
- The default tolerances in `kwargs` are given as `reltol=1e-6` and `abstol=1e-8`.
72
-
- For more details about `alg` please refer to [`DifferentialEquations.jl` (ODE Solvers)](https://docs.sciml.ai/DiffEqDocs/stable/solvers/ode_solve/)
73
70
- For more details about `kwargs` please refer to [`DifferentialEquations.jl` (Keyword Arguments)](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/)
@@ -136,7 +135,6 @@ Above, `C_n` is the `n`-th collapse operator and `dW_j(t)` is the real Wiener i
136
135
- `ψ0::QuantumObject`: The initial state of the system ``|\psi(0)\rangle``.
137
136
- `tlist::AbstractVector`: The time list of the evolution.
138
137
- `sc_ops::Union{Nothing,AbstractVector,Tuple}=nothing`: List of stochastic collapse operators ``\{\hat{C}_n\}_n``.
139
-
- `alg::StochasticDiffEqAlgorithm`: The algorithm used for the time evolution.
140
138
- `e_ops::Union{Nothing,AbstractVector,Tuple}=nothing`: The list of operators to be evaluated during the evolution.
141
139
- `H_t::Union{Nothing,Function,TimeDependentOperatorSum}`: The time-dependent Hamiltonian of the system. If `nothing`, the Hamiltonian is time-independent.
142
140
- `params::NamedTuple`: The parameters of the system.
@@ -148,7 +146,6 @@ Above, `C_n` is the `n`-th collapse operator and `dW_j(t)` is the real Wiener i
148
146
- The states will be saved depend on the keyword argument `saveat` in `kwargs`.
149
147
- If `e_ops` is empty, the default value of `saveat=tlist` (saving the states corresponding to `tlist`), otherwise, `saveat=[tlist[end]]` (only save the final state). You can also specify `e_ops` and `saveat` separately.
150
148
- The default tolerances in `kwargs` are given as `reltol=1e-2` and `abstol=1e-2`.
151
-
- For more details about `alg` please refer to [`DifferentialEquations.jl` (SDE Solvers)](https://docs.sciml.ai/DiffEqDocs/stable/solvers/sde_solve/)
152
149
- For more details about `kwargs` please refer to [`DifferentialEquations.jl` (Keyword Arguments)](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/)
@@ -272,7 +267,6 @@ Above, `C_n` is the `n`-th collapse operator and `dW_j(t)` is the real Wiener i
272
267
- `ψ0::QuantumObject`: The initial state of the system ``|\psi(0)\rangle``.
273
268
- `tlist::AbstractVector`: The time list of the evolution.
274
269
- `sc_ops::Union{Nothing,AbstractVector,Tuple}=nothing`: List of stochastic collapse operators ``\{\hat{C}_n\}_n``.
275
-
- `alg::StochasticDiffEqAlgorithm`: The algorithm used for the time evolution.
276
270
- `e_ops::Union{Nothing,AbstractVector,Tuple}=nothing`: The list of operators to be evaluated during the evolution.
277
271
- `params::NamedTuple`: The parameters of the system.
278
272
- `rng::AbstractRNG`: The random number generator for reproducibility.
@@ -288,7 +282,6 @@ Above, `C_n` is the `n`-th collapse operator and `dW_j(t)` is the real Wiener i
288
282
- The states will be saved depend on the keyword argument `saveat` in `kwargs`.
289
283
- If `e_ops` is empty, the default value of `saveat=tlist` (saving the states corresponding to `tlist`), otherwise, `saveat=[tlist[end]]` (only save the final state). You can also specify `e_ops` and `saveat` separately.
290
284
- The default tolerances in `kwargs` are given as `reltol=1e-2` and `abstol=1e-2`.
291
-
- For more details about `alg` please refer to [`DifferentialEquations.jl` (SDE Solvers)](https://docs.sciml.ai/DiffEqDocs/stable/solvers/sde_solve/)
292
285
- For more details about `kwargs` please refer to [`DifferentialEquations.jl` (Keyword Arguments)](https://docs.sciml.ai/DiffEqDocs/stable/basics/common_solver_opts/)
293
286
294
287
# Returns
@@ -300,7 +293,6 @@ function ssesolveEnsembleProblem(
0 commit comments