Difference between revisions of "Imaging module"
(→Setting up the imaging context) |
(→Other relevant functions) |
||
| Line 9: | Line 9: | ||
==Other relevant functions== | ==Other relevant functions== | ||
| + | |||
| + | [[g2fplanck.m]] - returns magnetic field gradient operators. | ||
[[hydrodynamics.m]] - first derivative operators with respect to spatial coordinates. | [[hydrodynamics.m]] - first derivative operators with respect to spatial coordinates. | ||
Revision as of 21:01, 2 January 2018
Introduction
Spinach contains a very general implementation of the Fokker-Planck formalism that is able to treat 3D diffusion and hydrodynamics simultaneously with Liouville-space spin dynamics, relaxation and chemical kinetics. This is a result of our in-house research, and it is dictated by the direction in which the field is moving: many emerging magnetic resonance methods (ultrafast NMR, singlet state imaging, spatially encoded NMR, metabolite-selective MRI, catalyst MRI, hyperpolarised imaging, etc.) fall in between the established simulation frameworks: on the one hand, they require accurate simulation of three-dimensional diffusion, hydrodynamics and chemical processes; on the other, it is essential that the spin evolution in every molecule is treated quantum mechanically in a way that accurately describes spin relaxation processes. At the same time, sophisticated spatially and temporally modulated radiofrequency pulses must be accounted for. Within the Fokker-Planck formalism, things like three-dimensional diffusion, hydrodynamics and off-resonance radiofrequency appear in a very simple way – each of these is just another constant matrix to add to the background evolution Hamiltonian.
Setting up the imaging context
Fokker-Planck imaging simulation context. Generates the Hamiltonian, the relaxation superoperator, the kinetics superoperator, the Fokker-Planck spatial dynamics generator (including diffusion and flow), gradient operators, and passes all of that to the pulse sequence, which should be supplied as a handle.
Syntax
answer=imaging(spin_system,pulse_sequence,parameters)
Parameters
pulse_sequence - pulse sequence function handle. See the
experiments directory for the list of
pulse sequences that ship with Spinach.
parameters.u - X components of the velocity vectors
for each point in the sample, m/s
parameters.v - Y components of the velocity vectors
for each point in the sample, m/s
parameters.w - Z components of the velocity vectors
for each point in the sample, m/s
parameters.diff - diffusion coefficient or 3x3 tensor, m^2/s
for situations when this parameter is the
same in every voxel
parameters.dxx - Cartesian components of the diffusion
parameters.dxy tensor for each voxel of the sample
...
parameters.dzz
parameters.dims - dimensions of the 3D box, meters
parameters.npts - number of points in each dimension
of the 3D box
parameters.deriv - {'fourier'} uses Fourier diffe-
rentiation matrices; {'period',n}
requests n-point central finite-
difference matrices with periodic
boundary conditions
Three types of phantoms must be specified. The relaxation theory phantom contains relaxation superoperators and their coefficients in each voxel, specified in the following way:
parameters.rlx_ph={Ph1,Ph2,...,PhN}
parameters.rlx_op={R1,R2,...,RN}
where PhN have the same dimension as the sample voxel grid and RN are relaxation superoperators. The initial condition phantom reflects the fact that different voxels might start off in a different spin state. It must be specified in the following way:
parameters.rho0_ph={Ph1,Ph2,...,PhN}
parameters.rho0_op={rho1,rho2,...,rhoN}
where PhN have the same dimension as the sample voxel grid and rhoN are spin states obtained from state() function. The detection state phantom reflects the fact that different voxels might be detected at different ngles and with different sensitivity. It must be specified in the following way:
parameters.coil_ph={Ph1,Ph2,...,PhN}
parameters.coil_op={rho1,rho2,...,rhoN}
where PhN have the same dimension as the sample voxel grid and rhoN are spin states obtained from state() function.
Outputs
This function returns whatever the pulse sequence returns.
Notes
- The direct product order is Z(x)Y(x)X(x)Spin, this corresponds to a column-wise vectorization of a 3D array with dimensions ordered as [X Y Z].
- Very large imaging calculations always benefit from Tesla cards (add 'gpu' to sys.enable) and may benefit from polyadic array processing (add 'polyadic' to sys.enable).
- Fourier derivatives are precise but expensive. If your accuracy requirements are not seven decimal places, consider using finite difference derivatives.
See also
crystal.m, doublerot.m, floquet.m, gridfree.m, liquid.m, meshflow.m, powder.m, singlerot.m, Kernel contexts, Built-in_experiments
Version 2.8, authors: Ilya Kuprov, Ahmed Allami, Maria Grazia Concilio
Pre-programmed pulse sequences
basic_1d_hard.m - basic 1D imaging with a hard pulse and a gradient
cpmg_dec.m - CPMG echo train epi_2d.m - 2D (spatial) echo planar imaging sequence
epi_3d.m - Diffusion weighted 3D echo planar imaging pulse sequence.
fse.m - 2D (spatial) fast spin echo sequence
grad_echo.m - simple gradient echo pulse sequence
phase_enc_2d.m - 2D (spatial) phase encoded imaging.
phase_enc_3d.m - 3D (spatial) imaging with slice selection followed by phase-encoded acquisition
press_1d.m - 1D (spatial) PRESS sequence
press_2d.m - 2D (spatial) PRESS sequence
press_voxel_1d.m - voxel selection diagnostics for 1D (spatial) PRESS pulse sequence
press_voxel_2d.m - voxel selection diagnostics for 2D (spatial) PRESS pulse sequence
press_voxel_3d.m - voxel selection diagnostics for 2D (spatial) PRESS pulse sequence
slice_select_1d.m - slice selection diagnostics
spin_echo.m - simple spin echo pulse sequence
spiral.m - 2D (spatial) imaging with spiral readout
udd_dec.m - Uhrig Dynamic Decoupling (UDD) echo train
uhrig_times.m - timing sequence for UDD echo train
Other relevant functions
g2fplanck.m - returns magnetic field gradient operators.
hydrodynamics.m - first derivative operators with respect to spatial coordinates.
ngridpts.m - estimates the minimum number of spatial grid points necessary to have a valid treatment of gradient driven experiments with explicit digitization of spatial dimensions.
v2fplanck.m - converts diffusion and velocity fields into Fokker-Planck operators.
Version 2.1, authors: Ilya Kuprov, Ahmed Allami, Maria Grazia Concilio