| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- import math
- import numpy as np
- import pypulseq as pp
- def main(plot: bool, write_seq: bool, seq_filename: str = "gre_pypulseq.seq"):
- # ======
- # SETUP
- # ======
- # Create a new sequence object
- seq = pp.Sequence()
- fov = 256e-3 # Define FOV and resolution
- Nx = 256
- Ny = 256
- alpha = 10 # flip angle
- slice_thickness = 3e-3 # slice
- TR = 12e-3 # Repetition time
- TE = 5e-3 # Echo time
- rf_spoiling_inc = 117 # RF spoiling increment
- system = pp.Opts(
- max_grad=28,
- grad_unit="mT/m",
- max_slew=150,
- slew_unit="T/m/s",
- rf_ringdown_time=20e-6,
- rf_dead_time=100e-6,
- adc_dead_time=10e-6,
- )
- # ======
- # CREATE EVENTS
- # ======
- rf, gz, _ = pp.make_sinc_pulse(
- flip_angle=alpha * math.pi / 180,
- duration=3e-3,
- slice_thickness=slice_thickness,
- apodization=0.42,
- time_bw_product=4,
- system=system,
- return_gz=True,
- )
- # Define other gradients and ADC events
- delta_k = 1 / fov
- gx = pp.make_trapezoid(
- channel="x", flat_area=Nx * delta_k, flat_time=3.2e-3, system=system
- )
- adc = pp.make_adc(
- num_samples=Nx, duration=gx.flat_time, delay=gx.rise_time, system=system
- )
- gx_pre = pp.make_trapezoid(
- channel="x", area=-gx.area / 2, duration=1e-3, system=system
- )
- gz_reph = pp.make_trapezoid(
- channel="z", area=-gz.area / 2, duration=1e-3, system=system
- )
- phase_areas = (np.arange(Ny) - Ny / 2) * delta_k
- # gradient spoiling
- gx_spoil = pp.make_trapezoid(channel="x", area=2 * Nx * delta_k, system=system)
- gz_spoil = pp.make_trapezoid(channel="z", area=4 / slice_thickness, system=system)
- # Calculate timing
- delay_TE = (
- np.ceil(
- (
- TE
- - pp.calc_duration(gx_pre)
- - gz.fall_time
- - gz.flat_time / 2
- - pp.calc_duration(gx) / 2
- )
- / seq.grad_raster_time
- )
- * seq.grad_raster_time
- )
- delay_TR = (
- np.ceil(
- (
- TR
- - pp.calc_duration(gz)
- - pp.calc_duration(gx_pre)
- - pp.calc_duration(gx)
- - delay_TE
- )
- / seq.grad_raster_time
- )
- * seq.grad_raster_time
- )
- assert np.all(delay_TE >= 0)
- assert np.all(delay_TR >= pp.calc_duration(gx_spoil, gz_spoil))
- rf_phase = 0
- rf_inc = 0
- # ======
- # CONSTRUCT SEQUENCE
- # ======
- # Loop over phase encodes and define sequence blocks
- for i in range(Ny):
- rf.phase_offset = rf_phase / 180 * np.pi
- adc.phase_offset = rf_phase / 180 * np.pi
- rf_inc = divmod(rf_inc + rf_spoiling_inc, 360.0)[1]
- rf_phase = divmod(rf_phase + rf_inc, 360.0)[1]
- seq.add_block(rf, gz)
- gy_pre = pp.make_trapezoid(
- channel="y",
- area=phase_areas[i],
- duration=pp.calc_duration(gx_pre),
- system=system,
- )
- seq.add_block(gx_pre, gy_pre, gz_reph)
- seq.add_block(pp.make_delay(delay_TE))
- seq.add_block(gx, adc)
- gy_pre.amplitude = -gy_pre.amplitude
- seq.add_block(pp.make_delay(delay_TR), gx_spoil, gy_pre, gz_spoil)
- # Check whether the timing of the sequence is correct
- ok, error_report = seq.check_timing()
- if ok:
- print("Timing check passed successfully")
- else:
- print("Timing check failed. Error listing follows:")
- [print(e) for e in error_report]
- # ======
- # VISUALIZATION
- # ======
- if plot:
- seq.plot()
- seq.calculate_kspacePP()
- # Very optional slow step, but useful for testing during development e.g. for the real TE, TR or for staying within
- # slew-rate limits
- rep = seq.test_report()
- print(rep)
- # =========
- # WRITE .SEQ
- # =========
- if write_seq:
- # Prepare the sequence output for the scanner
- seq.set_definition(key="FOV", value=[fov, fov, slice_thickness])
- seq.set_definition(key="Name", value="gre")
- seq.write(seq_filename)
- if __name__ == "__main__":
- main(plot=False, write_seq=True)
|