Skip to content

Commit

Permalink
add twpa parameters in qubits
Browse files Browse the repository at this point in the history
  • Loading branch information
Edoardo-Pedicillo committed Oct 16, 2023
1 parent 06c2d5a commit 867db1c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions iqm5q.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ def create(runcard_path=RUNCARD):
for i in range(11, 14)
)
channels |= Channel("L4-14", port=controller[("device_hdawg2", f"SIGOUTS/0")])

# TWPA pump(EraSynth)
channels |= Channel("L3-32")

Expand Down Expand Up @@ -173,14 +172,14 @@ def create(runcard_path=RUNCARD):
for q in range(0, 5):
qubits[q].drive = channels[f"L4-{15 + q}"]
qubits[q].flux = channels[f"L4-{6 + q}"]
qubits[q].twpa = channels[f"L3-32"]
channels[f"L4-{6 + q}"].qubit = qubits[q]

# assign channels to couplers and sweetspots(operating points)
for c, coupler in enumerate(couplers.values()):
coupler.flux = channels[f"L4-{11 + c}"]
# Is this needed ?
# channels[f"L4-{11 + c}"].qubit = qubits[f"c{c}"]

instruments = {controller.name: controller}
instruments.update({lo.name: lo for lo in local_oscillators})
instruments = load_instrument_settings(runcard, instruments)
Expand Down

0 comments on commit 867db1c

Please sign in to comment.