Skip to content

Commit

Permalink
Fixed dispersion equation typo (#953)
Browse files Browse the repository at this point in the history
Co-authored-by: eliasx510 <elias.lehman@gmail.com>
  • Loading branch information
eliaslehman and eliasx510 authored Jun 14, 2023
1 parent 95c7d22 commit 340dc6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qiskit_metal/analyses/quantization/lumped_capacitive.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def transmon_props(Ic: float, Cq: float):
wq = 1 / np.sqrt(LJ * Cq) - EC

# charge dispersion
eps1 = EC * 2**9 * (2/np.sqrt(np.pi)) * \
eps1 = EC * 2**9 * (np.sqrt(2/np.pi)) * \
(EJ/2/EC)**(1.25) * np.exp(-np.sqrt(8*EJ/EC))

return LJ, EJ, Zqp, EC, wq, wq0, eps1
Expand Down

0 comments on commit 340dc6e

Please sign in to comment.