Skip to content

Commit

Permalink
Fixed bug in SPDS
Browse files Browse the repository at this point in the history
  • Loading branch information
josalggui committed Nov 30, 2024
1 parent 4b459d6 commit 1efa0bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions seq/spds.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def __init__(self):
tip="Duration of the RF excitation pulse in microseconds (us).")
self.addParameter(key='nPoints', string='Matrix size [rd, ph, sl]', val=[10, 10, 10], field='IM',
tip='Matrix size for the acquired images.')
self.addParameter(key='fov', string='Field of View (cm)', val=[5.0, 5.0, 5.0], field='IM',
self.addParameter(key='fov', string='Field of View (cm)', val=[15.0, 15.0, 15.0], field='IM',
tip='Field of View (cm).')
self.addParameter(key='axesOrientation', string='Axes[rd,ph,sl]', val=[2, 1, 0], field='IM',
tip="0=x, 1=y, 2=z")
Expand Down Expand Up @@ -313,7 +313,7 @@ def sequenceRun(self, plotSeq=False, demo=False, standalone=False):
block_adc_b = pp.make_adc(
num_samples=n_rd,
dwell=1 / bw_b * 1e-6,
delay=self.repetitionTime - n_rd / bw_a * 1e-6,
delay=self.repetitionTime - n_rd / bw_b * 1e-6,
)

'''
Expand Down

0 comments on commit 1efa0bb

Please sign in to comment.