mirror of
https://github.com/vale981/two_qubit_model
synced 2025-03-05 09:41:41 -05:00
correct defaults for L
This commit is contained in:
parent
9ba50dd25f
commit
7ebe59d531
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ class OttoEngine(QubitModelMutliBath):
|
||||||
"""
|
"""
|
||||||
|
|
||||||
L: tuple[np.ndarray, np.ndarray] = field(
|
L: tuple[np.ndarray, np.ndarray] = field(
|
||||||
default_factory=lambda: tuple([1 / 2 * (qt.sigmax().full())] * 2) # type: ignore
|
default_factory=lambda: tuple([(1 / 2 * (qt.sigmax().full())), (1 / 2 * (qt.sigmax().full()))]) # type: ignore
|
||||||
)
|
)
|
||||||
"""The bare coupling operators to the two baths."""
|
"""The bare coupling operators to the two baths."""
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue