2D radial spin echo#

Family:

Spin echo

Dimensionality:

2D, multi-slice

Sampling:

Radial

Readout:

One full spoke per excitation, read at a refocused echo

Multi-slice 2D radial spin echo: one full spoke per excitation.

Prescription#

pypulseqpp.sequences.se_radial2D_sequence()#

Multi-slice 2D radial spin echo: one full spoke per excitation.

A slice-selective SLR 90, one slice-selective SLR 180 between crushers half a TE later, and one spoke through the centre of k-space at the echo, turned per shot by a rotation extension. The spokes are chosen as gre_radial2D_sequence chooses them, and the slices dealt into packets as gre2D_sequence deals them. Every acquisition carries its spoke as LIN and its slice as SLC.

Parameters:
  • plot (bool, default=False) – Draw the finished sequence in SeqEyes.

  • test_report (bool, default=False) – Print a report on the finished sequence.

  • write_seq (bool, default=False) – Write the sequence to a .seq file.

  • seq_filename (str, default=None) – Where to write it; <NAME>.seq when omitted.

  • system (pypulseqpp.Opts, default=None) – System limits, held under the application’s MAX_GRAD and MAX_SLEW.

  • fov (float, default=0.22) – Isotropic in-plane field of view (m).

  • n (int, default=128) – In-plane matrix size; a spoke reads it edge to edge.

  • n_slices (int, default=1) – Number of slices.

  • slice_thickness (float, default=0.005) – Slice thickness (m).

  • slice_spacing (float, default=0.0) – Gap between adjacent slices (m); zero is contiguous.

  • te (float | None, default=None) – Echo time (s), excitation centre to the spoke’s centre crossing, with the refocusing pulse at its midpoint. None is as short as possible.

  • tr (float | None, default=0.5) – Repetition time between successive excitations of one slice (s). None is as short as possible, and puts every slice in one packet.

  • readout_bandwidth_hz (float, default=250000.0) – Requested receiver bandwidth (Hz).

  • ry (int, default=1) – Angular undersampling: one spoke in every ry of the Nyquist set is played.

  • n_dummy (int, default=0) – Non-acquiring repetitions, at the first spoke’s angle, before each packet.

  • readout_oversampling (float, default=2.0) – Readout oversampling factor, at least one.

Returns:

The designed sequence.

Return type:

pypulseqpp.Sequence

Raises:

ValueError – If ry is below one, or the TE or TR is shorter than the pulses and the readout take.

Examples

>>> from pypulseqpp import sequences
>>> seq = sequences.se_radial2D_sequence(n=32, tr=None)
>>> seq.check_timing()[0]
True

Designed and drawn#

2D radial spin echo

2D radial spin echo

See also#

Other spin echo sequences: se2D_sequence, se3D_sequence, se_stack_of_stars3D_sequence, se_spiral2D_sequence, se_stack_of_spirals3D_sequence, se_propeller2D_sequence, se_epi_propeller2D_sequence, se_stack_of_blades3D_sequence.

The same sampling in another family: gre_radial2D_sequence.

Every shipped sequence is listed in the catalogue.