Skip to content

Commit

Permalink
fix: Fix GHZ_TO_HZ conversion in resonator fit
Browse files Browse the repository at this point in the history
  • Loading branch information
andrea-pasquale committed Jan 29, 2024
1 parent 5667b36 commit 76397f1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,6 +262,6 @@ def resonator_flux_dependence_fit_bounds(
left_bound, right_bound = qubit_flux_dependence_fit_bounds(
qubit_frequency=qubit_frequency, bias=bias
)
left_bound += [bare_resonator_frequency - 0.5, 0]
right_bound += [bare_resonator_frequency + 0.5, 1]
left_bound += [bare_resonator_frequency * HZ_TO_GHZ - 0.5, 0]
right_bound += [bare_resonator_frequency * HZ_TO_GHZ + 0.5, 1]
return (left_bound, right_bound)

0 comments on commit 76397f1

Please sign in to comment.