-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmridemo_t2w_spin_echo.m
75 lines (40 loc) · 1.2 KB
/
mridemo_t2w_spin_echo.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
function mridemo_t2_spin_echo(do_export_gif)
if (nargin < 1), do_export_gif = 0; end
% Define timline
T_sim = 0.2;
my_timeline = timeline(T_sim);
% Define pulse sequence
rfs = {...
rf('y', 90, 0e-3, 10e-3), ...
rf('x', 180, 80e-3 - 10e-3, 20e-3)};
acqs = {acq( 150e-3 - 10e-3 - 4e-3 , 20e-3) };
grads = {};
my_pulse_seq = pulse_sequence(rfs, grads, acqs, my_timeline);
% Setup spin system and run the simulation!
t1_list = [inf inf];
t2_list = [0.4 0.15];
m0_list = [1 1];
n_arrow = 7;
b0_fun = @(n) linspace(-1, 1, n)';
% Setup plot functions
l_str = {'Long T2', 'Short T2'};
my_plot_engine = mrisim_plot_engine(l_str);
my_plot_engine.do_export_gif = do_export_gif;
for c = 1:2
% Set up and init spin system
my_spin_system = spin_system(...
m0_list(c), ...
t1_list(c), ...
t2_list(c), ...
b0_fun, ...
n_arrow);
% Set the identity of the system to control plotting
my_spin_system.c_system = c;
% Setup the simulator
my_mri_sim = mrisim(...
my_pulse_seq, ...
my_spin_system);
my_mri_sim.do_stop_b0_rotation_during_rf = 1;
% Run simulation
my_mri_sim.simulate(my_plot_engine);
end