-
Notifications
You must be signed in to change notification settings - Fork 0
/
publications.yaml
4850 lines (4490 loc) · 140 KB
/
publications.yaml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
publications:
- title: Accurate ECH Deposition With Real-time TORBEAM and
ECH Mirror Feedback Control
type: Presentations
category: Controls and Optimization
date: '2024-07-01'
pdf_file_name: 2024-07-Rothstein.pdf
context: DIII-D SET Meeting
authors:
- A. Rothstein
- K. Erickson
- S.K. Kim
- A. Bortolon
- E. Kolemen
- title: Advanced Magnetic Divertor Control
type: Papers
category: Controls and Optimization
date: '2024-07-01'
pdf_file_name: 2024-07-Kolemen.pdf
context: Nuclear Fusion
authors:
- E. Kolemen
- title: Data-Driven Profile Prediction for DIII-D
type: Papers
category: Machine Learning
date: '2021-03-01'
pdf_file_name: '[1] Joseph Abbate, R Conlin, and E Kolemen
“Data-driven profile prediction for DIII-D”.pdf'
context: Nuclear Fusion
authors:
- J. Abbate
- R. Conlin
- E. Kolemen
- title: A General Infrastructure for Data-Driven Control Design
and Implementation in Tokamaks
type: Papers
category: Controls and Optimization
date: '2022-10-01'
pdf_file_name: '[5] Joseph Abbate et al. “A general infrastructure
for data-driven control design and implementation in tokamaks”.pdf'
context: Journal of Plasma Physics
authors:
- J. Abbate
- R. Conlin
- R. Shousha
- K. Erickson
- E. Kolemen
- title: A Domestic Program for Liquid Metal Pfc Research in
Fusion
type: Papers
category: Liquid Metals
date: '2020-10-01'
pdf_file_name: '[11] D Andruczyk et al. “A domestic program
for liquid metal PFC research in fusion”.pdf'
context: Fusion Science and Technology
authors:
- D. Andruczyk
- R. Maingi
- C. Kessel
- D. Curreli
- E. Kolemen
- J. Canik
- B. Pint
- D. Youchison
- S. Smolentsev
- title: Plasma Boundary Shape Control and Real-Time Equilibrium
Reconstruction on NSTX-U
type: Papers
category: Special Topics
date: '2018-01-01'
pdf_file_name: '[16] MD Boyer et al. “Plasma boundary shape
control and real-time equilibrium reconstruction on NSTX-U”.pdf'
context: Nuclear Fusion
authors:
- M. D. Boyer et al.
- title: Upgrades and Performance of the Electron Cyclotron
Heating System on DIII-D
type: Papers
category: Special Topics
date: '2013-06-01'
pdf_file_name: '[19] M Cengher et al. “Upgrades and performance
of the electron cyclotron heating system on DIII-D”.pdf'
context: IEEE Transactions on Plasma Science
authors:
- M. Cengher
- J. Lohr
- Y. A. Gorelov
- R. Ellis
- E. Kolemen
- D. Ponce
- R. Prater
- S. Noraky
- C. P. Moeller
- title: Performance and Upgrades for the Electron Cyclotron
Heating System on DIII-D
type: Papers
category: Special Topics
date: '2014-07-01'
pdf_file_name: '[20] Mirela Cengher et al. “Performance and
upgrades for the electron cyclotron heating system on DIII-D”.pdf'
context: IEEE Transactions on Plasma Science
authors:
- M. Cengher
- J. Lohr
- Y. A. Gorelov
- R. Ellis
- E. Kolemen
- D. Ponce
- S. Noraky
- C. P. Moeller
- title: Full Shot Predictions for the DIII-D Tokamak via Deep
Recurrent Networks
type: Papers
category: Machine Learning
date: '2024-04-01'
pdf_file_name: '[24] Ian Char et al. “Full Shot Predictions
for the DIII-D Tokamak via Deep Recurrent Networks”.pdf'
context: IEEE Transactions on Plasma Science
authors:
- I. Char
- Y. Chung
- J. Abbate
- E. Kolemen
- J. Schneider
- title: Offline Contextual Bayesian Optimization
type: Papers
category: Machine Learning
date: '2019-01-01'
pdf_file_name: '[25] Ian Char et al. “Offline contextual bayesian
optimization”.pdf'
context: NeurIPS
authors:
- I. Char
- Y. Chung
- W. Neiswanger
- K. Kandasamy
- A. O. Nelson
- M. D. Boyer
- E. Kolemen
- J. Schneider
- title: Offline Model-Based Reinforcement Learning for Tokamak
Control
type: Papers
category: Controls and Optimization
date: '2023-01-01'
pdf_file_name: '[26.1] Ian Char et al. “Offline Model-Based
Reinforcement Learning for Tokamak Control”.pdf'
context: 5th Annual Conference on Learning for Dynamics and
Control
authors:
- I. Char
- J. Abbate
- L. Bardóczi
- M. D. Boyer
- Y. Chung
- R. Conlin
- K. Erickson
- V. Mehta
- N. Richner
- E. Kolemen
- J. Schneider
- title: Offline Model-Based Reinforcement Learning for Tokamak
Control
type: Papers
category: Controls and Optimization
date: '2023-01-01'
pdf_file_name: '[26.2] Ian Char et al. “Offline Model-Based
Reinforcement Learning for Tokamak Control”.pdf'
context: NeurIPS
authors:
- I. Char
- J. Abbate
- L. Bardóczi
- M. D. Boyer
- Y. Chung
- R. Conlin
- K. Erickson
- V. Mehta
- N. Richner
- E. Kolemen
- J. Schneider
- title: Rotation-Vibration Non-equilibrium Measurement Using
Pure Rotational fs/ps Cars Coherence Beating
type: Papers
category: Special Topics
date: '2021-12-01'
pdf_file_name: '[27] Timothy Chen et al. “Rotation-vibration
non-equilibrium measurement using pure rotational fs-ps
CARS coherence beating”.pdf'
context: Proceedings of the AIAA SciTech Forum
authors:
- T. Y. Chen
- N. Liu
- A. Dogariu
- E. Kolemen
- Y. Ju
- title: Time-Resolved Electron Temperature and Species Measurements
and Predictions of Plasma-Assisted Reforming of Methane
type: Papers
category: Special Topics
date: '2019-01-01'
pdf_file_name: '[29] Timothy Chen et al. “Time-resolved electron
temperature and species measurements and predictions of
plasma-assisted reforming of methane”.pdf'
context: AIAA SciTech Forum
authors:
- T. Y. Chen
- S. Yang
- A. C. Rousso
- B. M. Goldberg
- S. Wu
- E. Kolemen
- Y. Ju
- title: Time-Resolved Measurements of Electric Field, Electron
Temperature, and Electron Density in a Nanosecond-Pulsed
Dielectric Barrier Discharge
type: Papers
category: Special Topics
date: '2020-01-01'
pdf_file_name: '[30] Timothy Chen et al. “Time-resolved measurements
of electric field, electron temperature, and electron density
in a nanosecond-pulsed dielectric barrier discharge”.pdf'
context: AIAA SciTech Forum
authors:
- T. Y. Chen
- B. M. Goldberg
- A. C. Rousso
- Y. Ju
- E. Kolemen
- title: 1-D Imaging of Rotation-Vibration Non-equilibrium From
Pure Rotational Ultrafast Coherent Anti-stokes Raman Scattering
type: Papers
category: Special Topics
date: '2020-07-01'
pdf_file_name: '[31] Timothy Y Chen et al. “1-D imaging of
rotation-vibration non-equilibrium from pure rotational
ultrafast coherent anti-Stokes Raman scattering”.pdf'
context:
authors:
- T. Y. Chen
- B. M. Goldberg
- B. D. Patterson
- E. Kolemen
- Y. Ju
- C. J. Kliewer
- title: Impact of CH4 Addition on the Electron Properties and
Electric Field Dynamics in a AR Nanosecond-Pulsed Dielectric
Barrier Discharge
type: Papers
category: Special Topics
date: '2023-01-01'
pdf_file_name: '[32] Timothy Y Chen et al. “Impact of CH4
addition on the electron properties and electric field dynamics
in a Ar nanosecond-pulsed dielectric barrier discharge”.pdf'
context: Plasma Sources Science and Technology
authors:
- T. Y. Chen
- X. Mao
- H. Zhong
- Y. Lin
- N. Liu
- B. M. Goldberg
- Y. Ju
- E. Kolemen
- title: Simultaneous Single Shot Rotation-Vibration Non-equilibrium
Hermometry Using Pure Rotational fs/ps Cars Coherence Beating
type: Papers
category: Special Topics
date: '2022-09-01'
pdf_file_name: '[33] Timothy Y Chen et al. “Simultaneous single-shot
rotation–vibration nonequilibrium thermometry using pure
rotational fs-ps CARS coherence beating”.pdf'
context: Optics Letters
authors:
- T. Y. Chen
- N. Liu
- C. J. Kliewer
- A. Dogariu
- E. Kolemen
- Y. Ju
- title: Single Shot Burst Imaging of Electric Fields Measured
by Split Excitation Electric Field Induced Second Harmonic
Generation (SEE-FISH)
type: Presentations
category: Special Topics
date: '2021-01-01'
pdf_file_name: '[34] Timothy Y Chen et al. “Single shot burst
imaging of electric fields measured by split excitation
electric field induced second harmonic generation (SEE-FISH)”.pdf'
context: AIAA SciTech Forum
authors:
- T. Y. Chen
- B. M. Goldberg
- E. Kolemen
- Y. Ju
- title: Spatially and Time-Resolved fs-ps Cars Measurements
of Rotation-Vibration Non-equilibrium in a CH4-N2 Nanosecond-Pulsed
Discharge
type: Papers
category: Special Topics
date: '2021-01-01'
pdf_file_name: '[35] Timothy Y Chen et al. “Spatially and
time-resolved fs-ps CARS measurements of rotation-vibration
non-equilibrium in a CH4-N2 nanosecondpulsed discharge”.pdf'
context: AIAA SciTech Forum
authors:
- T. Y. Chen
- B. M. Goldberg
- C. J. Kliewer
- E. Kolemen
- Y. Ju
- title: Time-resolved in situ measurements and predictions
of plasma-assisted methane reforming in a nanosecond-pulsed
discharge
type: Papers
category: Special Topics
date: '2020-09-01'
pdf_file_name: '[36] Timothy Y Chen et al. “Time-resolved
in situ measurements and predictions of plasma-assisted
methane reforming in a nanosecond-pulsed discharge”.pdf'
context: Proceedings of the Combustion Institute
authors:
- T. Y. Chen
- T. S. Taneja
- A. C. Rousso
- S. Yang
- E. Kolemen
- Y. Ju
- title: Offline Contextual Bayesian Optimization for Nuclear
Fusion
type: Papers
category: Controls and Optimization
date: '2020-01-01'
pdf_file_name: '[37] Youngseog Chung et al. “Offline contextual
bayesian optimization for nuclear fusion”.pdf'
context: NeurIPS
authors:
- Y. Chung
- I. Char
- W. Neiswanger
- K. Kandasamy
- A. O. Nelson
- M. D. Boyer
- E. Kolemen
- J. Schneider
- title: Keras2c, a Library for Converting Keras Neural Networks
to Real-Time Compatible C
type: Papers
category: Machine Learning
date: '2021-01-01'
pdf_file_name: '[39] Rory Conlin et al. “Keras2c, A library
for converting Keras neural networks to real-time compatible
C”.pdf'
context: Engineering Applications of Artificial Intelligence
authors:
- R. Conlin
- K. Erickson
- J. Abbate
- E. Kolemen
- title: Stellarator Optimization with Constraints
type: Papers
category: Controls and Optimization
date: '2024-03-01'
pdf_file_name: '[44] Rory Conlin et al. “Stellarator Optimization
with Constraints”.pdf'
context: Journal of Plasma Physics
authors:
- R. Conlin
- P. Kim
- D. W. Dudt
- D. Panici
- E. Kolemen
- title: 'The DESC Stellarator Code Suite Part 2: Perturbation'
type: Papers
category: Controls and Optimization
date: '2023-04-01'
pdf_file_name: '[45] Rory Conlin et al. “The DESC stellarator
code suite. Part 2. Perturbation and Continuation Methods“.pdf'
context: Journal of Plasma Physics
authors:
- R. Conlin
- D. W. Dudt
- D. Panici
- E. Kolemen
- title: Stellarator Equilibrium Construction Based on a Poincaré
Sections Approach
type: Presentations
category: Controls and Optimization
date: '2020-11-01'
pdf_file_name: '[49] Daniel Dudt and Egemen Kolemen. “Stellarator
Equilibrium Construction based on a Poincare Sections Approach”.pdf'
context: APS DPP
authors:
- D. Dudt
- E. Kolemen
- title: 'The Desc Stellarator Code Suite Part 3: Quasisymmetry
Optimization'
type: Papers
category: Controls and Optimization
date: '2023-03-01'
pdf_file_name: '[53] Daniel Dudt et al. “The DESC stellarator
code suite part 3 Quasisymmetry optimization”.pdf'
context: Journal of Plasma Physics
authors:
- D. Dudt
- R. Conlin
- D. Panici
- E. Kolemen
- title: Magnetic Fields with General Omnigenity
type: Papers
category: Controls and Optimization
date: '2024-01-01'
pdf_file_name: '[54] Daniel W Dudt et al. “Magnetic Fields
with General Omnigenity”.pdf'
context: Journal of Plasma Physics
authors:
- D. W. Dudt
- A. G. Goodman
- R. Conlin
- D. Panici
- E. Kolemen
- title: Advances in Radiated Power Control at DIII-D
type: Papers
category: Special Topics
date: '2019-01-01'
pdf_file_name: '[59] David Eldon et al. “Advances in radiated
power control at DIII-D”.pdf'
context: Nuclear Materials and Energy
authors:
- D. Eldon et al.
- title: Controlling Marginally Detached Divertor Plasmas
type: Papers
category: Special Topics
date: '2017-05-01'
pdf_file_name: '[60] David Eldon et al. “Controlling marginally
detached divertor plasmas”.pdf'
context: Nuclear Fusion
authors:
- D. Eldon et al.
- title: Evolution of E×B Shear and Coherent Fluctuations Prior
to Hl Transitions in DIII-D and Control Strategies for Hl
Transitions
type: Papers
category: Special Topics
date: '2015-11-01'
pdf_file_name: '[61] David Eldon et al. “Evolution of E× B
shear and coherent fluctuations prior to HL transitions
in DIII-D and control strategies for HL transitions”.pdf'
context: Physics of Plasmas
authors:
- D. Eldon et al.
- title: Investigation of Peeling-Ballooning Stability Prior
to Transient Outbursts Accompanying Transitions Out of H-Mode
in DIII-D
type: Papers
category: Special Topics
date: '2015-05-01'
pdf_file_name: '[62] David Eldon et al. “Investigation of
peeling-ballooning stability prior to transient outbursts
accompanying transitions out of H-mode in DIII-D”.pdf'
context: Physics of Plasmas
authors:
- D. Eldon et al.
- title: DIII-D Research Advancing the Physics Basis for Optimizing
the Tokamak Approach to Fusion Energy
type: Papers
category: Special Topics
date: '2022-04-01'
pdf_file_name: '[64] Max E Fenstermacher et al. “DIII-D research
advancing the physics basis for optimizing the tokamak approach
to fusion energy”.pdf'
context: International Atomic Energy Agency Nuclear Fusion
authors:
- M. E. Fenstermacher
- et al.
- title: High Internal Inductance for Steady-State Operation
in ITER and a Reactor
type: Papers
category: Special Topics
date: '2015-06-01'
pdf_file_name: '[65] John R Ferron et al. “High internal inductance
for steady-state operation in ITER and a reactor”.pdf'
context: Nuclear Fusion
authors:
- J. R. Ferron
- C. T. Holcomb
- T. C. Luce
- J. M. Park
- E. Kolemen
- R. J. La Haye
- W. M. Solomon
- F. Turco
- title: Modeling of Lithium Granule Injection in NSTX Using
M3D-C1
type: Papers
category: Special Topics
date: '2017-04-01'
pdf_file_name: '[67] A Fil et al. “Modeling of lithium granule
injection in NSTX using M3DC1”.pdf'
context: Nuclear Materials and Energy
authors:
- A. Fil
- E. Kolemen
- A. Bortolon
- N. Ferraro
- S. Jardin
- P. B. Parks
- R. Lunsford
- R. Maingi
- title: Study of Liquid Metal Surface Wave Damping in the Presence
of Magnetic Fields and Electrical Currents
type: Papers
category: Liquid Metals
date: '2019-02-01'
pdf_file_name: '[69] AE Fisher, Mike G Hvasta, and Egemen
Kolemen. “Study of liquid metal surface wave damping in
the presence of magnetic fields and electrical currents”.pdf'
context: Nuclear Materials and Energy
authors:
- A. E. Fisher
- M. G. Hvasta
- E. Kolemen
- title: Experimental Demonstration of Hydraulic Jump Control
in Liquid Metal Channel Flow Using Lorentz Force
type: Papers
category: Liquid Metals
date: '2018-06-01'
pdf_file_name: '[70] AE Fisher, Egemen Kolemen, and MG Hvasta.
“Experimental demonstration of hydraulic jump control in
liquid metal channel flow using Lorentz force”.pdf'
context: Physics of Fluids
authors:
- A. E. Fisher
- E. Kolemen
- M. G. Hvasta
- title: Liquid Metal “Divertorlets” Concept for Fusion Reactors
type: Papers
category: Liquid Metals
date: '2020-12-01'
pdf_file_name: '[71] AE Fisher, Z Sun, and E Kolemen. “Liquid
metal “divertorlets” concept for fusion reactors”.pdf'
context: Nuclear Materials and Energy
authors:
- A. E. Fisher
- Z. Sun
- E. Kolemen
- title: Machine Learning Control for Disruption and Tearing
Mode Avoidance
type: Papers
category: Machine Learning
date: '2020-02-01'
pdf_file_name: '[72] Yichen Fu et al. “Machine learning control
for disruption and tearing mode avoidance”.pdf'
context: Physics of Plasmas
authors:
- Y. Fu
- D. Eldon
- K. Erickson
- K. Kleijwegt
- L. Lupin-Jimenez
- M. D. Boyer
- N. Eidietis
- N. Barbour
- O. Izacard
- E. Kolemen
- title: Alfvén Eigenmode Detection Using Long-Short Term Memory
Networks and CO2 Interferometer Data on the DIII-D National
Fusion Facility
type: Papers
category: Machine Learning
date: '2023-07-01'
pdf_file_name: '[76] Alvin V Garcia et al. “Alfven eigenmode
detection using Long-Short Term Memory Networks and CO 2
Interferometer data on the DIII-D National Fusion Facility”.pdf'
context: International Joint Conference on Neural Networks
authors:
- A. V. Garcia
- A. Jalalvand
- P. Steiner
- A. Rothstein
- M. Van Zeeland
- W. W. Heidbrink
- E. Kolemen
- title: Comparison of Machine Learning Systems Trained to Detect
Alfvén Eigenmodes Using the CO2 Interferometer on DIII-D
type: Papers
category: Machine Learning
date: '2023-10-01'
pdf_file_name: '[77] Alvin V Garcia et al. “Comparison of
machine learning systems trained to detect Alfven eigenmodes
using the CO2 interferometer on DIII-D”.pdf'
context: Nuclear Fusion
authors:
- A. V. Garcia
- A. Jalalvand
- P. Steiner
- A. Rothstein
- M. Van Zeeland
- W. W. Heidbrink
- E. Kolemen
- title: Overview of Results From the National Spherical Torus
Experiment (NSTX)
type: Papers
category: Special Topics
date: '2009-09-01'
pdf_file_name: '[78] DA Gates et al. “Overview of results
from the national spherical torus experiment (NSTX)”.pdf'
context: Nuclear Fusion
authors:
- D. A. Gates
- et al.
- title: Implementation of βN Control in the National Spherical
Torus Experiment
type: Papers
category: Controls and Optimization
date: '2010-12-01'
pdf_file_name: '[84] SP Gerhardt et al. “Implementation of
βN control in the National Spherical Torus experiment”.pdf'
context: Fusion Science and Technology
authors:
- S. P. Gerhardt et al.
- title: Progress in the Development of Advanced Spherical Torus
Operating Scenarios in NSTX
type: Papers
category: Special Topics
date: '2010-10-01'
pdf_file_name: '[86] SP Gerhardt et al. “Progress in the Development
of Advanced Spherical Torus Operating Scenarios in NSTX”.pdf'
context: 23rd IAEA Fusion Energy Conference
authors:
- S. P. Gerhardt et al.
- title: Recent Progress Towards an Advanced Spherical Torus
Operating Point in NSTX
type: Papers
category: Special Topics
date: '2011-06-01'
pdf_file_name: '[87] SP Gerhardt et al. “Recent progress towards
an advanced spherical torus operating point in NSTX”.pdf'
context: Nuclear Fusion
authors:
- S. P. Gerhardt et al.
- title: Fast Numerical Solution of the Plasma Response Matrix
for Real-time Ideal MHD Control
type: Papers
category: Controls and Optimization
date: '2017-03-01'
pdf_file_name: '[92] Alexander Glasser, Egemen Kolemen, and
Alan H Glasser. “Fast Numerical Solution of the Plasma Response
Matrix for Real-time Ideal MHD Control”.pdf'
context: Physics of Plasmas
authors:
- A. Glasser
- E. Kolemen
- A. H. Glasser
- title: A Robust Solution for the Resistive MHDToroidal ∆ Matrix
in Near Real-Time
type: Papers
category: Controls and Optimization
date: '2018-08-01'
pdf_file_name: '[93] Alexander S Glasser and Egemen Kolemen.
“A robust solution for the resistive MHD toroidal ∆ matrix
in near real-time”.pdf'
context: Physics of Plasmas
authors:
- A. S. Glasser
- E. Kolemen
- title: A Riccati Solution for the Ideal MHD Plasma Response
With Applications to Real-Time Stability Control
type: Papers
category: Controls and Optimization
date: '2018-07-01'
pdf_file_name: '[94] Alexander S Glasser, Egemen Kolemen,
and AH Glasser. “A Riccati solution for the ideal MHD plasma
response with applications to real-time stability control”.pdf'
context: Physics of Plasmas
authors:
- A. S. Glasser
- E. Kolemen
- A. H. Glasser
- title: An Ideal MHD δW Stability Analysis That Bypasses the
Newcomb Equation
type: Papers
category: Controls and Optimization
date: '2020-02-01'
pdf_file_name: '[95] Alexander S Glasser et al. “An ideal
MHD δW stability analysis that bypasses the Newcomb equation”.pdf'
context: Physics of Plasmas
authors:
- A. S. Glasser
- E. Kolemen
- A. H. Glasser
- title: Modeling and Control of Plasma Rotation for NSTX Using
Neoclassical Toroidal Viscosity and Neutral Beam Injection
type: Papers
category: Controls and Optimization
date: '2016-02-01'
pdf_file_name: '[97] IR Goumiri et al. “Modeling and control
of plasma rotation for NSTX using neoclassical toroidal
viscosity and neutral beam injection”.pdf'
context: Nuclear Fusion
authors:
- I. R. Goumiri
- C. W. Rowley
- S. A. Sabbagh
- D. A. Gates
- S. P. Gerhardt
- M. D. Boyer
- R. Andre
- E. Kolemen
- K. Taira
- title: Simultaneous Feedback Control of Plasma Rotation and
Stored Energy on NSTX-U Using Neoclassical Toroidal Viscosity
and Neutral Beam Injection
type: Papers
category: Controls and Optimization
date: '2017-02-01'
pdf_file_name: '[98] IR Goumiri et al. “Simultaneous feedback
control of plasma rotation and stored energy on NSTX-U using
neoclassical toroidal viscosity and neutral beam injection”.pdf'
context: Physics of Plasmas
authors:
- I. R. Goumiri
- C. W. Rowley
- S. A. Sabbagh
- D. A. Gates
- M. D. Boyer
- S. P. Gerhardt
- E. Kolemen
- J. E. Menard
- title: Developing and Validating Advanced Divertor Solutions
on DIII-D for Next-Step Fusion Devices
type: Papers
category: Special Topics
date: '2016-09-01'
pdf_file_name: '[100] HY Guo et al. “Developing and validating
advanced divertor solutions on DIII-D for next-step fusion
devices”.pdf'
context: Nuclear Fusion
authors:
- H. Y. Guo et al.
- title: Hamilton–Jacobi Modelling of Stellar Dynamics
type: Papers
category: Special Topics
date: '2005-06-01'
pdf_file_name: '[101] Pini Gurfil, N Jeremy Kasdin, and Egemen
Kolemen. “Hamilton–Jacobi modelling of stellar dynamics”.pdf'
context: Advances in Space Research
authors:
- P. Gurfil
- N. J. Kasdin
- E. Kolemen
- title: NSTX-U Theory, Modeling and Analysis Results
type: Papers
category: Special Topics
date: '2022-03-01'
pdf_file_name: '[102] Walter Guttenfelder et al. “NSTX-U theory,
modeling and analysis results”.pdf'
context: Nuclear Fusion
authors:
- W. Guttenfelder et al.
- title: Progress and Improvement of KSTAR Plasma Control Using
Model-Based Control Simulators
type: Papers
category: Controls and Optimization
date: '2014-01-01'
pdf_file_name: '[104] Sang-hee Hahn et al. “Progress and improvement
of KSTAR plasma control using model-based control simulators”.pdf'
context: Fusion Engineering and Design
authors:
- S. H. Hahn et al.
- title: Gyrokinetic Analysis of Inter-Edge Localized Mode Transport
Mechanisms in a DIII-D Pedestal
type: Papers
category: Special Topics
date: '2022-11-01'
pdf_file_name: '[107] Michael R Halfmoon et al. “Gyrokinetic
analysis of inter-edge localized mode transport mechanisms
in a DIII-D pedestal”.pdf'
context: Physics of Plasmas
authors:
- M. R. Halfmoon et al.
- title: Initial Operation of a Real-Time Thomson Scattering
Evaluation System on the Large Helical Device
type: Papers
category: Controls and Optimization
date: '2021-06-01'
pdf_file_name: '[108] KC Hammond et al. “Initial operation
of a real-time Thomson scattering evaluation system on the
Large Helical Device”.pdf'
context: Review of Scientific Instruments
authors:
- K. C. Hammond et al.
- title: Control of Plasma Stored Energy for Burn Control Using
DIII-D In-Vessel Coils
type: Papers
category: Special Topics
date: '2015-04-01'
pdf_file_name: '[109] Richard J Hawryluk et al. “Control of
plasma stored energy for burn control using DIII-D in-vessel
coils”.pdf'
context: International Atomic Energy Agency Nuclear Fusion
authors:
- R. J. Hawryluk et al.
- title: Fast and Pervasive Heat Transport Induced by Multiple
Locked Modes in DIII-D
type: Papers
category: Special Topics
date: '2018-11-01'
pdf_file_name: '[111] Qiming Hu et al. “Fast and pervasive
heat transport induced by multiple locked modes in DIII-D”.pdf'
context: Nuclear Fusion
authors:
- Q. Hu
- X. Du
- Q. Yu
- N. C. Logan
- E. Kolemen
- R. Nazikian
- Z. H. Jiang
- title: Nonlinear Modeling of the Effect of Multiple Locked
Modes on Heat Transport
type: Papers
category: Special Topics
date: '2018-01-01'
pdf_file_name: '[112] QM Hu et al. “Nonlinear modeling of
the effect of multiple locked modes on heat transport”.pdf'
context: 45th EPS Conference on Plasma Physics
authors:
- Q. M. Hu
- X. D. Du
- Q. Yu
- N. C. Logan
- E. Kolemen
- R. Nazikian
- title: Active Real-Time Control of Alfvén Eigenmodes by Neutral
Beam and Electron Cyclotron Heating in the DIII-D Tokamak
type: Papers
category: Special Topics
date: '2018-09-01'
pdf_file_name: '[113] Wenhui Hu et al. “Active real-time control
of Alfven eigenmodes by neutral beam and electron cyclotron
heating in the DIII-D tokamak”.pdf'
context: Nuclear Fusion
authors:
- W. Hu et al.
- title: Experimental Vertical Stability Studies for ITER Performance
and Design Guidance
type: Papers
category: Special Topics
date: '2009-09-01'
pdf_file_name: '[114] DA Humphreys et al. “Experimental vertical
stability studies for ITER performance and design guidance”.pdf'
context: Nuclear Fusion
authors:
- D. A. Humphreys et al.
- title: Advancing Fusion with Machine Learning Research Needs
Workshop
type: Papers
category: Machine Learning
date: '2019-05-01'
pdf_file_name: '[116] David Humphreys et al. ”Advancing Fusion
with Machine Learning Research Needs Workshop”.pdf'
context: Office of Science, U.S. Department of Energy
authors:
- D. Humphreys et al.
- title: Advancing Fusion With Machine Learning Research Needs
Workshop Report
type: Papers
category: Machine Learning
date: '2020-09-01'
pdf_file_name: '[117] David Humphreys et al. “Advancing fusion
with machine learning research needs workshop report”.pdf'
context: Journal of Fusion Energy
authors:
- D. Humphreys et al.
- title: Novel Aspects of Plasma Control in ITER
type: Papers
category: Special Topics
date: '2015-02-01'
pdf_file_name: '[118] David Humphreys et al. “Novel aspects
of plasma control in ITER”.pdf'
context: Physics of Plasmas
authors:
- D. Humphreys et al.
- title: Application of IR Imaging for Free-Surface Velocity
Measurement in Liquid-Metal Systems
type: Papers
category: Liquid Metals
date: '2017-01-01'
pdf_file_name: '[119] MG Hvasta, Egemen Kolemen, and A Fisher.
“Application of IR imaging for free-surface velocity measurement
in liquid-metal systems”.pdf'
context: Review of Scientific Instruments
authors:
- M. G. Hvasta
- E. Kolemen
- A. Fisher
- title: Calibrationless Rotating Lorentz-Force Flowmeters for
Low Flow Rate Applications
type: Papers
category: Liquid Metals
date: '2018-05-01'
pdf_file_name: '[120] MG Hvasta et al. “Calibrationless rotating
Lorentz-force flowmeters for low flow rate applications”.pdf'
context: Measurement Science and Technology
authors:
- M. G. Hvasta
- D. Dudt
- A. E. Fisher
- E. Kolemen
- title: Experimental Calibration Procedures for Rotating Lorentz-Force
Flowmeters
type: Papers
category: Liquid Metals
date: '2017-07-01'
pdf_file_name: '[121] MG Hvasta et al. “Experimental calibration
procedures for rotating Lorentz-force flowmeters”.pdf'
context: Measurement Science and Technology
authors:
- M. G. Hvasta
- N. T. Slighton
- E. Kolemen
- A. E. Fisher
- title: Liquid Metal Diagnostics
type: Papers
category: Liquid Metals
date: '2019-08-01'
pdf_file_name: '[122] MG Hvasta et al. “Liquid Metal Diagnostics”.pdf'
context: Fusion Science and Technology
authors:
- M. G. Hvasta
- G. Bruhaug