SetFrequency¶
- class SetFrequency(frequency, channel, name=None)[source]¶
Set the channel frequency. This command operates on
PulseChannel
s. APulseChannel
creates pulses of the form\[Re[\exp(i 2\pi f jdt + \phi) d_j].\]Here, \(f\) is the frequency of the channel. The command
SetFrequency
allows the user to set the value of \(f\). All pulses that are played on a channel after SetFrequency has been called will have the corresponding frequency.The duration of SetFrequency is 0.
Creates a new set channel frequency instruction.
- Parameters
frequency (
float
) – New frequency of the channel in Hz.channel (
Optional
[PulseChannel
]) – The channel this instruction operates on.name (
Optional
[str
]) – Name of this set channel frequency command.
Attributes
Return the
Channel
that this instruction is scheduled on.Returns channels that this schedule uses.
The associated command.
Duration of this instruction.
New frequency.
Unique identifier for this instruction.
Iterable for getting instructions from Schedule tree.
Name of this instruction.
Return instruction operands.
Relative begin time of this instruction.
Relative end time of this instruction.
Occupied time slots by this instruction.
Methods
SetFrequency.append
(schedule[, name])Return a new
Schedule
withschedule
inserted at the maximum time over all channels shared betweenself
andschedule
.SetFrequency.ch_duration
(*channels)Return duration of the supplied channels in this Instruction.
SetFrequency.ch_start_time
(*channels)Return minimum start time for supplied channels.
SetFrequency.ch_stop_time
(*channels)Return maximum start time for supplied channels.
SetFrequency.draw
([dt, style, filename, …])Plot the instruction.
Return itself as already single instruction.
SetFrequency.insert
(start_time, schedule[, name])Return a new
Schedule
withschedule
inserted withinself
atstart_time
.SetFrequency.shift
(time[, name])Return a new schedule shifted forward by time.
SetFrequency.union
(*schedules[, name])Return a new schedule which is the union of self and schedule.