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
@@ -265,11 +273,11 @@ Considering a monochromatic drive at frequency ``\omega_d``, we divide it into t
265
273
`H_p` and `H_m`, where `H_p` oscillates
266
274
as ``e^{i \omega t}`` and `H_m` oscillates as ``e^{-i \omega t}``.
267
275
There are two solvers available for this function:
268
-
- `SSFloquetLinearSystem`: Solves the linear system of equations.
276
+
- `SSFloquetLinearSolve`: Solves the linear system of equations.
269
277
- `SSFloquetEffectiveLiouvillian`: Solves the effective Liouvillian.
270
278
For both cases, `n_max` is the number of Fourier components to consider, and `tol` is the tolerance for the solver.
271
279
272
-
In the case of `SSFloquetLinearSystem`, the full linear system is solved at once:
280
+
In the case of `SSFloquetLinearSolve`, the full linear system is solved at once:
273
281
274
282
```math
275
283
( \mathcal{L}_0 - i n \omega_d ) \hat{\rho}_n + \mathcal{L}_1 \hat{\rho}_{n-1} + \mathcal{L}_{-1} \hat{\rho}_{n+1} = 0
@@ -312,7 +320,7 @@ This will allow to simultaneously obtain all the ``\hat{\rho}_n``.
312
320
In the case of `SSFloquetEffectiveLiouvillian`, instead, the effective Liouvillian is calculated using the matrix continued fraction method.
313
321
314
322
!!! note "different return"
315
-
The two solvers returns different objects. The `SSFloquetLinearSystem` returns a list of [`QuantumObject`](@ref), containing the density matrices for each Fourier component (``\hat{\rho}_{-n}``, with ``n`` from ``0`` to ``n_\textrm{max}``), while the `SSFloquetEffectiveLiouvillian` returns only ``\hat{\rho}_0``.
323
+
The two solvers returns different objects. The `SSFloquetLinearSolve` returns a list of [`QuantumObject`](@ref), containing the density matrices for each Fourier component (``\hat{\rho}_{-n}``, with ``n`` from ``0`` to ``n_\textrm{max}``), while the `SSFloquetEffectiveLiouvillian` returns only ``\hat{\rho}_0``.
316
324
317
325
## Arguments
318
326
- `H_0::QuantumObject`: The Hamiltonian or the Liouvillian of the undriven system.
@@ -322,7 +330,7 @@ In the case of `SSFloquetEffectiveLiouvillian`, instead, the effective Liouvilli
322
330
- `c_ops::Union{Nothing,AbstractVector} = nothing`: The optional collapse operators.
323
331
- `n_max::Integer = 2`: The number of Fourier components to consider.
324
332
- `tol::R = 1e-8`: The tolerance for the solver.
325
-
- `solver::FSolver = SSFloquetLinearSystem`: The solver to use.
333
+
- `solver::FSolver = SSFloquetLinearSolve`: The solver to use.
326
334
- `kwargs...`: Additional keyword arguments to be passed to the solver.
0 commit comments