An open API service indexing awesome lists of open source software.

https://github.com/brechmos/t2stimulate

T2 Stimulated Echo Simulation and Fitting
https://github.com/brechmos/t2stimulate

echo fitting-algorithm mri python simulation t2

Last synced: about 1 month ago
JSON representation

T2 Stimulated Echo Simulation and Fitting

Awesome Lists containing this project

README

          

===========
T2Stimulate
===========

.. image:: https://img.shields.io/pypi/v/t2stimulate.svg
:target: https://pypi.python.org/pypi/t2stimulate

.. image:: https://img.shields.io/travis/brechmos/t2stimulate.svg
:target: https://travis-ci.org/brechmos/t2stimulate

.. image:: https://readthedocs.org/projects/t2stimulate/badge/?version=latest
:target: https://t2stimulate.readthedocs.io/en/latest/?badge=latest
:alt: Documentation Status

.. image:: https://pyup.io/repos/github/brechmos/t2stimulate/shield.svg
:target: https://pyup.io/repos/github/brechmos/t2stimulate/
:alt: Updates

MRI T2 decay curve simulation with imperfect refocusing pulses (non-180 degrees)

* Free software: GNU General Public License v3
* Documentation: https://t2stimulate.readthedocs.io.

A T2 multi-echo decay curve in MRI is traditionally modeled as a decaying exponential with one or more exponential
components. This assumes the refocusing pulse flip angle is at or near 180 degrees, and, if not, that other
gradients are added in as spoilers to remove the signal from stimulated echoes.

The stimulated echoes were modeled many years ago in a paper (ref) and were then implemented in simulation code and were
found to be sufficient to use for fitting multi-echo decay curves from non-180 degree refocussing
pulse sequences.

Below is an example of three curves of a 32 echo MRI Pulse sequence with TE=10ms and refocusing pulse
flip angles of 180 degrees, 160 degrees and 140 degrees. The code was:

.. code-block::

import matplotlib.pyplot as plt
import numpy as np

from t2stimulate.simulate import stimulate

# Set a couple of parameters
num_echoes = 32
tau = 5
T1 = 1000

te = 2*tau*np.arange(1, num_echoes+1)

curve_140 = stimulate(alpha=140 / 180 * np.pi, num_echoes=num_echoes, T1=450, T2=80, tau=tau)
curve_160 = stimulate(alpha=160 / 180 * np.pi, num_echoes=num_echoes, T1=450, T2=80, tau=tau)
curve_180 = stimulate(alpha=180 / 180 * np.pi, num_echoes=num_echoes, T1=450, T2=80, tau=tau)

plt.figure(1)
plt.clf()

plt.plot(te, curve_180, 'bo-')
plt.plot(te, curve_160, 'gd-')
plt.plot(te, curve_140, 'rx-')
plt.xlabel('TE (ms)')
plt.ylabel('Signal (arb)')
plt.grid('on')

plt.legend(['B1=180°', 'B1=160°', 'B1=140°'])

plt.axes((0.6, 0.3, 0.25, 0.3))

plt.plot(te, curve_180, 'bo-')
plt.plot(te, curve_160, 'gd-')
plt.plot(te, curve_140, 'rx-')
plt.xlabel('TE (ms)')
plt.ylabel('Signal (arb)')
plt.grid('on')
plt.xlim((200,250))
plt.ylim((0.03, 0.1))

plt.show()

And the resulting plot:

.. image:: https://github.com/brechmos/t2stimulate/blob/master/images/ex1.png?raw=true
:alt: Example image
:align: center

Features
--------

* TODO

Credits
-------

This package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.

.. _Cookiecutter: https://github.com/audreyr/cookiecutter
.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage