pulseq-systems 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulseq_systems-0.1.0/LICENSE +21 -0
- pulseq_systems-0.1.0/PKG-INFO +9 -0
- pulseq_systems-0.1.0/README.md +0 -0
- pulseq_systems-0.1.0/pyproject.toml +24 -0
- pulseq_systems-0.1.0/setup.cfg +4 -0
- pulseq_systems-0.1.0/src/pulseq_systems/__init__.py +6 -0
- pulseq_systems-0.1.0/src/pulseq_systems/get_systems.py +95 -0
- pulseq_systems-0.1.0/src/pulseq_systems/json/MRSystems.json +594 -0
- pulseq_systems-0.1.0/src/pulseq_systems/json/__init__.py +0 -0
- pulseq_systems-0.1.0/src/pulseq_systems.egg-info/PKG-INFO +9 -0
- pulseq_systems-0.1.0/src/pulseq_systems.egg-info/SOURCES.txt +12 -0
- pulseq_systems-0.1.0/src/pulseq_systems.egg-info/dependency_links.txt +1 -0
- pulseq_systems-0.1.0/src/pulseq_systems.egg-info/requires.txt +3 -0
- pulseq_systems-0.1.0/src/pulseq_systems.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2019-2025 Francesco Santini
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pulseq-systems
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: MR system specifications for PyPulseq
|
|
5
|
+
Requires-Python: >=3.7
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: importlib-resources>=5.0; python_version < "3.9"
|
|
9
|
+
Dynamic: license-file
|
|
File without changes
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "pulseq-systems"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "MR system specifications for PyPulseq"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.7"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"importlib-resources>=5.0; python_version<'3.9'"
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[tool.setuptools]
|
|
16
|
+
package-dir = {"" = "src"}
|
|
17
|
+
include-package-data = true
|
|
18
|
+
|
|
19
|
+
[tool.setuptools.packages.find]
|
|
20
|
+
where = ["src"]
|
|
21
|
+
|
|
22
|
+
[tool.setuptools.package-data]
|
|
23
|
+
pulseq_systems = ["json/*.json"]
|
|
24
|
+
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"""Utilities to access MR system specifications bundled with the package.
|
|
2
|
+
|
|
3
|
+
This module loads MRSystems.json (packaged under pulseq_systems/json) at import
|
|
4
|
+
time and provides helpers to query manufacturers, models, gradient
|
|
5
|
+
configurations and basic pulseq specifications.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
import json
|
|
9
|
+
import sys
|
|
10
|
+
|
|
11
|
+
if sys.version_info >= (3, 9):
|
|
12
|
+
from importlib.resources import files
|
|
13
|
+
else:
|
|
14
|
+
from importlib_resources import files
|
|
15
|
+
|
|
16
|
+
def _load_mr_systems():
|
|
17
|
+
"""Load MR systems data from the bundled JSON file.
|
|
18
|
+
|
|
19
|
+
Returns:
|
|
20
|
+
dict: Dictionary containing MR system configurations
|
|
21
|
+
"""
|
|
22
|
+
package_files = files('pulseq_systems')
|
|
23
|
+
json_file = package_files / 'json' / 'MRSystems.json'
|
|
24
|
+
|
|
25
|
+
with json_file.open('r') as f:
|
|
26
|
+
return json.load(f)
|
|
27
|
+
|
|
28
|
+
_systems = _load_mr_systems()
|
|
29
|
+
_metadata = _systems['_metadata']
|
|
30
|
+
del _systems['_metadata']
|
|
31
|
+
|
|
32
|
+
def list_manufacturers() -> list:
|
|
33
|
+
"""List all available MR system manufacturers.
|
|
34
|
+
|
|
35
|
+
Returns:
|
|
36
|
+
list: Manufacturer names present in the systems data.
|
|
37
|
+
"""
|
|
38
|
+
return list(_systems.keys())
|
|
39
|
+
|
|
40
|
+
def list_models(manufacturer: str) -> list:
|
|
41
|
+
"""List all available models for a given manufacturer.
|
|
42
|
+
|
|
43
|
+
Args:
|
|
44
|
+
manufacturer (str): Manufacturer name.
|
|
45
|
+
|
|
46
|
+
Returns:
|
|
47
|
+
list: Model names for the given manufacturer.
|
|
48
|
+
"""
|
|
49
|
+
return list(_systems[manufacturer].keys())
|
|
50
|
+
|
|
51
|
+
def list_gradients(manufacturer: str, model: str) -> list:
|
|
52
|
+
"""List gradient configurations available for a specific model.
|
|
53
|
+
|
|
54
|
+
Args:
|
|
55
|
+
manufacturer (str): Manufacturer name.
|
|
56
|
+
model (str): Model name.
|
|
57
|
+
|
|
58
|
+
Returns:
|
|
59
|
+
list: Gradient configuration names for the given model.
|
|
60
|
+
"""
|
|
61
|
+
return list(_systems[manufacturer][model]['gradient_configurations'].keys())
|
|
62
|
+
|
|
63
|
+
def get_pulseq_specs(manufacturer: str, model: str, gradient: str = None) -> dict:
|
|
64
|
+
"""Retrieve pulseq specifications for the specified system.
|
|
65
|
+
|
|
66
|
+
If `gradient` is None the first available gradient configuration is used.
|
|
67
|
+
|
|
68
|
+
Args:
|
|
69
|
+
manufacturer (str): Manufacturer name.
|
|
70
|
+
model (str): Model name.
|
|
71
|
+
gradient (str, optional): Gradient configuration name. Defaults to None.
|
|
72
|
+
|
|
73
|
+
Returns:
|
|
74
|
+
dict: Dictionary with keys 'grad_unit', 'max_grad', 'max_slew', and 'B0'.
|
|
75
|
+
"""
|
|
76
|
+
model_spec = _systems[manufacturer][model]['gradient_configurations']
|
|
77
|
+
if not gradient:
|
|
78
|
+
# select the first available gradient name in a safe, iterator-based way
|
|
79
|
+
gradient = next(iter(model_spec))
|
|
80
|
+
return {
|
|
81
|
+
'grad_unit': 'mT/m',
|
|
82
|
+
'max_grad': float(model_spec[gradient]['max_gradient_strength_mT_per_m']),
|
|
83
|
+
'slew_unit': 'T/m/s',
|
|
84
|
+
'max_slew': float(model_spec[gradient]['max_slew_rate_T_per_m_per_s']),
|
|
85
|
+
'B0': float(_systems[manufacturer][model]['B0_field_strength_T'])
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
def get_metadata():
|
|
89
|
+
"""Get the metadata of the system list
|
|
90
|
+
|
|
91
|
+
Returns:
|
|
92
|
+
dictionary: Metadata dictionary
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
return _metadata
|
|
@@ -0,0 +1,594 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_metadata": {
|
|
3
|
+
"description": "MRI system gradient and field specifications for the four major human MRI manufacturers",
|
|
4
|
+
"date_compiled": "2026-02-14",
|
|
5
|
+
"units": {
|
|
6
|
+
"B0_field_strength": "T",
|
|
7
|
+
"max_gradient_strength": "mT/m (per axis)",
|
|
8
|
+
"max_slew_rate": "T/m/s (per axis)"
|
|
9
|
+
},
|
|
10
|
+
"notes": [
|
|
11
|
+
"All gradient specs are per-axis values unless otherwise noted.",
|
|
12
|
+
"Many systems ship with multiple gradient tier options; where applicable, all known configurations are listed.",
|
|
13
|
+
"Sources are from manufacturer product pages, datasheets, press releases, and verified third-party listings.",
|
|
14
|
+
"For dual-mode gradients (e.g. Philips Quasar Dual), max amplitude and max slew rate may not be achievable simultaneously."
|
|
15
|
+
]
|
|
16
|
+
},
|
|
17
|
+
"Siemens Healthineers": {
|
|
18
|
+
"MAGNETOM Terra X": {
|
|
19
|
+
"category": "newest_7T",
|
|
20
|
+
"B0_field_strength_T": 7.0,
|
|
21
|
+
"bore_diameter_cm": 60,
|
|
22
|
+
"gradient_configurations": {
|
|
23
|
+
"standard": {
|
|
24
|
+
"max_gradient_strength_mT_per_m": 135,
|
|
25
|
+
"max_slew_rate_T_per_m_per_s": 250
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"year_introduced": 2023,
|
|
29
|
+
"notes": "Next-generation 7T with Ultra IQ Technology and dynamic 8-channel parallel transmit. Successor to MAGNETOM Terra.",
|
|
30
|
+
"source_urls": [
|
|
31
|
+
"https://www.siemens-healthineers.com/magnetic-resonance-imaging/7t-mri-scanner/magnetom-terra-x",
|
|
32
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/7t-mri-scanner/magnetom-terra-x"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
"MAGNETOM Terra": {
|
|
36
|
+
"category": "first_clinical_7T",
|
|
37
|
+
"B0_field_strength_T": 7.0,
|
|
38
|
+
"bore_diameter_cm": 60,
|
|
39
|
+
"gradient_configurations": {
|
|
40
|
+
"XR Gradients": {
|
|
41
|
+
"max_gradient_strength_mT_per_m": 80,
|
|
42
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"year_introduced": 2017,
|
|
46
|
+
"notes": "First 7T MRI with FDA clearance for clinical diagnostic imaging. Dual Mode for clinical/research switching. Some sites report AC84 head gradient at 80 mT/m / 350 T/m/s.",
|
|
47
|
+
"source_urls": [
|
|
48
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/7t-mri-scanner/magnetom-terra",
|
|
49
|
+
"https://bic.beckman.illinois.edu/magnetic-resonance-imaging/7t"
|
|
50
|
+
]
|
|
51
|
+
},
|
|
52
|
+
"MAGNETOM Cima X": {
|
|
53
|
+
"category": "newest_flagship_3T",
|
|
54
|
+
"B0_field_strength_T": 3.0,
|
|
55
|
+
"bore_diameter_cm": 60,
|
|
56
|
+
"gradient_configurations": {
|
|
57
|
+
"Gemini Gradients": {
|
|
58
|
+
"max_gradient_strength_mT_per_m": 200,
|
|
59
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"year_introduced": 2024,
|
|
63
|
+
"FDA_clearance": "2024-01-04",
|
|
64
|
+
"source_urls": [
|
|
65
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/3t-mri-scanner/magnetom-cima-x",
|
|
66
|
+
"https://appliedradiology.com/articles/us-fda-clears-siemens-magnetom-cima-x-3t-mri-system"
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
"MAGNETOM Vida": {
|
|
70
|
+
"category": "current_generation_clinical_flagship_3T",
|
|
71
|
+
"B0_field_strength_T": 3.0,
|
|
72
|
+
"bore_diameter_cm": 70,
|
|
73
|
+
"gradient_configurations": {
|
|
74
|
+
"XT Gradients": {
|
|
75
|
+
"max_gradient_strength_mT_per_m": 60,
|
|
76
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
77
|
+
},
|
|
78
|
+
"XQ Gradients": {
|
|
79
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
80
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
81
|
+
}
|
|
82
|
+
},
|
|
83
|
+
"year_introduced": 2017,
|
|
84
|
+
"source_urls": [
|
|
85
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/3t-mri-scanner/magnetom-vida",
|
|
86
|
+
"https://www.auntminnie.com/clinical-news/mri/article/15617005/siemens-to-launch-new-3t-vida-mri-scanner-at-ecr-2017"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
"MAGNETOM Lumina": {
|
|
90
|
+
"category": "current_generation_entry_3T",
|
|
91
|
+
"B0_field_strength_T": 3.0,
|
|
92
|
+
"bore_diameter_cm": 70,
|
|
93
|
+
"gradient_configurations": {
|
|
94
|
+
"XJ Gradients": {
|
|
95
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
96
|
+
"max_slew_rate_T_per_m_per_s": 125
|
|
97
|
+
},
|
|
98
|
+
"XQ Gradients": {
|
|
99
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
100
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"year_introduced": 2018,
|
|
104
|
+
"source_urls": [
|
|
105
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/3t-mri-scanner/magnetom-lumina",
|
|
106
|
+
"https://www.meridianleasing.com/resources/blog/what-to-know-about-siemens-mri"
|
|
107
|
+
]
|
|
108
|
+
},
|
|
109
|
+
"MAGNETOM Prisma": {
|
|
110
|
+
"category": "research_3T",
|
|
111
|
+
"B0_field_strength_T": 3.0,
|
|
112
|
+
"bore_diameter_cm": 60,
|
|
113
|
+
"gradient_configurations": {
|
|
114
|
+
"XR 80 200 Gradients": {
|
|
115
|
+
"max_gradient_strength_mT_per_m": 80,
|
|
116
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
117
|
+
}
|
|
118
|
+
},
|
|
119
|
+
"year_introduced": 2013,
|
|
120
|
+
"notes": "Research-focused system widely used for Human Connectome Project-style protocols.",
|
|
121
|
+
"source_urls": [
|
|
122
|
+
"https://www.siemens-healthineers.com/magnetic-resonance-imaging/3t-mri-scanner/magnetom-prisma",
|
|
123
|
+
"https://health.ucdavis.edu/irc/content/facilities/siemenstimtrio.html"
|
|
124
|
+
]
|
|
125
|
+
},
|
|
126
|
+
"MAGNETOM Skyra": {
|
|
127
|
+
"category": "widely_installed_3T",
|
|
128
|
+
"B0_field_strength_T": 3.0,
|
|
129
|
+
"bore_diameter_cm": 70,
|
|
130
|
+
"gradient_configurations": {
|
|
131
|
+
"XQ Gradients": {
|
|
132
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
133
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
"year_introduced": 2012,
|
|
137
|
+
"source_urls": [
|
|
138
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/3t-mri-scanner/magnetom-skyra",
|
|
139
|
+
"https://clinicalimagingsystems.com/product/siemens-magnetom-skyra-3t-mri-scanner/"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
"MAGNETOM Sola": {
|
|
143
|
+
"category": "current_generation_premium_1.5T",
|
|
144
|
+
"B0_field_strength_T": 1.5,
|
|
145
|
+
"bore_diameter_cm": 70,
|
|
146
|
+
"gradient_configurations": {
|
|
147
|
+
"XJ Gradients standard": {
|
|
148
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
149
|
+
"max_slew_rate_T_per_m_per_s": 125
|
|
150
|
+
},
|
|
151
|
+
"XQ Gradients optional": {
|
|
152
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
153
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"year_introduced": 2018,
|
|
157
|
+
"source_urls": [
|
|
158
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/0-35-to-1-5t-mri-scanner/magnetom-sola",
|
|
159
|
+
"https://www.siemens-healthineers.com/magnetic-resonance-imaging/0-35-to-1-5t-mri-scanner/magnetom-sola-cardiovascular-edition"
|
|
160
|
+
]
|
|
161
|
+
},
|
|
162
|
+
"MAGNETOM Aera": {
|
|
163
|
+
"category": "most_widely_installed_1.5T",
|
|
164
|
+
"B0_field_strength_T": 1.5,
|
|
165
|
+
"bore_diameter_cm": 70,
|
|
166
|
+
"gradient_configurations": {
|
|
167
|
+
"XJ Gradients standard": {
|
|
168
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
169
|
+
"max_slew_rate_T_per_m_per_s": 125
|
|
170
|
+
},
|
|
171
|
+
"XQ Gradients optional": {
|
|
172
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
173
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"year_introduced": 2012,
|
|
177
|
+
"source_urls": [
|
|
178
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/0-35-to-1-5t-mri-scanner/magnetom-aera"
|
|
179
|
+
]
|
|
180
|
+
},
|
|
181
|
+
"MAGNETOM Altea": {
|
|
182
|
+
"category": "current_generation_entry_1.5T",
|
|
183
|
+
"B0_field_strength_T": 1.5,
|
|
184
|
+
"bore_diameter_cm": 70,
|
|
185
|
+
"gradient_configurations": {
|
|
186
|
+
"XJ Gradients": {
|
|
187
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
188
|
+
"max_slew_rate_T_per_m_per_s": 125
|
|
189
|
+
},
|
|
190
|
+
"XQ Gradients optional": {
|
|
191
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
192
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
193
|
+
}
|
|
194
|
+
},
|
|
195
|
+
"year_introduced": 2018,
|
|
196
|
+
"source_urls": [
|
|
197
|
+
"https://www.siemens-healthineers.com/en-us/magnetic-resonance-imaging/0-35-to-1-5t-mri-scanner/magnetom-altea"
|
|
198
|
+
]
|
|
199
|
+
},
|
|
200
|
+
"MAGNETOM Avanto Fit": {
|
|
201
|
+
"category": "legacy_widely_installed_1.5T",
|
|
202
|
+
"B0_field_strength_T": 1.5,
|
|
203
|
+
"bore_diameter_cm": 60,
|
|
204
|
+
"gradient_configurations": {
|
|
205
|
+
"SQ Gradients": {
|
|
206
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
207
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"year_introduced": 2014,
|
|
211
|
+
"notes": "Updated version of the original MAGNETOM Avanto (2003). 60 cm bore.",
|
|
212
|
+
"source_urls": [
|
|
213
|
+
"https://wiki.jlab.org/klproject/images/c/c8/MAGNETOM_Avanto-fit_data_sheet_E11C-min.pdf"
|
|
214
|
+
]
|
|
215
|
+
},
|
|
216
|
+
"MAGNETOM Free Max": {
|
|
217
|
+
"category": "low_field_0.55T",
|
|
218
|
+
"B0_field_strength_T": 0.55,
|
|
219
|
+
"bore_diameter_cm": 80,
|
|
220
|
+
"gradient_configurations": {
|
|
221
|
+
"standard": {
|
|
222
|
+
"max_gradient_strength_mT_per_m": 22,
|
|
223
|
+
"max_slew_rate_T_per_m_per_s": 55
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
"year_introduced": 2021,
|
|
227
|
+
"notes": "First and only 80 cm bore MRI. Helium-free DryCool magnet (no liquid helium). High-V MRI concept combining 0.55T with Deep Resolve AI reconstruction. Weight only 3.2 tonnes.",
|
|
228
|
+
"source_urls": [
|
|
229
|
+
"https://www.siemens-healthineers.com/magnetic-resonance-imaging/high-v-mri/magnetom-free-max",
|
|
230
|
+
"https://www.wotol.com/product/siemens-magnetom-free-max/2660142"
|
|
231
|
+
]
|
|
232
|
+
},
|
|
233
|
+
"MAGNETOM Free Star": {
|
|
234
|
+
"category": "low_field_0.55T_budget",
|
|
235
|
+
"B0_field_strength_T": 0.55,
|
|
236
|
+
"bore_diameter_cm": 80,
|
|
237
|
+
"gradient_configurations": {
|
|
238
|
+
"standard": {
|
|
239
|
+
"max_gradient_strength_mT_per_m": 22,
|
|
240
|
+
"max_slew_rate_T_per_m_per_s": 55
|
|
241
|
+
}
|
|
242
|
+
},
|
|
243
|
+
"year_introduced": 2023,
|
|
244
|
+
"notes": "Budget variant of Free.Max with same magnet/gradient hardware but reduced software/coil configuration.",
|
|
245
|
+
"source_urls": [
|
|
246
|
+
"https://www.siemens-healthineers.com/magnetic-resonance-imaging/high-v-mri/magnetom-free-star"
|
|
247
|
+
]
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"GE HealthCare": {
|
|
251
|
+
"SIGNA Bolt": {
|
|
252
|
+
"category": "newest_flagship_3T",
|
|
253
|
+
"B0_field_strength_T": 3.0,
|
|
254
|
+
"bore_diameter_cm": 70,
|
|
255
|
+
"gradient_configurations": {
|
|
256
|
+
"SuperXG Gradients": {
|
|
257
|
+
"max_gradient_strength_mT_per_m": 80,
|
|
258
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
259
|
+
}
|
|
260
|
+
},
|
|
261
|
+
"year_introduced": 2025,
|
|
262
|
+
"FDA_clearance": "pending",
|
|
263
|
+
"notes": "Announced at RSNA 2025. 510(k) pending.",
|
|
264
|
+
"source_urls": [
|
|
265
|
+
"https://www.gehealthcare.com/products/magnetic-resonance-imaging/3t-mri-scanners/signa-bolt-wide-bore-mri-scanner"
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
"SIGNA Premier": {
|
|
269
|
+
"category": "current_generation_premium_3T",
|
|
270
|
+
"B0_field_strength_T": 3.0,
|
|
271
|
+
"bore_diameter_cm": 70,
|
|
272
|
+
"gradient_configurations": {
|
|
273
|
+
"SuperG Gradients": {
|
|
274
|
+
"max_gradient_strength_mT_per_m": 80,
|
|
275
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"year_introduced": 2017,
|
|
279
|
+
"source_urls": [
|
|
280
|
+
"https://www.gehealthcare.com/products/magnetic-resonance-imaging/signa-evo/premier-3-0t",
|
|
281
|
+
"https://nyspi.org/sites/default/files/inline-files/SIGNA%20Premier_Spec%20Sheet_FDA%20Cleared_Final%20071717.pdf"
|
|
282
|
+
]
|
|
283
|
+
},
|
|
284
|
+
"SIGNA Hero": {
|
|
285
|
+
"category": "current_generation_mid_range_3T",
|
|
286
|
+
"B0_field_strength_T": 3.0,
|
|
287
|
+
"bore_diameter_cm": 70,
|
|
288
|
+
"gradient_configurations": {
|
|
289
|
+
"standard": {
|
|
290
|
+
"max_gradient_strength_mT_per_m": 44,
|
|
291
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
"year_introduced": 2022,
|
|
295
|
+
"notes": "Designed with 70% less helium than conventional systems.",
|
|
296
|
+
"source_urls": [
|
|
297
|
+
"https://www.auntminnie.com/clinical-news/molecular-imaging/nuclear-medicine/article/15629905/ge-targets-radiology-efficiency-with-new-product-launches",
|
|
298
|
+
"https://www.wotol.com/product/ge-signa-hero-3-0t-mri/2660151"
|
|
299
|
+
]
|
|
300
|
+
},
|
|
301
|
+
"SIGNA MAGNUS": {
|
|
302
|
+
"category": "newest_head_only_3T",
|
|
303
|
+
"B0_field_strength_T": 3.0,
|
|
304
|
+
"bore_diameter_cm": null,
|
|
305
|
+
"gradient_configurations": {
|
|
306
|
+
"HyperG head gradient": {
|
|
307
|
+
"max_gradient_strength_mT_per_m": 300,
|
|
308
|
+
"max_slew_rate_T_per_m_per_s": 750
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"year_introduced": 2025,
|
|
312
|
+
"notes": "Head-only MRI with asymmetrical gradient coil. NOT a whole-body system. FDA cleared Dec 2025.",
|
|
313
|
+
"source_urls": [
|
|
314
|
+
"https://www.diagnosticimaging.com/view/3t-head-only-mri-system-gets-fda-clearance",
|
|
315
|
+
"https://xtalks.com/how-ge-healthcares-signa-magnus-3-0t-transforms-neuroimaging-3963/"
|
|
316
|
+
]
|
|
317
|
+
},
|
|
318
|
+
"SIGNA Artist": {
|
|
319
|
+
"category": "most_widely_installed_1.5T",
|
|
320
|
+
"B0_field_strength_T": 1.5,
|
|
321
|
+
"bore_diameter_cm": 70,
|
|
322
|
+
"gradient_configurations": {
|
|
323
|
+
"XRM Gradients": {
|
|
324
|
+
"max_gradient_strength_mT_per_m": 44,
|
|
325
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
"year_introduced": 2016,
|
|
329
|
+
"notes": "Also available as Artist Evo upgrade from legacy 60 cm GE systems.",
|
|
330
|
+
"source_urls": [
|
|
331
|
+
"https://landing1.gehealthcare.com/rs/005-SHS-767/images/Artist_Datasheet.pdf",
|
|
332
|
+
"https://www.gehealthcare.com/products/magnetic-resonance-imaging/1-5t-mri-scanners/signa-artist-wide-bore-mri-scanner"
|
|
333
|
+
]
|
|
334
|
+
},
|
|
335
|
+
"SIGNA Explorer": {
|
|
336
|
+
"category": "widely_installed_entry_1.5T",
|
|
337
|
+
"B0_field_strength_T": 1.5,
|
|
338
|
+
"bore_diameter_cm": 60,
|
|
339
|
+
"gradient_configurations": {
|
|
340
|
+
"standard": {
|
|
341
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
342
|
+
"max_slew_rate_T_per_m_per_s": 120
|
|
343
|
+
}
|
|
344
|
+
},
|
|
345
|
+
"year_introduced": 2014,
|
|
346
|
+
"source_urls": [
|
|
347
|
+
"https://www.gehealthcare.com/products/magnetic-resonance-imaging/1-5t-mri-scanners/signa-explorer-mri-scanner"
|
|
348
|
+
]
|
|
349
|
+
},
|
|
350
|
+
"Discovery MR750w": {
|
|
351
|
+
"category": "legacy_widely_installed_3T",
|
|
352
|
+
"B0_field_strength_T": 3.0,
|
|
353
|
+
"bore_diameter_cm": 70,
|
|
354
|
+
"gradient_configurations": {
|
|
355
|
+
"standard": {
|
|
356
|
+
"max_gradient_strength_mT_per_m": 44,
|
|
357
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
"year_introduced": 2012,
|
|
361
|
+
"source_urls": [
|
|
362
|
+
"https://www.medicalimagingsource.com/ge-mri-scanner-models"
|
|
363
|
+
]
|
|
364
|
+
},
|
|
365
|
+
"SIGNA MR750": {
|
|
366
|
+
"category": "legacy_research_3T",
|
|
367
|
+
"B0_field_strength_T": 3.0,
|
|
368
|
+
"bore_diameter_cm": 60,
|
|
369
|
+
"gradient_configurations": {
|
|
370
|
+
"eXtreme Gradients": {
|
|
371
|
+
"max_gradient_strength_mT_per_m": 50,
|
|
372
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
"year_introduced": 2009,
|
|
376
|
+
"source_urls": [
|
|
377
|
+
"https://www.diagnosticimaging.com/view/ges-signa-mr750-brings-new-power-simplicity-3t"
|
|
378
|
+
]
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"Philips Healthcare": {
|
|
382
|
+
"Achieva 7T": {
|
|
383
|
+
"category": "research_7T",
|
|
384
|
+
"B0_field_strength_T": 7.0,
|
|
385
|
+
"bore_diameter_cm": 60,
|
|
386
|
+
"gradient_configurations": {
|
|
387
|
+
"dual mode high slew": {
|
|
388
|
+
"max_gradient_strength_mT_per_m": 40,
|
|
389
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
390
|
+
},
|
|
391
|
+
"dual mode high amplitude": {
|
|
392
|
+
"max_gradient_strength_mT_per_m": 60,
|
|
393
|
+
"max_slew_rate_T_per_m_per_s": 100
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"year_introduced": 2007,
|
|
397
|
+
"notes": "Research-only 7T platform. Gradient specs vary by installation and upgrade level; older units had 33 mT/m / 166 T/m/s. Dual-mode values shown are for upgraded configurations.",
|
|
398
|
+
"source_urls": [
|
|
399
|
+
"https://www.lbic.lu.se/explore-our-infrastructure/national-7t-facility/equipment",
|
|
400
|
+
"https://www.documents.philips.com/doclib/enc/fetch/2000/4504/577242/577256/588821/5050628/5313460/6172193/07_Webb_Vol_53.pdf"
|
|
401
|
+
]
|
|
402
|
+
},
|
|
403
|
+
"MR 7700": {
|
|
404
|
+
"category": "newest_flagship_3T",
|
|
405
|
+
"B0_field_strength_T": 3.0,
|
|
406
|
+
"bore_diameter_cm": 70,
|
|
407
|
+
"gradient_configurations": {
|
|
408
|
+
"XP Gradients": {
|
|
409
|
+
"max_gradient_strength_mT_per_m": 65,
|
|
410
|
+
"max_slew_rate_T_per_m_per_s": 220
|
|
411
|
+
}
|
|
412
|
+
},
|
|
413
|
+
"year_introduced": 2022,
|
|
414
|
+
"notes": "Supports multi-nuclei imaging (23Na, 31P, 13C, 19F, 129Xe). Highest simultaneous slew rate on a clinical whole-body system.",
|
|
415
|
+
"source_urls": [
|
|
416
|
+
"https://www.usa.philips.com/healthcare/product/HCNMRF429/mr-7700"
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
"Ingenia Elition 3T X": {
|
|
420
|
+
"category": "current_generation_premium_3T",
|
|
421
|
+
"B0_field_strength_T": 3.0,
|
|
422
|
+
"bore_diameter_cm": 70,
|
|
423
|
+
"gradient_configurations": {
|
|
424
|
+
"Vega HP Gradients": {
|
|
425
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
426
|
+
"max_slew_rate_T_per_m_per_s": 220
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
"year_introduced": 2018,
|
|
430
|
+
"source_urls": [
|
|
431
|
+
"https://www.usa.philips.com/healthcare/product/HC782118/smartpath-to-ingenia-elition-30t-x",
|
|
432
|
+
"https://healthtechghana.com/product/philips-ingenia-elition-3-0t-x/"
|
|
433
|
+
]
|
|
434
|
+
},
|
|
435
|
+
"Ingenia 3T": {
|
|
436
|
+
"category": "widely_installed_3T",
|
|
437
|
+
"B0_field_strength_T": 3.0,
|
|
438
|
+
"bore_diameter_cm": 70,
|
|
439
|
+
"gradient_configurations": {
|
|
440
|
+
"dual mode high slew": {
|
|
441
|
+
"max_gradient_strength_mT_per_m": 40,
|
|
442
|
+
"max_slew_rate_T_per_m_per_s": 200,
|
|
443
|
+
"notes": "High slew rate mode"
|
|
444
|
+
},
|
|
445
|
+
"dual mode high amplitude": {
|
|
446
|
+
"max_gradient_strength_mT_per_m": 80,
|
|
447
|
+
"max_slew_rate_T_per_m_per_s": 100,
|
|
448
|
+
"notes": "High amplitude mode"
|
|
449
|
+
}
|
|
450
|
+
},
|
|
451
|
+
"year_introduced": 2012,
|
|
452
|
+
"source_urls": [
|
|
453
|
+
"https://www.cincinnatichildrens.org/research/shared-facilities/imaging-research/equipment"
|
|
454
|
+
]
|
|
455
|
+
},
|
|
456
|
+
"Ingenia Ambition 1 5T X": {
|
|
457
|
+
"category": "current_generation_helium_free_1.5T",
|
|
458
|
+
"B0_field_strength_T": 1.5,
|
|
459
|
+
"bore_diameter_cm": 70,
|
|
460
|
+
"gradient_configurations": {
|
|
461
|
+
"Omega HP Gradients": {
|
|
462
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
463
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
464
|
+
}
|
|
465
|
+
},
|
|
466
|
+
"year_introduced": 2019,
|
|
467
|
+
"notes": "BlueSeal helium-free magnet (~7 liters sealed helium). Over 2000 installations as of RSNA 2025.",
|
|
468
|
+
"source_urls": [
|
|
469
|
+
"https://www.usa.philips.com/healthcare/product/HC781356/ingenia-ambition-excel-in-your-daily-mr-services-helium-free",
|
|
470
|
+
"https://www.mediscala.com/item/ingenia-ambition-1-5t-x/"
|
|
471
|
+
]
|
|
472
|
+
},
|
|
473
|
+
"Ingenia 1 5T": {
|
|
474
|
+
"category": "most_widely_installed_1.5T",
|
|
475
|
+
"B0_field_strength_T": 1.5,
|
|
476
|
+
"bore_diameter_cm": 70,
|
|
477
|
+
"gradient_configurations": {
|
|
478
|
+
"Omega HP Gradients": {
|
|
479
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
480
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
481
|
+
},
|
|
482
|
+
"Omega standard Gradients": {
|
|
483
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
484
|
+
"max_slew_rate_T_per_m_per_s": 120
|
|
485
|
+
}
|
|
486
|
+
},
|
|
487
|
+
"year_introduced": 2010,
|
|
488
|
+
"notes": "World's first fully digital broadband MRI. Multiple variants: Ingenia, Ingenia CX, Ingenia Evolution.",
|
|
489
|
+
"source_urls": [
|
|
490
|
+
"https://www.usa.philips.com/healthcare/product/HC781315/ingenia-15t-evolution"
|
|
491
|
+
]
|
|
492
|
+
},
|
|
493
|
+
"Achieva 1 5T": {
|
|
494
|
+
"category": "legacy_widely_installed_1.5T",
|
|
495
|
+
"B0_field_strength_T": 1.5,
|
|
496
|
+
"bore_diameter_cm": 60,
|
|
497
|
+
"gradient_configurations": {
|
|
498
|
+
"standard": {
|
|
499
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
500
|
+
"max_slew_rate_T_per_m_per_s": 180
|
|
501
|
+
},
|
|
502
|
+
"Quasar Dual maximum amplitude mode": {
|
|
503
|
+
"max_gradient_strength_mT_per_m": 66,
|
|
504
|
+
"max_slew_rate_T_per_m_per_s": 180,
|
|
505
|
+
"notes": "Maximum values across modes; max amplitude and max slew rate may not be simultaneous."
|
|
506
|
+
}
|
|
507
|
+
},
|
|
508
|
+
"year_introduced": 2004,
|
|
509
|
+
"source_urls": [
|
|
510
|
+
"https://info.atlantisworldwide.com/blog/comparing-philips-ingenia-1.5t-vs-philips-achieva-1.5t-mri",
|
|
511
|
+
"https://medimagesys.com/catalog/972/"
|
|
512
|
+
]
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
"Canon Medical Systems": {
|
|
516
|
+
"Vantage Galan 3T Supreme Edition": {
|
|
517
|
+
"category": "newest_flagship_3T",
|
|
518
|
+
"B0_field_strength_T": 3.0,
|
|
519
|
+
"bore_diameter_cm": 71,
|
|
520
|
+
"gradient_configurations": {
|
|
521
|
+
"Saturn X Gradient": {
|
|
522
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
523
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
524
|
+
},
|
|
525
|
+
"standard": {
|
|
526
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
527
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
528
|
+
}
|
|
529
|
+
},
|
|
530
|
+
"year_introduced": 2024,
|
|
531
|
+
"notes": "First Canon MRI with all components manufactured in-house, including superconducting magnet.",
|
|
532
|
+
"source_urls": [
|
|
533
|
+
"https://us.medical.canon/products/magnetic-resonance/vantage-galan-3t-supreme/"
|
|
534
|
+
]
|
|
535
|
+
},
|
|
536
|
+
"Vantage Galan 3T": {
|
|
537
|
+
"category": "current_generation_3T",
|
|
538
|
+
"B0_field_strength_T": 3.0,
|
|
539
|
+
"bore_diameter_cm": 71,
|
|
540
|
+
"gradient_configurations": {
|
|
541
|
+
"Saturn Gradient": {
|
|
542
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
543
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
544
|
+
},
|
|
545
|
+
"standard": {
|
|
546
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
547
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
548
|
+
}
|
|
549
|
+
},
|
|
550
|
+
"year_introduced": 2019,
|
|
551
|
+
"source_urls": [
|
|
552
|
+
"https://us.medical.canon/products/magnetic-resonance/vantage-galan-3t-supreme/"
|
|
553
|
+
]
|
|
554
|
+
},
|
|
555
|
+
"Vantage Orian 1 5T": {
|
|
556
|
+
"category": "current_generation_premium_1.5T",
|
|
557
|
+
"B0_field_strength_T": 1.5,
|
|
558
|
+
"bore_diameter_cm": 71,
|
|
559
|
+
"gradient_configurations": {
|
|
560
|
+
"Saturn Gradient": {
|
|
561
|
+
"max_gradient_strength_mT_per_m": 45,
|
|
562
|
+
"max_slew_rate_T_per_m_per_s": 200
|
|
563
|
+
},
|
|
564
|
+
"standard": {
|
|
565
|
+
"max_gradient_strength_mT_per_m": 34,
|
|
566
|
+
"max_slew_rate_T_per_m_per_s": 155
|
|
567
|
+
}
|
|
568
|
+
},
|
|
569
|
+
"year_introduced": 2018,
|
|
570
|
+
"notes": "First Canon 1.5T with Saturn gradient technology (migrated from 3T). 71 cm bore, 1.4 m short magnet.",
|
|
571
|
+
"source_urls": [
|
|
572
|
+
"https://us.medical.canon/products/magnetic-resonance/vantage-orian-15t/",
|
|
573
|
+
"https://eu.medical.canon/News/PressRelease/Detail/34862-834"
|
|
574
|
+
]
|
|
575
|
+
},
|
|
576
|
+
"Vantage Elan 1 5T": {
|
|
577
|
+
"category": "entry_level_compact_1.5T",
|
|
578
|
+
"B0_field_strength_T": 1.5,
|
|
579
|
+
"bore_diameter_cm": 63,
|
|
580
|
+
"gradient_configurations": {
|
|
581
|
+
"standard": {
|
|
582
|
+
"max_gradient_strength_mT_per_m": 33,
|
|
583
|
+
"max_slew_rate_T_per_m_per_s": 125
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
"year_introduced": 2014,
|
|
587
|
+
"notes": "Compact budget system with 23 m2 minimum footprint. Widely installed globally.",
|
|
588
|
+
"source_urls": [
|
|
589
|
+
"https://us.medical.canon/products/magnetic-resonance/vantage-elan-15t/",
|
|
590
|
+
"https://www.tecmedafrica.com/products/vantage-elan-1-5t-mri-system/"
|
|
591
|
+
]
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pulseq-systems
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: MR system specifications for PyPulseq
|
|
5
|
+
Requires-Python: >=3.7
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: importlib-resources>=5.0; python_version < "3.9"
|
|
9
|
+
Dynamic: license-file
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/pulseq_systems/__init__.py
|
|
5
|
+
src/pulseq_systems/get_systems.py
|
|
6
|
+
src/pulseq_systems.egg-info/PKG-INFO
|
|
7
|
+
src/pulseq_systems.egg-info/SOURCES.txt
|
|
8
|
+
src/pulseq_systems.egg-info/dependency_links.txt
|
|
9
|
+
src/pulseq_systems.egg-info/requires.txt
|
|
10
|
+
src/pulseq_systems.egg-info/top_level.txt
|
|
11
|
+
src/pulseq_systems/json/MRSystems.json
|
|
12
|
+
src/pulseq_systems/json/__init__.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pulseq_systems
|