German
Sprachen
English
Japanese
German
Korean
Portuguese, Brazilian
French
Shortcuts

qiskit.providers.aer.pulse.PulseSystemModel

class PulseSystemModel(hamiltonian=None, u_channel_lo=None, control_channel_labels=None, subsystem_list=None, dt=None)[Quellcode]

Physical model object for pulse simulator.

This class contains model information required by the PulseSimulator. It contains:

  • "hamiltonian": a HamiltonianModel object representing the Hamiltonian of the system.

  • "u_channel_lo": A description of ControlChannel local oscillator frequencies in terms of qubit local oscillator frequencies.

  • "control_channel_labels": Optional list of identifying information for each ControlChannel that the model supports.

  • "subsystem_list": List of subsystems in the model.

  • "dt": Sample width size for OpenPulse instructions.

A model can be instantiated from the helper function duffing_system_model(), or using the PulseSystemModel.from_backend() constructor.

Example

Constructing from a backend:

Initialize a PulseSystemModel.

Parameter
  • hamiltonian (HamiltonianModel) – The Hamiltonian of the system.

  • u_channel_lo (list) – list of ControlChannel frequency specifications.

  • control_channel_labels (list) – list of labels for control channels, which can be of any type.

  • subsystem_list (list) – list of valid qubit indicies for the model.

  • dt (float) – pixel size for pulse Instructions.

Verursacht

AerError – if hamiltonian is not None or a HamiltonianModel

__init__(hamiltonian=None, u_channel_lo=None, control_channel_labels=None, subsystem_list=None, dt=None)[Quellcode]

Initialize a PulseSystemModel.

Parameter
  • hamiltonian (HamiltonianModel) – The Hamiltonian of the system.

  • u_channel_lo (list) – list of ControlChannel frequency specifications.

  • control_channel_labels (list) – list of labels for control channels, which can be of any type.

  • subsystem_list (list) – list of valid qubit indicies for the model.

  • dt (float) – pixel size for pulse Instructions.

Verursacht

AerError – if hamiltonian is not None or a HamiltonianModel

Methods

__init__([hamiltonian, u_channel_lo, …])

Initialize a PulseSystemModel.

calculate_channel_frequencies([qubit_lo_freq])

Calculate frequencies for each channel given qubit_lo_freq.

control_channel_index(label)

Return the index of the control channel with identifying label.

from_backend(backend[, subsystem_list])

Returns a PulseSystemModel constructed from an OpenPulse enabled backend object.

from_config(configuration[, subsystem_list])

Construct a model from configuration and defaults.

calculate_channel_frequencies(qubit_lo_freq=None)[Quellcode]

Calculate frequencies for each channel given qubit_lo_freq.

Parameter

qubit_lo_freq (list or None) – list of qubit linear oscillator drive frequencies.

Rückgabe

a dictionary of channel frequencies.

Rückgabetyp

OrderedDict

Verursacht

ValueError – If channel or u_channel_lo are invalid.

control_channel_index(label)[Quellcode]

Return the index of the control channel with identifying label.

Parameter

label (Any) – label that identifies a control channel

Rückgabe

index of the ControlChannel

Rückgabetyp

int or None

classmethod from_backend(backend, subsystem_list=None)[Quellcode]

Returns a PulseSystemModel constructed from an OpenPulse enabled backend object.

Parameter
  • backend (Backend) – backend object to draw information from.

  • subsystem_list (list) – a list of ints for which qubits to include in the model.

Rückgabe

the PulseSystemModel constructed from the backend.

Rückgabetyp

PulseSystemModel

Verursacht

AerError – If channel or u_channel_lo are invalid.

classmethod from_config(configuration, subsystem_list=None)[Quellcode]

Construct a model from configuration and defaults.