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

Compute Pathway for single group

parent c585709e
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ import ..Variables: qvec, qval, bmat_gradient, VariableType, effective_time, dur ...@@ -7,7 +7,7 @@ import ..Variables: qvec, qval, bmat_gradient, VariableType, effective_time, dur
""" """
Pathway(sequence::Sequence, pulse_effects::Vector{:Symbol/Number}, readout_index=1) Pathway(sequence::Sequence, pulse_effects::Vector{:Symbol/Number}, readout_index=1; group=nothing)
Describes how a specific spin/isochromat might experience the sequence. Describes how a specific spin/isochromat might experience the sequence.
...@@ -28,6 +28,7 @@ The RF pulses cause mappings between these different states as described below. ...@@ -28,6 +28,7 @@ The RF pulses cause mappings between these different states as described below.
- `:excite`/90: Takes spin state one step along the following sequence +longitudinal -> +transverse -> -longitudinal -> -transverse -> +longitudinal - `:excite`/90: Takes spin state one step along the following sequence +longitudinal -> +transverse -> -longitudinal -> -transverse -> +longitudinal
- `:neg_excite`/270/-90: Inverse step compared with `:excite`. - `:neg_excite`/270/-90: Inverse step compared with `:excite`.
- `readout_index`: After encountering the number of pulses as defined in `pulse_effects`, continue the `PathWay` until the readout given by `index` is reached. If set to 0 the `PathWay` is terminated immediately after the last RF pulse. - `readout_index`: After encountering the number of pulses as defined in `pulse_effects`, continue the `PathWay` until the readout given by `index` is reached. If set to 0 the `PathWay` is terminated immediately after the last RF pulse.
- `group`: which gradient grouping to consider for the `qvec` and `bmat`.
## Attributes ## Attributes
Over the pathway the following values are computed. Each can be accessed by calling the appropriate function: Over the pathway the following values are computed. Each can be accessed by calling the appropriate function:
...@@ -39,7 +40,6 @@ Over the pathway the following values are computed. Each can be accessed by call ...@@ -39,7 +40,6 @@ Over the pathway the following values are computed. Each can be accessed by call
### Effect of gradients ### Effect of gradients
The area under curve, q-values, and b-values are computed separately for each group of gradients (depending on the `group` keyword set during construction). The area under curve, q-values, and b-values are computed separately for each group of gradients (depending on the `group` keyword set during construction).
You can select which gradients to consider when accessing these values.
- [`qvec`](@ref): Net displacement vector in k-space/q-space. - [`qvec`](@ref): Net displacement vector in k-space/q-space.
- [`qval`](@ref)/[`area_under_curve`](@ref): size of the displacement in k-space/q-space. For a spoiled pathway, this should be large compared with 1/voxel size; for unspoiled pathways it should be (close to) zero. - [`qval`](@ref)/[`area_under_curve`](@ref): size of the displacement in k-space/q-space. For a spoiled pathway, this should be large compared with 1/voxel size; for unspoiled pathways it should be (close to) zero.
- [`bmat`](@ref): Net diffusion weighting due to gradients along the [`Pathway`](@ref) in matrix form. - [`bmat`](@ref): Net diffusion weighting due to gradients along the [`Pathway`](@ref) in matrix form.
...@@ -53,20 +53,21 @@ struct Pathway ...@@ -53,20 +53,21 @@ struct Pathway
# computed # computed
duration_states :: SVector{4, <:VariableType} duration_states :: SVector{4, <:VariableType}
qvec :: Dict{Any, SVector{3, <:VariableType}} qvec :: SVector{3, <:VariableType}
bmat :: Dict{Any, SMatrix{3, 3, <:VariableType, 9}} bmat :: SMatrix{3, 3, <:VariableType, 9}
end end
function Pathway(sequence::Sequence, pulse_effects::AbstractVector, readout_index::Integer=1) function Pathway(sequence::Sequence, pulse_effects::AbstractVector, readout_index::Integer=1; group=nothing)
walker = PathwayWalker() walker = PathwayWalker()
walk_pathway!(sequence, walker, interpret_pulse_effects.(pulse_effects), Ref(readout_index)) walk_pathway!(sequence, walker, interpret_pulse_effects.(pulse_effects), Ref(readout_index))
tracker = walker.gradient_trackers[group]
return Pathway( return Pathway(
sequence, sequence,
pulse_effects, pulse_effects,
readout_index, readout_index,
SVector{4}(walker.duration_states), SVector{4}(walker.duration_states),
Dict(k => SVector{3}(v.qvec) for (k, v) in pairs(walker.gradient_trackers)), tracker.qvec,
Dict(k => SMatrix{3, 3}(v.bmat) for (k, v) in pairs(walker.gradient_trackers)), tracker.bmat,
) )
end end
...@@ -120,7 +121,7 @@ Only gradients active while the spins are in the transverse plane are considered ...@@ -120,7 +121,7 @@ Only gradients active while the spins are in the transverse plane are considered
Returns a NamedTuple with the `qvec` for all gradient groups. Returns a NamedTuple with the `qvec` for all gradient groups.
""" """
qvec(pathway::Pathway, group) = pathway.qvec[group] qvec(pathway::Pathway) = pathway.qvec
""" """
...@@ -132,7 +133,7 @@ Only gradients active while the spins are in the transverse plane are considered ...@@ -132,7 +133,7 @@ Only gradients active while the spins are in the transverse plane are considered
Returns a NamedTuple with the `area_under_curve` for all gradient groups. Returns a NamedTuple with the `area_under_curve` for all gradient groups.
""" """
area_under_curve(pathway::Pathway, group) = norm(qvec(pathway, group)) area_under_curve(pathway::Pathway) = norm(qvec(pathway))
""" """
...@@ -144,7 +145,7 @@ Only gradients active while the spins are in the transverse plane are considered ...@@ -144,7 +145,7 @@ Only gradients active while the spins are in the transverse plane are considered
Returns a NamedTuple with the `bmat` for all gradient groups. Returns a NamedTuple with the `bmat` for all gradient groups.
""" """
bmat(pathway::Pathway, group) = pathway.bmat[group] bmat(pathway::Pathway) = pathway.bmat
""" """
bval(pathway::Pathway) bval(pathway::Pathway)
...@@ -155,7 +156,7 @@ Only gradients active while the spins are in the transverse plane will contribut ...@@ -155,7 +156,7 @@ Only gradients active while the spins are in the transverse plane will contribut
Returns a NamedTuple with the `bval` for all gradient groups. Returns a NamedTuple with the `bval` for all gradient groups.
""" """
bval(pathway::Pathway, group) = tr(bmat(pathway, group)) bval(pathway::Pathway) = tr(bmat(pathway))
""" """
...@@ -167,12 +168,6 @@ Multiple pathways might be returned as an array or (named)tuple. ...@@ -167,12 +168,6 @@ Multiple pathways might be returned as an array or (named)tuple.
""" """
function get_pathway end function get_pathway end
for fn in (:qvec, :area_under_curve, :bmat, :bval)
@eval function $fn(pathway::Pathway)
return NamedTuple(group => $fn(pathway, group) for group in keys(pathway.qvec))
end
end
for fn in (:qvec, :area_under_curve, :bmat, :bval, :duration_dephase, :duration_transverse) for fn in (:qvec, :area_under_curve, :bmat, :bval, :duration_dephase, :duration_transverse)
@eval function $fn(seq::Sequence) @eval function $fn(seq::Sequence)
pathway = get_pathway(seq) pathway = get_pathway(seq)
......
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