artiq/examples/simple_simulation.py

31 lines
719 B
Python
Raw Normal View History

2014-06-18 19:43:09 +08:00
from artiq.language.units import *
from artiq.language.core import *
2014-06-18 19:43:09 +08:00
class SimpleSimulation(MPO):
parameters = "a b c d"
2014-06-18 19:43:09 +08:00
@kernel
def run(self):
with parallel:
with sequential:
self.a.pulse(100*MHz, 20*us)
self.b.pulse(200*MHz, 20*us)
with sequential:
self.c.pulse(300*MHz, 10*us)
self.d.pulse(400*MHz, 20*us)
if __name__ == "__main__":
from artiq.sim import devices as sd
from artiq.sim import time
2014-08-13 18:16:40 +08:00
coredev = sd.Core()
2014-06-18 19:43:09 +08:00
exp = SimpleSimulation(
2014-08-13 18:16:40 +08:00
core=coredev,
a=sd.WaveOutput(core=coredev, name="a"),
b=sd.WaveOutput(core=coredev, name="b"),
c=sd.WaveOutput(core=coredev, name="c"),
d=sd.WaveOutput(core=coredev, name="d"),
2014-06-18 19:43:09 +08:00
)
exp.run()
print(time.manager.format_timeline())