|
65 | 65 | % FLUX_LIMITER='CHARM' |
66 | 66 |
|
67 | 67 | M = importdata([data_dir,'soborot_charm_square_wave_16_devc.csv'],',',2); |
68 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
69 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-16"')); |
| 68 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 69 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-16')); |
70 | 70 | Y_charm_16 = M.data(end,col_start:col_end); |
71 | 71 |
|
72 | 72 | M = importdata([data_dir,'soborot_charm_square_wave_32_devc.csv'],',',2); |
73 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
74 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-32"')); |
| 73 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 74 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-32')); |
75 | 75 | Y_charm_32 = M.data(end,col_start:col_end); |
76 | 76 |
|
77 | 77 | M = importdata([data_dir,'soborot_charm_square_wave_64_devc.csv'],',',2); |
78 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
79 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-64"')); |
| 78 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 79 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-64')); |
80 | 80 | Y_charm_64 = M.data(end,col_start:col_end); |
81 | 81 |
|
82 | 82 | M = importdata([data_dir,'soborot_charm_square_wave_128_devc.csv'],',',2); |
83 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
84 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-128"')); |
| 83 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 84 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-128')); |
85 | 85 | Y_charm_128 = M.data(end,col_start:col_end); |
86 | 86 |
|
87 | 87 | figure |
|
118 | 118 | % FLUX_LIMITER='SUPERBEE' |
119 | 119 |
|
120 | 120 | M = importdata([data_dir,'soborot_superbee_square_wave_16_devc.csv'],',',2); |
121 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
122 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-16"')); |
| 121 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 122 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-16')); |
123 | 123 | Y_superbee_16 = M.data(end,col_start:col_end); |
124 | 124 |
|
125 | 125 | M = importdata([data_dir,'soborot_superbee_square_wave_32_devc.csv'],',',2); |
126 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
127 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-32"')); |
| 126 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 127 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-32')); |
128 | 128 | Y_superbee_32 = M.data(end,col_start:col_end); |
129 | 129 |
|
130 | 130 | M = importdata([data_dir,'soborot_superbee_square_wave_64_devc.csv'],',',2); |
131 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
132 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-64"')); |
| 131 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 132 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-64')); |
133 | 133 | Y_superbee_64 = M.data(end,col_start:col_end); |
134 | 134 |
|
135 | 135 | M = importdata([data_dir,'soborot_superbee_square_wave_128_devc.csv'],',',2); |
136 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
137 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-128"')); |
| 136 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 137 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-128')); |
138 | 138 | Y_superbee_128 = M.data(end,col_start:col_end); |
139 | 139 |
|
140 | 140 | M = importdata([data_dir,'soborot_superbee_square_wave_128_1mesh_devc.csv'],',',2); |
141 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
142 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-128"')); |
| 141 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 142 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-128')); |
143 | 143 | Y_superbee_128_1mesh = M.data(end,col_start:col_end); |
144 | 144 |
|
145 | 145 | figure |
|
176 | 176 | % FLUX_LIMITER='GODUNOV' |
177 | 177 |
|
178 | 178 | M = importdata([data_dir,'soborot_godunov_square_wave_16_devc.csv'],',',2); |
179 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
180 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-16"')); |
| 179 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 180 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-16')); |
181 | 181 | Y_godunov_16 = M.data(end,col_start:col_end); |
182 | 182 |
|
183 | 183 | M = importdata([data_dir,'soborot_godunov_square_wave_32_devc.csv'],',',2); |
184 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
185 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-32"')); |
| 184 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 185 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-32')); |
186 | 186 | Y_godunov_32 = M.data(end,col_start:col_end); |
187 | 187 |
|
188 | 188 | M = importdata([data_dir,'soborot_godunov_square_wave_64_devc.csv'],',',2); |
189 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
190 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-64"')); |
| 189 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 190 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-64')); |
191 | 191 | Y_godunov_64 = M.data(end,col_start:col_end); |
192 | 192 |
|
193 | 193 | M = importdata([data_dir,'soborot_godunov_square_wave_128_devc.csv'],',',2); |
194 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
195 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-128"')); |
| 194 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 195 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-128')); |
196 | 196 | Y_godunov_128 = M.data(end,col_start:col_end); |
197 | 197 |
|
198 | 198 | figure |
|
311 | 311 | % FLUX_LIMITER='CHARM' |
312 | 312 |
|
313 | 313 | M = importdata([data_dir,'soborot_charm_cos_wave_16_devc.csv'],',',2); |
314 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
315 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-16"')); |
| 314 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 315 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-16')); |
316 | 316 | Y_charm_16 = M.data(end,col_start:col_end); |
317 | 317 |
|
318 | 318 | M = importdata([data_dir,'soborot_charm_cos_wave_32_devc.csv'],',',2); |
319 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
320 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-32"')); |
| 319 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 320 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-32')); |
321 | 321 | Y_charm_32 = M.data(end,col_start:col_end); |
322 | 322 |
|
323 | 323 | M = importdata([data_dir,'soborot_charm_cos_wave_64_devc.csv'],',',2); |
324 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
325 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-64"')); |
| 324 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 325 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-64')); |
326 | 326 | Y_charm_64 = M.data(end,col_start:col_end); |
327 | 327 |
|
328 | 328 | M = importdata([data_dir,'soborot_charm_cos_wave_128_devc.csv'],',',2); |
329 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
330 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-128"')); |
| 329 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 330 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-128')); |
331 | 331 | Y_charm_128 = M.data(end,col_start:col_end); |
332 | 332 |
|
333 | 333 | figure |
|
367 | 367 | % FLUX_LIMITER='SUPERBEE' |
368 | 368 |
|
369 | 369 | M = importdata([data_dir,'soborot_superbee_cos_wave_16_devc.csv'],',',2); |
370 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
371 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-16"')); |
| 370 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 371 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-16')); |
372 | 372 | Y_superbee_16 = M.data(end,col_start:col_end); |
373 | 373 |
|
374 | 374 | M = importdata([data_dir,'soborot_superbee_cos_wave_32_devc.csv'],',',2); |
375 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
376 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-32"')); |
| 375 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 376 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-32')); |
377 | 377 | Y_superbee_32 = M.data(end,col_start:col_end); |
378 | 378 |
|
379 | 379 | M = importdata([data_dir,'soborot_superbee_cos_wave_64_devc.csv'],',',2); |
380 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
381 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-64"')); |
| 380 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 381 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-64')); |
382 | 382 | Y_superbee_64 = M.data(end,col_start:col_end); |
383 | 383 |
|
384 | 384 | M = importdata([data_dir,'soborot_superbee_cos_wave_128_devc.csv'],',',2); |
385 | | -col_start = find(strcmp(M.colheaders,'"Y_TRACER-1"')); |
386 | | -col_end = find(strcmp(M.colheaders,'"Y_TRACER-128"')); |
| 385 | +col_start = find(strcmp(M.colheaders,'Y_TRACER-1')); |
| 386 | +col_end = find(strcmp(M.colheaders,'Y_TRACER-128')); |
387 | 387 | Y_superbee_128 = M.data(end,col_start:col_end); |
388 | 388 |
|
389 | 389 | figure |
|
0 commit comments