Skip to content
Snippets Groups Projects
Unverified Commit 0fd4dfc4 authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

Fix block duration setting for v1.3.1

parent 61a43a29
No related branches found
No related tags found
1 merge request!1Add writing to Pulseq files
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
...@@ -14,13 +14,13 @@ function Sequence(pulseq::PulseqSequence; scanner=nothing, B0=nothing) ...@@ -14,13 +14,13 @@ function Sequence(pulseq::PulseqSequence; scanner=nothing, B0=nothing)
use_B0 = isnothing(B0) ? get(pulseq.definitions, :B0, 3.) : B0 use_B0 = isnothing(B0) ? get(pulseq.definitions, :B0, 3.) : B0
scanner = Scanner(B0=use_B0) scanner = Scanner(B0=use_B0)
end end
blocks = BuildingBlock.(pulseq.blocks; pulseq.definitions...) blocks = BuildingBlock.(pulseq.blocks; pulseq.definitions..., version=pulseq.version)
return Sequence(blocks; name=Symbol(get(pulseq.definitions, :Name, "from_pulseq")), scanner=scanner) return Sequence(blocks; name=Symbol(get(pulseq.definitions, :Name, "from_pulseq")), scanner=scanner)
end end
function BuildingBlock(pulseq::PulseqBlock; BlockDurationRaster, RadiofrequencyRasterTime, GradientRasterTime, kwargs...) function BuildingBlock(pulseq::PulseqBlock; version, BlockDurationRaster, RadiofrequencyRasterTime, GradientRasterTime, kwargs...)
duration = pulseq.duration * BlockDurationRaster * 1e3 stated_duration = pulseq.duration * BlockDurationRaster * 1e3
events = [] events = []
if !isnothing(pulseq.rf) if !isnothing(pulseq.rf)
...@@ -52,7 +52,20 @@ function BuildingBlock(pulseq::PulseqBlock; BlockDurationRaster, RadiofrequencyR ...@@ -52,7 +52,20 @@ function BuildingBlock(pulseq::PulseqBlock; BlockDurationRaster, RadiofrequencyR
end end
grads = [pulseq.gx, pulseq.gy, pulseq.gz] grads = [pulseq.gx, pulseq.gy, pulseq.gz]
times = sort(unique(vcat([0., duration], _control_times.(grads, GradientRasterTime)...))) min_duration = max(
maximum(e[1] + duration(e[2]) for e in events; init=0.),
maximum(vcat(_control_times.(grads, GradientRasterTime)...); init=0.)
)
if min_duration > stated_duration
if version == v"1.3.1"
stated_duration = min_duration
else
error("Minimum duration to play all RF/gradient/ADC events exceeds stated duration.")
end
end
times = sort(unique(vcat([0., stated_duration], _control_times.(grads, GradientRasterTime)...)))
waveform = [(t, _get_amplitude.(grads, t, GradientRasterTime)) for t in times] waveform = [(t, _get_amplitude.(grads, t, GradientRasterTime)) for t in times]
return BuildingBlock(waveform, events) return BuildingBlock(waveform, events)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment