Examples
Simple example fit_boson_bath_to_boson_bath
In the following, we give an example of the basic usage of the function
fit_boson_bath_to_boson_bath
. We would like to fit a spin-boson model to a boson bath. First we
create a mixed Hamiltonian consisting of a spin- and a boson system.
from struqture_py import mixed_systems, spins, bosons
# Number of bosons and spins.
number_system_spins = 1
number_bosons = 2
# Boson energies and broadening.
bath_energies = [0.5, 1.5]
bath_broadenings = [0.1, 0.2]
# Coupling between system and boson.
system_boson_couplings = [0.3, 0.1]
# Create a new mixed system with one spin and one boson subsystem
spin_boson_hamiltonian = mixed_systems.MixedLindbladOpenSystem(
1,
1,
0,
)
# Set bath energies
for bath_index, bath_energy in enumerate(bath_energies):
index = mixed_systems.HermitianMixedProduct(
# Identity spin operator
[spins.PauliProduct()],
# Create a Boson occupation operator
[bosons.BosonProduct([bath_index], [bath_index])],
[],
)
spin_boson_hamiltonian.system_add_operator_product(index, bath_energy)
# Set bath noise
for bath_index, bath_broadening in enumerate(bath_broadenings):
# create the index for the Lindblad terms.
# We have pure damping
index = mixed_systems.MixedDecoherenceProduct(
# Identity spin operator
[spins.DecoherenceProduct()],
# Create a Boson occupation operator
[bosons.BosonProduct([], [bath_index])],
[],
)
spin_boson_hamiltonian.noise_add_operator_product((index, index), bath_broadening)
# Set couplings, use longitudinal (Z) coupling
for bath_index, system_bath_coupling in enumerate(system_boson_couplings):
index = mixed_systems.HermitianMixedProduct(
# Identity spin operator
[spins.PauliProduct().z(0)],
# Create a Boson coupling operator (always a + a^dagger)
[bosons.BosonProduct([], [bath_index])],
[],
)
spin_boson_hamiltonian.system_add_operator_product(index, system_bath_coupling)
Now we can fit the spin_boson_hamiltonian
to a boson bath with fit_boson_bath_to_boson_bath
by
import numpy as np
from hqs_noise_app import BathFitter
# create spectrum from Spin-Bath-System
min_frequency = -2
max_frequency = 4
number_frequencies = 1000
frequencies = np.linspace(min_frequency, max_frequency, number_frequencies)
bath_fitter = BathFitter(
number_boson_modes=2,
spins_per_bosonic_mode=1,
broadening_constraint=[0.1, 0.1],
background_broadening_ratio=0.1,
minimum_eigenfrequencies=-2,
maximum_eigenfrequencies=2,
fitting_window=(-0.5, 1, 10),
coupling_types=["Z"],
)
fitted_spin_boson_system, _ = bath_fitter.fit_boson_bath_to_boson_bath(
original_system=spin_boson_hamiltonian,
frequencies=frequencies,
number_spins=number_system_spins,
)