- `orientation` sets the gradient orienation (ignored if `qvec` is set). Can be set to a vector for a fixed orientation. Otherwise the orientation will be aligned with the `rotate` (if set) or fully free (if `rotate` is nothing). Set to :flip to point in the inverse of the user-provided `rotate`.
- `rotate`: with which user-set parameter will this gradient be rotated (e.g., :bvec). Default is no rotation.
- `scale`: with which user-set parameter will this gradient be scaled (e.g., :bval). Default is no scaling.
## Variables
- [`qvec`](@ref): Spatial scale and direction on which spins will be dephased due to this pulsed gradient in rad/um.
- [`qval`](@ref): Spatial scale on which spins will be dephased due to this pulsed gradient in rad/um.
"""
struct InstantGradientBlock<:GradientBlock
qvec::SVector{3,VariableType}
rotate::Union{Nothing,Symbol}
scale::Union{Nothing,Symbol}
end
function interpret_orientation(orientation,qval,qvec,will_rotate)
if!isnothing(qvec)
return(false,qvec)
end
iforientation==:flip
@assertwill_rotate"setting `orientation=:flip` only makes sense if the `rotate` is set as well."