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

Add stretch parameter for RF pulse adjustments

parent eefb6bf5
No related branches found
No related tags found
No related merge requests found
...@@ -64,10 +64,10 @@ end ...@@ -64,10 +64,10 @@ end
split_timestep(pulse::ConstantPulse, precision) = Inf split_timestep(pulse::ConstantPulse, precision) = Inf
function adjust_internal(block::ConstantPulse; scale=1., frequency=0.) function adjust_internal(block::ConstantPulse; scale=1., frequency=0., stretch=1.)
ConstantPulse( ConstantPulse(
block.amplitude * scale, block.amplitude * scale,
block.duration, block.duration * stretch,
block.phase, block.phase,
block.frequency + frequency, block.frequency + frequency,
block.group, block.group,
......
...@@ -153,9 +153,9 @@ function split_timestep(gp::GenericPulse, precision) ...@@ -153,9 +153,9 @@ function split_timestep(gp::GenericPulse, precision)
return sqrt(2 * precision / max_second_der) return sqrt(2 * precision / max_second_der)
end end
function adjust_internal(block::GenericPulse; scale=1., frequency=0.) function adjust_internal(block::GenericPulse; scale=1., frequency=0., stretch=1.)
GenericPulse( GenericPulse(
block.time, block.time .* stretch,
block.amplitude .* scale, block.amplitude .* scale,
block.phase .+ (360. * frequency) .* (block.time .- effective_time(block)) block.phase .+ (360. * frequency) .* (block.time .- effective_time(block))
) )
......
...@@ -107,7 +107,7 @@ function split_timestep(block::SincPulse, precision) ...@@ -107,7 +107,7 @@ function split_timestep(block::SincPulse, precision)
return sqrt(2 * precision / max_second_derivative) return sqrt(2 * precision / max_second_derivative)
end end
function adjust_internal(block::SincPulse; scale=1., frequency=0.) function adjust_internal(block::SincPulse; scale=1., frequency=0., stretch=1.)
SincPulse( SincPulse(
block.apodise, block.apodise,
block.Nzeros, block.Nzeros,
...@@ -115,7 +115,7 @@ function adjust_internal(block::SincPulse; scale=1., frequency=0.) ...@@ -115,7 +115,7 @@ function adjust_internal(block::SincPulse; scale=1., frequency=0.)
block.amplitude * scale, block.amplitude * scale,
block.phase, block.phase,
block.frequency + frequency, block.frequency + frequency,
block.lobe_duration, block.lobe_duration * stretch,
block.group block.group
) )
end end
......
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