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

Split variables per expected type

parent 79e7c113
No related branches found
No related tags found
No related merge requests found
...@@ -3,43 +3,51 @@ import JuMP: @variable, Model, @objective, objective_function, owner_model, has_ ...@@ -3,43 +3,51 @@ import JuMP: @variable, Model, @objective, objective_function, owner_model, has_
import ..Scanners: gradient_strength, slew_rate import ..Scanners: gradient_strength, slew_rate
all_variables_symbols = [ all_variables_symbols = [
# general :block => [
:duration => (:block, "duration of the building block in ms."), :duration => "duration of the building block in ms.",
:TR => (:sequence, "Time on which an MRI sequence repeats itself in ms."), ],
:sequence => [
# RF pulse :TR => "Time on which an MRI sequence repeats itself in ms.",
:flip_angle => (:pulse, "The flip angle of the RF pulse in degrees"), ],
:amplitude => (:pulse, "The maximum amplitude of an RF pulse in kHz"),
:phase => (:pulse, "The angle of the phase of an RF pulse in KHz"), :pulse => [
:frequency => (:pulse, "The off-resonance frequency of an RF pulse (relative to the Larmor frequency of water) in KHz"), :flip_angle => "The flip angle of the RF pulse in degrees",
:bandwidth => (:pulse, "Bandwidth of the RF pulse in kHz. If you are going to divide by the bandwidth, it can be more efficient to use the [`inverse_bandwidth`](@ref)."), :amplitude => "The maximum amplitude of an RF pulse in kHz"
:inverse_bandwidth => (:pulse, "Inverse of the [`bandwidth`](@ref) of the RF pulse in ms"), :phase => "The angle of the phase of an RF pulse in KHz",
:N_left => (:pulse, "The number of zero crossings of the RF pulse before the main peak"), :frequency => "The off-resonance frequency of an RF pulse (relative to the Larmor frequency of water) in KHz",
:N_right => (:pulse, "The number of zero crossings of the RF pulse after the main peak"), :bandwidth => "Bandwidth of the RF pulse in kHz. If you are going to divide by the bandwidth, it can be more efficient to use the [`inverse_bandwidth`](@ref).",
:slice_thickness => (:pulse, "Slice thickness of an RF pulse that is active during a gradient."), :inverse_bandwidth => "Inverse of the [`bandwidth`](@ref) of the RF pulse in ms",
:N_left => "The number of zero crossings of the RF pulse before the main peak",
:N_right => "The number of zero crossings of the RF pulse after the main peak",
:slice_thickness => "Slice thickness of an RF pulse that is active during a gradient.",
],
# gradients # gradients
:qvec => (:gradient, "The spatial range and orientation on which the displacements can be detected due to this gradient in rad/um."), :gradient => [
:qval => (:gradient, "The spatial range on which the displacements can be detected due to this gradient in rad/um (i.e., norm of [`qvec`](@ref))."), :qvec => "The spatial range and orientation on which the displacements can be detected due to this gradient in rad/um.",
:δ => (:gradient, "Effective duration of a gradient pulse ([`rise_time`](@ref) + [`flat_time`](@ref)) in ms."), :qval => "The spatial range on which the displacements can be detected due to this gradient in rad/um (i.e., norm of [`qvec`](@ref)).",
:rise_time => (:gradient, "Time for gradient pulse to reach its maximum value in ms."), :δ => "Effective duration of a gradient pulse ([`rise_time`](@ref) + [`flat_time`](@ref)) in ms.",
:flat_time => (:gradient, "Time of gradient pulse at maximum value in ms."), :rise_time => "Time for gradient pulse to reach its maximum value in ms.",
:gradient_strength => (:gradient, "vector with maximum strength of a gradient along each dimension (kHz/um)"), :flat_time => "Time of gradient pulse at maximum value in ms.",
:slew_rate => (:gradient, "vector with maximum slew rate of a gradient along each dimension (kHz/um)"), :gradient_strength => "vector with maximum strength of a gradient along each dimension (kHz/um)",
:slew_rate => "vector with maximum slew rate of a gradient along each dimension (kHz/um)",
],
] ]
symbol_to_func = Dict{Symbol, Function}() symbol_to_func = Dict{Symbol, Function}()
for (func_symbol, (block_symbol, description)) in all_variables_symbols for (block_symbol, all_functions) in all_variables_symbols
as_string = " $func_symbol($block_symbol)\n\n$description\n\nThis represents a variable within the sequence. Variables can be set during the construction of a [`BuildingBlock`](@ref) or used to create constraints after the fact." for (func_symbol, description) in all_functions
new_func = @eval begin as_string = " $func_symbol($block_symbol)\n\n$description\n\nThis represents a variable within the sequence. Variables can be set during the construction of a [`BuildingBlock`](@ref) or used to create constraints after the fact."
function $func_symbol end new_func = @eval begin
@doc $as_string $func_symbol function $func_symbol end
$func_symbol @doc $as_string $func_symbol
$func_symbol
end
symbol_to_func[func_symbol] = new_func
end end
symbol_to_func[func_symbol] = new_func
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