2014-05-29 04:42:01 +08:00
|
|
|
from artiq.language.units import *
|
2014-07-11 00:13:37 +08:00
|
|
|
from artiq.language.core import *
|
2014-05-17 20:08:50 +08:00
|
|
|
|
2014-07-10 21:29:22 +08:00
|
|
|
class AluminumSpectroscopy(MPO):
|
2014-07-10 21:38:51 +08:00
|
|
|
channels = "mains_sync laser_cooling spectroscopy spectroscopy_b state_detection pmt"
|
2014-05-29 04:42:01 +08:00
|
|
|
parameters = "spectroscopy_freq photon_limit_low photon_limit_high"
|
|
|
|
|
|
|
|
@kernel
|
|
|
|
def run(self):
|
|
|
|
state_0_count = 0
|
|
|
|
for count in range(100):
|
|
|
|
self.mains_sync.wait_edge()
|
|
|
|
delay(10*us)
|
|
|
|
self.laser_cooling.pulse(100*MHz, 100*us)
|
2014-05-17 20:08:50 +08:00
|
|
|
delay(5*us)
|
|
|
|
with parallel:
|
2014-05-29 04:42:01 +08:00
|
|
|
self.spectroscopy.pulse(self.spectroscopy_freq, 100*us)
|
|
|
|
with sequential:
|
|
|
|
delay(50*us)
|
|
|
|
self.spectroscopy_b.set(200)
|
|
|
|
delay(5*us)
|
|
|
|
while True:
|
|
|
|
delay(5*us)
|
|
|
|
with parallel:
|
|
|
|
self.state_detection.pulse(100*MHz, 10*us)
|
|
|
|
photon_count = self.pmt.count_gate(10*us)
|
|
|
|
if photon_count < self.photon_limit_low or photon_count > self.photon_limit_high:
|
|
|
|
break
|
|
|
|
if photon_count < self.photon_limit_low:
|
|
|
|
state_0_count += 1
|
|
|
|
return state_0_count
|
2014-05-17 20:08:50 +08:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2014-05-29 04:42:01 +08:00
|
|
|
from artiq.sim import devices as sd
|
|
|
|
from artiq.sim import time
|
|
|
|
|
|
|
|
exp = AluminumSpectroscopy(
|
|
|
|
core=sd.Core(),
|
|
|
|
mains_sync=sd.Input("mains_sync"),
|
|
|
|
laser_cooling=sd.WaveOutput("laser_cooling"),
|
|
|
|
spectroscopy=sd.WaveOutput("spectroscopy"),
|
|
|
|
spectroscopy_b=sd.VoltageOutput("spectroscopy_b"),
|
|
|
|
state_detection=sd.WaveOutput("state_detection"),
|
|
|
|
pmt=sd.Input("pmt"),
|
|
|
|
|
|
|
|
spectroscopy_freq=432*MHz,
|
|
|
|
photon_limit_low=10,
|
|
|
|
photon_limit_high=15
|
|
|
|
)
|
|
|
|
exp.run()
|
|
|
|
print(time.manager.format_timeline())
|