Spatial
Uniform
Uniform(parent: Optional[Builder] = None)
Bases: SpatialModulation
The node specify a uniform spacial modulation. Which is ready to apply waveform
(See [Waveform
][bloqade.builder.waveform] for available waveform options)
Examples:
- To hit this node from the start node:
>>> reg = bloqade.start.add_position([(0,0),(1,1),(2,2),(3,3)])
>>> loc = reg.rydberg.detuning.uniform
- Apply Linear waveform:
>>> wv = bloqade.ir.Linear(start=0,stop=1,duration=0.5)
>>> reg = bloqade.start.add_position([(0,0),(1,1),(2,2),(3,3)])
>>> loc = reg.rydberg.detuning.uniform.apply(wv)
Source code in .venv/lib/python3.12/site-packages/bloqade/analog/builder/base.py
10 11 12 13 14 |
|