Skip to content
Snippets Groups Projects
Verified Commit e393dbac authored by Michiel Cottaar's avatar Michiel Cottaar
Browse files

Fix constructor call

parent 9ebde564
No related branches found
No related tags found
No related merge requests found
...@@ -87,6 +87,7 @@ function TrapezoidGradient(model::Model; orientation=nothing, rise_time=nothing, ...@@ -87,6 +87,7 @@ function TrapezoidGradient(model::Model; orientation=nothing, rise_time=nothing,
rise_time = get_free_variable(model, rise_time) rise_time = get_free_variable(model, rise_time)
if isnothing(pulse) if isnothing(pulse)
flat_time = get_free_variable(model, flat_time) flat_time = get_free_variable(model, flat_time)
time_before_pulse = time_after_pulse = 0.
elseif pulse isa RFPulseBlock elseif pulse isa RFPulseBlock
flat_time = duration(pulse) flat_time = duration(pulse)
time_before_pulse = time_after_pulse = 0. time_before_pulse = time_after_pulse = 0.
...@@ -100,13 +101,11 @@ function TrapezoidGradient(model::Model; orientation=nothing, rise_time=nothing, ...@@ -100,13 +101,11 @@ function TrapezoidGradient(model::Model; orientation=nothing, rise_time=nothing,
rise_time, rise_time,
flat_time, flat_time,
slew_rate, slew_rate,
rate_1d,
rotate, rotate,
scale, scale,
time_before_pulse, time_before_pulse,
pulse, pulse,
time_after_pulse time_after_pulse
) )
set_simple_constraints!(model, res, kwargs) set_simple_constraints!(model, res, kwargs)
......
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