-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchanl.bib
More file actions
2406 lines (2185 loc) · 97.2 KB
/
Copy pathchanl.bib
File metadata and controls
2406 lines (2185 loc) · 97.2 KB
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
%% This BibTeX bibliography file was created using BibDesk.
%% https://bibdesk.sourceforge.io/
%% Created for Kyle Hanquist at 2021-01-25 15:58:31 -0700
%% Saved with string encoding Unicode (UTF-8)
@article{gimelshein:jtht:2021,
Author = {Gimelshein, Sergey F. and Wysong, Ingrid J. and Fangman, Alexander J. and Andrienko, Daniil A. and Kunova, Olga V. and Kustova, Elena V. and Garbacz, Catrina and Fossati, Marco and Hanquist, Kyle M.},
Date-Added = {2021-01-25 15:39:02 -0700},
Date-Modified = {2021-01-25 15:58:24 -0700},
Journal = {Journal of Thermophysics and Heat Transfer},
Title = {{Kinetic and Continuum Modeling of High Temperature Relaxation of O2 and N2 Binary Mixtures}},
Url = {https://chanl.arizona.edu/preprint},
Year = {2021 (under review)}}
@inproceedings{grover:scitech:2019,
Author = {Maninder S. Grover and Casimir J. Suchyta and Eswar Josyula},
Booktitle = {AIAA Scitech 2019 Forum},
Date-Added = {2020-12-18 14:31:15 -0700},
Date-Modified = {2020-12-18 14:32:59 -0700},
Publisher = {{AIAA Paper} 2019-0790},
Title = {Ab Initio Based Rate Coefficients for Two-Temperature Nonequilibrium Models in Hypersonic Blunt Body Flow},
Year = {2019}}
@article{josyula:jtht:2019,
Author = {Eswar Josyula and Casimir J. Suchyta and Prakash Vedula and Jonathan M. Burt},
Date-Added = {2020-12-18 14:25:33 -0700},
Date-Modified = {2020-12-18 14:29:22 -0700},
Doi = {10.2514/1.T5444},
Journal = {Journal of Thermophysics and Heat Transfer},
Number = {2},
Pages = {378--391},
Title = {Multiquantum Transitions in Oxygen and Nitrogen Molecules in Hypersonic Nonequilibrium Flows},
Volume = {33},
Year = {2019},
Bdsk-Url-1 = {https://doi.org/10.2514/1.T5444}}
@techreport{nces:2019,
Author = {Cristobal de Brey and Lauren Musu and Joel McFarland and Sidney Wilkinson-Flicker and Melissa Diliberti and Anlan Zhang and Claire Branstetter and Xiaolei Wang},
Date-Added = {2020-12-15 14:59:28 -0700},
Date-Modified = {2020-12-15 15:02:26 -0700},
Institution = {National Center for Education Statistics, U.S. Department of Education},
Number = {NCES 2019-038},
Title = {Status and Trends in the Education of Racial and Ethnic Groups 2018},
Year = {2019}}
@inproceedings{gidzak:aiaa:2012,
Address = {Honolulu, HI},
Author = {Vladimyr Gidzak and Michael Barnhardt and Travis Drayna and Ioannis Nompelis and Graham V. Candler and William Garrard},
Booktitle = {26th AIAA Applied Aerodynamics Conference},
Date-Added = {2020-12-15 14:53:06 -0700},
Date-Modified = {2020-12-15 14:55:28 -0700},
Publisher = {{AIAA Paper} 2008-6910},
Title = {Simulation of Fluid-Structure Interaction of the Mars Science Laboratory Parachute},
Year = {2008}}
@inproceedings{chettle:issw:2013,
Author = {Alan J. Chettle and Erinc Erdem and Konstantinos Kontis},
Booktitle = {The 29th International Symposium on Shock Waves},
Date-Added = {2020-12-15 14:48:30 -0700},
Date-Modified = {2020-12-15 14:51:18 -0700},
Editor = {Riccardo Bonazza and Devesh Ranjan},
Title = {Edney IV Interaction Studies at Mach 5},
Year = {2013}}
@techreport{watts:nasa:1968,
Author = {Joe D. Watts},
Date-Added = {2020-12-15 14:25:17 -0700},
Date-Modified = {2020-12-15 14:30:34 -0700},
Institution = {NASA},
Number = {NASA TM X-1669},
Title = {Flight Experience with Shock Impingement and Interference Heating on the X-15-2 Research Airplane},
Year = {1968}}
@techreport{edl:nasa:2012,
Author = {Mark Adler and Michael Wright and Charles Campbell and Ian Clark and Walt Engelund and Tommaso Rivellini},
Date-Added = {2020-12-14 15:58:54 -0700},
Date-Modified = {2020-12-14 16:00:16 -0700},
Institution = {NASA},
Title = {Entry, Decent, and Landing Roadmap: Technology Area 9},
Year = {2012}}
@inproceedings{mcguire:scitech:2011,
Address = {Orlando, FL},
Author = {Mary Kathleen McGuire and James O. Arnold and M. Alan Covington and Iain C. Dupzyk},
Booktitle = {49th AIAA Aerospace Sciences Meeting},
Date-Added = {2020-12-14 15:56:08 -0700},
Date-Modified = {2020-12-14 15:57:23 -0700},
Publisher = {{AIAA Paper} 2011-344},
Title = {Flexible Ablative Thermal Protection Sizing on Inflatable Aerodynamic Decelerator for Human Mars Entry Descent and Landing},
Year = {2011}}
@inproceedings{bowcutt:aiaa:2011,
Address = {San Francisco, CA},
Author = {Kevin G. Bowcutt and Thomas R. Smith and Ajay P. Kothari and Venkataraman Raghavan and Christopher Tarpley and John W. Livingston},
Booktitle = {17th AIAA International Space Planes and Hypersonic Systems and Technologies Conference},
Date-Added = {2020-12-14 15:14:13 -0700},
Date-Modified = {2020-12-14 15:16:39 -0700},
Publisher = {{AIAA Paper} 2011-2295},
Title = {The Hypersonic Space and Global Transportation System: A Concept for Routine and Affordable Access to Space},
Year = {2011}}
@article{juliano:jsr:2015,
Author = {Thomas J. Juliano and David Adamczak and Roger L. Kimmel},
Date-Added = {2020-12-14 13:22:38 -0700},
Date-Modified = {2020-12-14 13:24:58 -0700},
Doi = {10.2514/1.A33142},
Journal = {Journal of Spacecraft and Rockets},
Number = {3},
Pages = {650--663},
Title = {HIFIRE-5 Flight Test Results},
Volume = {52},
Year = {2015},
Bdsk-Url-1 = {https://doi.org/10.2514/1.A33142}}
@phdthesis{jewell:thesis,
Address = {Pasadena, CA},
Author = {Joseph S. Jewell},
Date-Added = {2020-12-14 13:18:23 -0700},
Date-Modified = {2020-12-14 13:19:32 -0700},
Month = {May},
School = {California Institute of Technology},
Title = {Boundary-Layer Transition on a Slender Cone in Hypervelocity Flow with Real Gas Effects},
Year = {2014}}
@inproceedings{marineau:avi:2014,
Address = {Atlanta, GA},
Author = {Eric C. Marineau and C. George Moraru and Daniel R. Lewis and Joseph D. Norris and John F. Lafferty},
Booktitle = {19th AIAA International Space Planes and Hypersonic Systems and Technologies Conference},
Date-Added = {2020-12-14 13:14:39 -0700},
Date-Modified = {2020-12-14 13:16:49 -0700},
Publisher = {{AIAA Paper} 2014-3108},
Title = {Mach 10 Boundary-Layer Transition Experiments on Sharp and Blunted Cones},
Year = {2014}}
@article{goyne:jfm:2003,
Author = {C. P. Goyne and R. J. Stalker and A. Paull},
Date-Added = {2020-12-14 13:08:07 -0700},
Date-Modified = {2020-12-14 13:09:30 -0700},
Doi = {10.1017/S0022112003003975},
Journal = {Journal of Fluid Mechanics},
Pages = {1--32},
Title = {Skin-friction measurements in high-enthalpy hypersonic boundary layers},
Volume = {485},
Year = {2003},
Bdsk-Url-1 = {https://doi.org/10.1017/S0022112003003975}}
@article{scoggins:sx:2020,
Author = {James B. Scoggins and Vincent Leroy and Georgios Bellas-Chatzigeorgis and Bruno Dias and Thierry E. Magin},
Date-Added = {2020-12-14 12:53:29 -0700},
Date-Modified = {2020-12-14 13:32:40 -0700},
Doi = {10.1016/j.softx.2020.100575},
Journal = {SoftwareX},
Title = {Mutation$^{++}$: MUlticomponent Thermodynamic And Transport properties for IONized gases in C$++$},
Volume = {12},
Year = {2020},
Bdsk-Url-1 = {https://doi.org/10.1016/j.softx.2020.100575}}
@article{parent:ijcfd:2020,
Author = {Bernard Parent and Kyle M. Hanquist},
Date-Added = {2020-12-10 17:35:36 -0700},
Date-Modified = {2020-12-10 17:37:44 -0700},
Journal = {International Journal of Computational Fluid Dynamics},
Title = {Plasma Sheath Modeling for Computational Aerothermodynamics and Magnetohydrodynamics},
Year = {2020 (submitted)}}
@inproceedings{morin:scitech:2020,
Address = {Orlando, FL},
Author = {Andrew J. Morin and Rebecca Osborn and Jeff C. Schindler and Precious Jagun and Douglas G. Fletcher and Jason M. Meyers},
Booktitle = {AIAA Scitech 2020 Forum},
Date-Added = {2020-12-10 12:54:28 -0700},
Date-Modified = {2020-12-10 12:56:06 -0700},
Keywords = {etc},
Month = {January},
Publisher = {{AIAA Paper} 2020-0921},
Title = {Inductively Coupled Facility Qualification for Electron Transpiration Cooling Investigations},
Year = {2020}}
@techreport{chazot:etc:2017,
Author = {Olivier Chazot and Bernd Helber},
Date-Added = {2020-12-10 12:51:18 -0700},
Date-Modified = {2020-12-10 12:54:18 -0700},
Institution = {The von Karman Institute for Fluid Dynamics},
Keywords = {etc},
Number = {AD1028658},
Title = {Plasma Wind Tunnel Testing of Electron Transpiration Cooling Concept},
Year = {2017}}
@inproceedings{parent:avi:2020,
Author = {Bernard Parent and Kyle M. Hanquist and Ajjay Omprakas},
Booktitle = {AIAA Aviation and Aeronautics Forum and Exposition},
Date-Added = {2020-12-10 12:19:41 -0700},
Date-Modified = {2020-12-10 12:21:09 -0700},
Doi = {https://doi.org/10.2514/6.2020-3230},
Month = {June},
Publisher = {{AIAA Paper} 2020-3230},
Title = {Fully-Coupled Simulation of Plasma Discharges, Turbulence, and Combustion in a Scramjet Combustor},
Year = {2020},
Bdsk-Url-1 = {https://doi.org/10.2514/6.2020-3230}}
@inproceedings{sadagopan:scitech:2021,
Author = {Aravinth Sadagopan and Daning Huang and \"{U}mran D\"{u}zel and Martin E. Liza and Kyle M. Hanquist},
Booktitle = {AIAA Scitech 2021 Forum},
Date-Added = {2020-12-10 11:22:15 -0700},
Date-Modified = {2021-01-15 20:32:22 -0700},
Publisher = {{AIAA Paper} 2021-1610},
Title = {Assessment of High-Temperature Effects on Hypersonic Aerothermoelastic Analysis using Multi-Fidelity Multi-Variate Surrogates},
Year = {2021}}
@inproceedings{hanquist:jannaf:2020,
Author = {Kyle M. Hanquist and \"{U}mran D\"{u}zel and Martin E. Liza and Aravinth Sadagopan and Daning Huang},
Booktitle = {Joint Meeting of the Combustion, Airbreathing Propulsion, Exhaust Plume and Signatures, and Energetic Systems Hazards subcommittees, and Programmatic and Industrial Base meeting},
Date-Added = {2020-12-09 21:53:12 -0700},
Date-Modified = {2020-12-09 22:02:20 -0700},
Title = {Modeling High-Temperature Flow Field Effects Relevant to Fluid-Thermal-Structural Interactions},
Year = {2020}}
@inproceedings{maclean:avi:2014,
Author = {M. MacLean and M. Holden and A. Dufrene},
Booktitle = {44th AIAA Fluid Dynamics Conference, AIAA Aviation Forum},
Date-Added = {2020-12-09 21:36:25 -0700},
Date-Modified = {2020-12-09 21:39:22 -0700},
Publisher = {{AIAA Paper} 2014-3366},
Title = {Comparison Between CFD and Measurements for Real-Gas Effects on Laminar Shock Wave Boundary Layer Interaction, 1},
Year = {2014}}
@inproceedings{nompelis:scitech:2003,
Author = {Ioannis Nompelis and Graham V. Candler},
Booktitle = {48th AIAA Aerospace Sciences Meeting Including the New Horizons Forum and Aerospace Exposition},
Date-Added = {2020-12-09 21:33:50 -0700},
Date-Modified = {2020-12-09 21:35:37 -0700},
Publisher = {{AIAA Paper} 2010-1283},
Title = {Numerical Investigation of DoubleCone Flow Experiments with High-Enthalpy Effects},
Year = {2010}}
@inproceedings{nompelis:avi:2003,
Author = {Ioannis Nompelis and Graham V. Candler and M. S. Holden and T. P. Wadhams},
Booktitle = {36th AIAA Thermophysics Conference},
Date-Added = {2020-12-09 21:31:23 -0700},
Date-Modified = {2020-12-09 21:33:11 -0700},
Publisher = {{AIAA Paper} 2003-3642},
Title = {Computational Investigation of Hypersonic Viscous/Inviscid Interactions in High Enthalpy Flows},
Year = {2003}}
@inproceedings{harvey:scitech:2001a,
Author = {J. K. Harvey and M. S. Holden and T. P. Wadhams},
Booktitle = {39th AIAA Aerospace Sciences Meeting and Exhibit},
Date-Added = {2020-12-09 21:25:35 -0700},
Date-Modified = {2020-12-09 21:29:27 -0700},
Publisher = {{AIAA Paper} 2001-1031},
Title = {Code Validation Study of Laminar Shock/Boundary Layer and Shock/Shock Interactions in Hypersonic Flow, Part B: Comparison with Navier-Stokes and DSMC Solutions},
Year = {2001}}
@inproceedings{harvey:scitech:2001,
Author = {J. K. Harvey and M. S. Holden and T. P. Wadhams},
Booktitle = {39th AIAA Aerospace Sciences Meeting and Exhibit},
Date-Added = {2020-12-09 21:21:36 -0700},
Date-Modified = {2020-12-09 21:24:48 -0700},
Publisher = {{AIAA Paper} 2001-1031},
Title = {Code Validation Study of Laminar Shock/Boundary Layer and Shock/Shock Interactions in Hypersonic Flow, Part A: Experimental Measurements},
Year = {2001}}
@book{josyula:2015,
Date-Added = {2020-11-21 14:39:36 -0700},
Date-Modified = {2020-11-21 14:40:33 -0700},
Editor = {Eswar Josyula},
Publisher = {Progress in Astronautics and Aeronautics},
Title = {Hypersonic Nonequilibrium Flows: Fundamentals and Recent Advances},
Year = {2015}}
@article{schwartzentruber:jtht:2017,
Author = {Thomas E. Schwartzentruber and Grover, M. S. and Paolo Valentini},
Date-Added = {2020-11-21 13:57:16 -0700},
Date-Modified = {2020-11-21 13:58:35 -0700},
Doi = {10.2514/1.T5188},
Journal = {Journal of Thermophysics and Heat Transfer},
Number = {4},
Title = {Direct Molecular Simulation of Nonequilibrium Dilute Gases},
Volume = {32},
Year = {2017},
Bdsk-Url-1 = {https://doi.org/10.2514/1.T5188}}
@article{bender:jcp:2015,
Author = {Jason D. Bender and Paolo Valentini and Ioannis Nompelis and Yuliya Paukku and Zoltan Varga and Donald G. Truhlar and Thomas E. Schwartzentruber and Graham V. Candler},
Date-Added = {2020-11-21 13:52:52 -0700},
Date-Modified = {2020-11-21 13:55:38 -0700},
Doi = {10.1063/1.4927571},
Journal = {The Journal of Chemical Physics},
Number = {5},
Title = {An improved potential energy surface and multi-temperature quasiclassical trajectory calculations of {N\textsubscript{2} + N\textsubscript{2}} dissociation reactions},
Volume = {143},
Year = {2015},
Bdsk-Url-1 = {https://doi.org/10.1063/1.4927571}}
@article{candler:arfm:2019,
Author = {Graham V. Candler},
Date-Added = {2020-11-21 13:41:29 -0700},
Date-Modified = {2020-11-21 13:42:46 -0700},
Doi = {10.1146/annurev-fluid-010518-040258},
Journal = {Annual Review of Fluid Mechanics},
Title = {Rate Effects in Hypersonic Flows},
Volume = {51},
Year = {2019},
Bdsk-Url-1 = {https://doi.org/10.1146/annurev-fluid-010518-040258}}
@article{gnoffo:arfm:1999,
Author = {Peter A. Gnoffo},
Date-Added = {2020-11-21 13:37:53 -0700},
Date-Modified = {2020-11-21 13:40:44 -0700},
Doi = {10.1146/annurev.fluid.31.1.459},
Journal = {Annual Review of Fluid Mechanics},
Title = {Planetary-Entry Gas Dynamics},
Volume = {31},
Year = {1999},
Bdsk-Url-1 = {https://doi.org/10.1146/annurev.fluid.31.1.459}}
@inproceedings{holden:scitech:2010,
Address = {Orlando, FL},
Author = {Michael S. Holden and Timothy P. Wadhams and Matthew MacLean},
Booktitle = {AIAA Scitech 2010 Forum},
Date-Added = {2020-11-21 13:28:35 -0700},
Date-Modified = {2020-11-21 13:30:54 -0700},
Publisher = {{AIAA Paper} 2010-1281},
Title = {A Review of Experimental Studies with the Double Cone and Hollow Cylinder/Flare Configurations in the LENS Hypervelocity Tunnels and Comparisons with Navier-Stokes and DSMC Computations},
Year = {2010}}
@techreport{karypis:metis:1997,
Author = {George Karypis and Vipin Kumar},
Date-Added = {2020-11-09 14:24:39 -0700},
Date-Modified = {2020-11-09 14:26:20 -0700},
Institution = {University of Minnesota},
Number = {97-061},
Title = {METIS: A Software Package for Partitioning Unstructured Graphs, Partitioning Meshes, and Computing Fill-Reducing Orderings of Sparse Matrices},
Year = {1997}}
@article{jawahar:jcp:2000,
Author = {P. Jawahar and Hement Kamath},
Date-Added = {2020-11-09 14:22:02 -0700},
Date-Modified = {2020-11-09 14:23:50 -0700},
Journal = {Journal of Computational Physics},
Number = {1},
Pages = {165--203},
Title = {A High-Resolution Procedure for Eulerand Navier--Stokes Computationson Unstructured Grids},
Volume = {164},
Year = {2000}}
@article{touryan:aj:1965,
Author = {Touryan, K. J.},
Date-Added = {2020-09-30 14:13:39 -0700},
Date-Modified = {2020-09-30 14:13:51 -0700},
Journal = {AIAA Journal},
Number = {4},
Pages = {652-659},
Title = {A Hypersonic Plasma Power Generator},
Volume = {3},
Year = {1965}}
@article{maccormack:cf:1989,
Abstract = {Gauss-Seidel line relaxation is used to solve an implicit flux split difference approximation to the Navier-Stokes equations. The flux split approximation is chosen to maximize the weight of the diagonal elements of the block matrix elements that need to be inverted iteratively by the Gauss-Seidel procedure. There are several flux split approximations that can be chosen. However, not all are suitable for viscous flows containing shear or boundary layers. The present paper will illustrate the adverse effects of flux splitting in viscous flow calculations and propose corrections. The numerical procedures will be applied to solve for subsonic laminar flow past a flat plate, turbulent flow past a cone at March 6, and chemical and thermal nonequilibrium flow past a sphere-cone body at March 18.},
Author = {Robert W. MacCormack and Graham V. Candler},
Date-Added = {2020-09-30 14:09:01 -0700},
Date-Modified = {2020-12-11 13:12:28 -0700},
Doi = {10.1016/0045-7930(89)90012-1},
Issn = {0045-7930},
Journal = {Computers \& Fluids},
Number = {1},
Pages = {135 - 150},
Title = {The solution of the Navier-Stokes equations using Gauss-Seidel line relaxation},
Volume = {17},
Year = {1989},
Bdsk-Url-1 = {http://www.sciencedirect.com/science/article/pii/0045793089900121},
Bdsk-Url-2 = {https://doi.org/10.1016/0045-7930(89)90012-1}}
@inproceedings{tropina:aviation:2020,
Author = {Albina Tropina and Daniil A. Andrienko and Richard B. Miles},
Booktitle = {AIAA Aviation and Aeronautics Forum and Exposition},
Date-Added = {2020-09-29 21:19:36 -0700},
Date-Modified = {2020-09-29 21:21:46 -0700},
Keywords = {etc},
Publisher = {{AIAA Paper} 2020-3231},
Title = {Modeling studies of electron transpiration cooling at high-speed flows},
Year = {2020}}
@inproceedings{parent:scitech:2021,
Author = {Bernard Parent and Kyle M. Hanquist and Martin E. Liza and Prasanna T. Rajendran},
Booktitle = {AIAA Scitech 2021 Forum},
Date-Added = {2020-09-25 13:12:26 -0700},
Date-Modified = {2020-12-10 11:22:45 -0700},
Title = {Effect of Ablation on Plasma Layers and Sheaths in Hypersonic and Re-entry Flows},
Year = {2021}}
@article{raissi:jcp:2019,
Author = {M. Raissi and P. Perdikaris and G. E. Karniadakis},
Date-Added = {2020-09-25 11:51:54 -0700},
Date-Modified = {2020-09-25 11:52:49 -0700},
Journal = {Journal of Computational Physics},
Title = {Physics-informed neural networks: A deep learning framework for solving forward and inverse problems involving nonlinear partial differential equations},
Volume = {378},
Year = {2019}}
@inproceedings{andrienko:aviation:2018,
Address = {Atlanta, GA},
Author = {Daniil A. Andrienko and Iain D. Boyd},
Booktitle = {AIAA Aviation and Aeronautics Forum and Exposition},
Date-Added = {2020-09-24 16:03:20 -0700},
Date-Modified = {2020-09-24 16:05:03 -0700},
Month = {June},
Publisher = {{AIAA Paper} 2018-3438},
Title = {Kinetics of {O\textsubscript{2}--N\textsubscript{2}} collisions at hypersonic temperatures},
Year = {2018}}
@book{tatarski:1961,
Author = {Tatarski, V. I.},
Date-Added = {2020-09-24 14:18:29 -0700},
Date-Modified = {2020-09-24 14:18:29 -0700},
Publisher = {McGraw-Hill},
Title = {Wave Propagation in a Turbulent Medium},
Year = {1961}}
@book{chernov:1960,
Address = {New York},
Author = {Chernov, L. A.},
Date-Added = {2020-09-24 14:18:05 -0700},
Date-Modified = {2020-09-24 14:18:05 -0700},
Publisher = {McGraw-Hill},
Title = {Wave Propagation in a Random Medium},
Year = {1960}}
@techreport{afsb:2016,
Author = {{Air Force Studies Board}},
Date-Added = {2020-09-24 13:42:57 -0700},
Date-Modified = {2020-09-24 17:00:57 -0700},
Institution = {The National Academies of Sciences-Engineering-Medicine},
Title = {A Threat to America's Global Vigilance, Reach, and Power: High-Speed Maneuvering Weapons},
Year = {2016}}
@techreport{ocs:2010,
Author = {{Office of Chief Scientist}},
Date-Added = {2020-09-24 13:42:25 -0700},
Date-Modified = {2020-09-24 14:21:38 -0700},
Institution = {United States Air Force},
Title = {Technology Horizons: A Vision for Air Force Science and Technology for 2010-30},
Year = {2010}}
@article{rand:ieee:2015,
Author = {Rand, L. P. and Williams, J. D.},
Date-Added = {2020-09-24 12:07:00 -0700},
Date-Modified = {2020-09-24 12:07:19 -0700},
Journal = {IEEE Transactions on Plasma Science},
Number = {1},
Pages = {190-194},
Title = {A Calcium Aluminate Electride Hollow Cathode},
Volume = {43},
Year = {2015}}
@article{kim:s:2011,
Author = {Kim, S. W. and Shimoyama, T. and Hosono, H.},
Date-Added = {2020-09-24 12:05:53 -0700},
Date-Modified = {2020-09-24 12:06:07 -0700},
Journal = {Science},
Number = {6038},
Pages = {71-74},
Title = {Solvated Electrons in High-Temperature Melts and Glasses of the Room-Temperature Stable Electride [{Ca}\textsubscript{24}{Al}\textsubscript{28}{O}\textsubscript{64}]\textsuperscript{4+} 4 e\textsuperscript{-}},
Volume = {333},
Year = {2011}}
@phdthesis{hanquist:thesis:2017,
Address = {Ann Arbor},
Author = {Kyle M. Hanquist},
Date-Added = {2020-09-24 11:50:15 -0700},
Date-Modified = {2020-09-24 11:51:37 -0700},
Keywords = {etc},
School = {University of Michigan},
Title = {Modeling of Electron Transpiration Cooling for Leading Edges of Hypersonic Vehicles},
Year = {2017}}
@inproceedings{bisek:scitech:2008,
Author = {Bisek, N. J. and Boyd, I. D. and Poggie, J.},
Booktitle = {46th AIAA Aerospace Sciences Meeting and Exhibit},
Date-Added = {2020-09-22 15:26:32 -0700},
Date-Modified = {2020-09-22 15:27:31 -0700},
Month = {January},
Publisher = {{AIAA Paper} 2008-1109},
Title = {Numerical Study of Energy Deposition Requirements for Aerodynamic Control of Hypersonic Vehicles},
Year = {2008}}
@article{thomas:aj:1965,
Author = {Thomas, P. D.},
Date-Added = {2020-09-22 15:13:04 -0700},
Date-Modified = {2020-09-22 15:45:55 -0700},
Journal = {AIAA Journal},
Number = {8},
Pages = {1401-1407},
Title = {Transparency Assumption in Hypersonic Radiative Gas Dynamics},
Volume = {3},
Year = {1965}}
@inbook{bohm:1949,
Author = {Bohm, D.},
Chapter = {Minimum ionic kinetic energy for a stable sheath},
Date-Added = {2020-09-22 14:48:27 -0700},
Date-Modified = {2020-09-22 14:48:37 -0700},
Editor = {Guthrie, A.},
Publisher = {McGraw-Hill},
Title = {The Characteristics of Electrical Discharges in Magnetic Fields},
Year = {1949}}
@inbook{scott:1992,
Author = {Scott, C. D.},
Chapter = {Wall Catalytic Recombination and Boundary Conditions in Nonequilibrium Hypersonic Flows - With Applications},
Date-Added = {2020-09-22 14:39:39 -0700},
Date-Modified = {2020-09-22 14:39:54 -0700},
Pages = {175-250},
Publisher = {Birkhauser},
Title = {Advances in Hypersonics: Modeling Hypersonic Flows},
Volume = {2},
Year = {1992}}
@article{sheehan:psst:2011,
Author = {Sheehan, J. P. and Hershkowitz, N.},
Date-Added = {2020-09-22 13:53:28 -0700},
Date-Modified = {2020-09-22 13:53:41 -0700},
Journal = {Plasma Sources Science and Technology},
Number = {6},
Pages = {1-22},
Title = {Emissive probes},
Volume = {20},
Year = {2011}}
@article{richardson:ptrsl:1903,
Author = {Richardson, O. W.},
Date-Added = {2020-09-22 13:48:49 -0700},
Date-Modified = {2020-09-22 13:49:04 -0700},
Journal = {Philosophical Transactions of the Royal Society of London},
Pages = {497-549},
Title = {The Electrical Conductivity Imparted to a Vacuum by Hot Conductors},
Volume = {201},
Year = {1903}}
@book{smithells:1967,
Author = {Smithells, C. J.},
Date-Added = {2020-09-22 13:20:55 -0700},
Date-Modified = {2020-09-22 13:21:08 -0700},
Edition = {4th},
Publisher = {Plenum Press},
Title = {Metals Reference Book},
Year = {1967}}
@book{wolf:1995,
Date-Added = {2020-09-22 13:20:30 -0700},
Date-Modified = {2020-09-22 13:20:40 -0700},
Editor = {Wolf, B.},
Publisher = {CRC Press},
Title = {Handbook of Ion Sources},
Year = {1995}}
@book{richardson:1921,
Author = {Richardson, O. W.},
Date-Added = {2020-09-21 15:42:34 -0700},
Date-Modified = {2020-09-21 15:42:46 -0700},
Publisher = {Longmans, Green, and Co.},
Title = {Emission of Electricty from Hot Bodies},
Year = {1921}}
@article{kuntz:jtht:2001,
Author = {Kuntz, D. W. and Hassan, B. and Potter, D. L.},
Date-Added = {2020-09-20 15:43:27 -0700},
Date-Modified = {2020-09-20 15:43:41 -0700},
Journal = {Journal of Thermophysics and Heat Transfer},
Number = {2},
Pages = {129-139},
Title = {Predictions of Ablating Hypersonic Vehicles Using an Iterative Coupled Fluid/Thermal Approach},
Volume = {15},
Year = {2001}}
@article{sheridan:pofb:1991,
Author = {Sheridan, T. E. and Goree, J.},
Date-Added = {2020-09-18 16:24:34 -0700},
Date-Modified = {2020-09-18 16:24:50 -0700},
Journal = {Physics of Fluids B: Plasma Physics},
Pages = {2796-2804},
Title = {Collisional plasma sheath model},
Volume = {3},
Year = {1991}}
@article{itakawa:jpcrd:2006,
Author = {Itakawa, Y.},
Date-Added = {2020-09-18 16:21:15 -0700},
Date-Modified = {2020-09-18 16:21:30 -0700},
Journal = {Journal of Physical and Chemical Reference Data},
Number = {1},
Title = {Cross Sections for Electron Collisions with Nitrogen Molecules},
Volume = {35},
Year = {2006}}
@inproceedings{scalabrin:aviation:2007,
Address = {Miami, FL},
Author = {Leonardo C. Scalabrin and Iain D. Boyd},
Booktitle = {39th AIAA Thermophysics Conference},
Date-Added = {2020-09-14 14:35:59 -0700},
Date-Modified = {2020-09-14 14:37:21 -0700},
Month = {June},
Publisher = {{AIAA Paper} 2007-4044},
Title = {Numerical Simulations of the FIRE-II Convective and Radiative Heating Rates},
Year = {2007}}
@techreport{hanquist:afrl:2020,
Author = {Kyle M. Hanquist and Martin E. Liza},
Date-Added = {2020-09-14 13:36:06 -0700},
Date-Modified = {2020-09-14 13:37:01 -0700},
Institution = {Air Force Research Laboratory},
Month = {September},
Title = {Detailed Investigation of Nonequilibrium Effects on Aero-Optics in Hypersonic Flows},
Year = {2020}}
@inproceedings{uribarri:hypersonic:2015,
Address = {Glasgow, Scotland},
Author = {Luke A. Uribarri and Edward H. Allen},
Booktitle = {International Space Planes and Hypersonic Systems and Technologies Conferences},
Date-Added = {2020-09-10 16:03:18 -0700},
Date-Modified = {2020-09-10 16:05:20 -0700},
Keywords = {etc},
Month = {July},
Publisher = {{AIAA Paper} 2015-3674},
Title = {Electron Transpiration Cooling for Hot Aerospace Surfaces},
Year = {2015}}
@misc{hanquist:UTK:2020,
Author = {Kyle M. Hanquist},
Date-Added = {2020-09-09 13:48:16 -0700},
Date-Modified = {2020-09-09 13:49:54 -0700},
Howpublished = {Invited Seminar. Mechanical, Aerospace, and Biomedical Engineering Department, University of Tennessee-Knoxville},
Month = {September},
Title = {Need for Speed: Hypersonic Flight},
Year = {2020}}
@misc{hara:SIAM:2019,
Author = {Kentaro Hara and Kyle M. Hanquist},
Date-Added = {2020-08-21 11:47:32 -0700},
Date-Modified = {2020-08-21 11:48:35 -0700},
Howpublished = {SIAM Conference on Computational Science and Engineering},
Month = {February},
Title = {Verification Test Cases of Grid-Based Direct Kinetic Modeling Framework for Plasma Flows},
Year = {2019}}
@misc{hanquist:PSU:2019,
Author = {Kyle M. Hanquist},
Date-Added = {2020-08-21 11:45:40 -0700},
Date-Modified = {2020-08-21 11:47:24 -0700},
Howpublished = {Invited Seminar. Department of Aerospace Engineering, Penn State University},
Month = {February},
Title = {Modeling of Nonequilibrium Gas and Plasma with Applications to Hypersonics},
Year = {2019}}
@misc{hanquist:UArizona:2018,
Author = {Kyle M. Hanquist},
Date-Added = {2020-08-21 11:45:03 -0700},
Date-Modified = {2020-08-21 11:45:35 -0700},
Howpublished = {Invited Seminar. Department of Aerospace \& Mechanical Engineering, University of Arizona},
Month = {December},
Title = {Modeling of Nonequilibrium Gas and Plasma with Applications to Hypersonics},
Year = {2018}}
@misc{hanquist:UArizona:2019,
Author = {Kyle M. Hanquist},
Date-Added = {2020-08-21 10:11:29 -0700},
Date-Modified = {2020-08-21 10:21:03 -0700},
Howpublished = {Invited Seminar. Department of Aerospace \& Mechanical Engineering, University of Arizona},
Month = {October},
Title = {Aerothermodynamics of Hypersonic Flight and the Importance of Modeling},
Year = {2019}}
@article{kim:jsr:2008,
Author = {Minkwan Kim and Michael Keidar and Iain D. Boyd},
Date-Added = {2020-08-12 16:53:56 -0700},
Date-Modified = {2020-08-12 16:54:57 -0700},
Journal = {Journal of Spacecraft and Rockets},
Number = {6},
Pages = {1223--1229},
Title = {Analysis of an Electromagnetic Mitigation Scheme for Reentry Telemetry Through Plasma},
Volume = {45},
Year = {2008}}
@article{bisek:jsr:2009,
Author = {Nicholas J. Bisek and Iain D. Boyd and Jonathan Poggie},
Date-Added = {2020-08-12 16:51:43 -0700},
Date-Modified = {2020-08-12 16:52:42 -0700},
Journal = {Journal of Spacecraft and Rockets},
Number = {3},
Pages = {568--576},
Title = {Numerical Study of Plasma-Assisted Aerodynamic Control for Hypersonic Vehicles},
Volume = {46},
Year = {2009}}
@book{bethe:1940,
Author = {Bethe, Hans Albrecht and Teller, Edward},
Date-Added = {2020-08-12 15:24:45 -0700},
Date-Modified = {2020-08-12 15:25:31 -0700},
Publisher = {University Microfilms, Incorporated},
Title = {Deviations from thermal equilibrium in shock waves},
Year = {1940}}
@inproceedings{chaudhry:aviation:2020,
Author = {Ross S. Chaudhry and Iain D. Boyd and Graham V. Candler},
Booktitle = {AIAA Aviation and Aeronautics Forum and Exposition},
Date-Added = {2020-08-12 14:59:11 -0700},
Date-Modified = {2020-08-12 15:00:11 -0700},
Month = {June},
Publisher = {{AIAA Paper} 2020-3272},
Title = {Vehicle-Scale Simulations of Hypersonic Flows using the MMT Chemical Kinetics Model},
Year = {2020}}
@inproceedings{chaudhry:scitech:2019,
Address = {San Diego, CA},
Author = {Ross S. Chaudhry and Graham V. Candler},
Booktitle = {AIAA Scitech 2019 Forum},
Date-Added = {2020-08-12 14:57:28 -0700},
Date-Modified = {2020-08-12 14:58:40 -0700},
Month = {January},
Publisher = {{AIAA Paper} 2019-0789},
Title = {Statistical Analyses of Quasiclassical Trajectory Data for Air Dissociation},
Year = {2019}}
@inproceedings{chaudhry:scitech:2020,
Address = {Orlando, FL},
Author = {Ross S. Chaudhry and Iain D. Boyd and Erik Torres and Thomas E. Schwartzentruber and Graham Candler},
Booktitle = {AIAA Scitech 2020 Forum},
Date-Added = {2020-08-12 14:52:40 -0700},
Date-Modified = {2020-08-12 14:57:10 -0700},
Month = {January},
Publisher = {{AIAA Paper} 2020-2191},
Title = {Implementation of a Chemical Kinetics Model for Hypersonic Flows in Air for High-Performance CFD},
Year = {2020}}
@inproceedings{hash:scitech:2007,
Address = {Reno, NV},
Author = {David Hash and Joseph Olejniczak and Michael Wright and Dinesh Prabhu and Maria Pulsonetti Brian Hollis and Peter Gnoffo and Michael Barnhardt and Ioannis Nompelis and Graham Candler},
Booktitle = {45th AIAA Aerospace Sciences Meeting and Exhibit},
Date-Added = {2020-08-12 14:24:12 -0700},
Date-Modified = {2020-08-12 14:26:40 -0700},
Publisher = {{AIAA Paper} 2007-605},
Title = {FIRE II Calculations for Hypersonic Nonequilibrium Aerothermodynamics Code Verification: DPLR, LAURA, and US3D},
Year = {2007}}
@article{candler:jtht:1991,
Author = {Graham V. Candler and Robert W. MacCormack},
Date-Added = {2020-08-12 13:41:50 -0700},
Date-Modified = {2020-08-12 13:44:47 -0700},
Journal = {Journal of Thermophysics and Heat Transfer},
Number = {3},
Pages = {266--273},
Title = {Computation of Weakly Ionized Hypersonic Flows in Thermochemical Nonequilibrium},
Volume = {5},
Year = {1991}}
@book{white:2006,
Address = {New York},
Author = {Frank M. White},
Date-Added = {2020-08-12 11:33:46 -0700},
Date-Modified = {2020-08-12 11:36:08 -0700},
Edition = {Third},
Publisher = {McGraw-Hill},
Title = {Viscous Fluid Flow},
Year = {2006}}
@article{deschenes:jtht:2011,
Author = {Timothy R. Deschenes and Timothy D. Holman and Iain D. Boyd},
Date-Added = {2020-08-12 11:26:58 -0700},
Date-Modified = {2020-08-12 11:28:33 -0700},
Journal = {Journal of Thermophysics and Heat Transfer},
Number = {2},
Pages = {218--227},
Title = {Effects of Rotational Energy Relaxation in a Modular Particle-Continuum Method},
Volume = {25},
Year = {2011}}
@inproceedings{lee:aiaa:1984,
Address = {Snowmass, CO},
Author = {Jong-Hun Lee},
Booktitle = {19th AIAA Thermophysics Conference},
Date-Added = {2020-08-12 11:11:18 -0700},
Date-Modified = {2020-12-11 13:09:51 -0700},
Month = {June},
Pages = {1--18},
Publisher = {{AIAA Paper} 1984-1729},
Title = {Basic governing equations for the flight regimes of aeroassisted orbital transfer vehicles},
Year = {1984}}
@phdthesis{candler:thesis:1988,
Address = {Stanford, California},
Author = {Graham V. Candler},
Date-Added = {2020-08-12 11:05:43 -0700},
Date-Modified = {2020-08-12 11:07:04 -0700},
School = {Stanford University},
Title = {The Computational of Weakly Ionized Flow in Nonequilibrium},
Year = {1988}}
@techreport{gnoffo:nasa:1989,
Address = {Hampton, Virginia},
Author = {Peter A. Gnoffo and R. N. Gupta and J. L. Shinn},
Date-Added = {2020-08-12 11:03:25 -0700},
Date-Modified = {2020-08-12 11:04:52 -0700},
Institution = {NASA Langley Research Center},
Number = {NASA-TP-2867},
Title = {Conservation equations and physical models for hypersonic air flows in thermal and chemical nonequilibrium},
Year = {1989}}
@inproceedings{sutton:aiaa:1998,
Address = {Albuquerque, NM},
Author = {Kenneth Sutton and Peter A. Gnoffo},
Booktitle = {7th AIAA/ASME Joint Thermophysicsand Heat Transfer Conference},
Date-Added = {2020-08-11 17:22:52 -0700},
Date-Modified = {2020-08-11 17:25:54 -0700},
Publisher = {{AIAA Paper} 1998-2575},
Title = {Multi-Component Diffusion with Application To Computational Aerothermodynamics},
Year = {1998}}
@article{wright:aj:2007,
Author = {Wright, Michael J. and Hwang, H. H. and David W. Schwenke},
Date-Added = {2020-08-11 16:45:59 -0700},
Date-Modified = {2020-08-11 16:47:09 -0700},
Journal = {AIAA Journal},
Number = {1},
Pages = {281--288},
Title = {Recommended Collision Integrals for Transport Property Computations, Part 2: Mars and Venus Entries},
Volume = {45},
Year = {2007}}
@article{wright:aj:2005,
Author = {Wright, Michael J. and Bose, D. and Palmer, Grant E. and Levin, E.},
Date-Added = {2020-08-11 16:44:03 -0700},
Date-Modified = {2020-08-11 16:45:40 -0700},
Journal = {AIAA Journal},
Number = {12},
Pages = {2558--2564},
Title = {Recommended Collision Integrals for Transport Property Computations, Part 1: Air Species},
Volume = {43},
Year = {2005}}
@inproceedings{gosse:scitech:2005,
Address = {Reno, NV},
Author = {Ryan Gosse and Graham V. Candler},
Booktitle = {43rd AIAA Aerospace Sciences Meeting \& Exhibit},
Date-Added = {2020-08-10 17:15:23 -0700},
Date-Modified = {2020-08-10 17:16:44 -0700},
Month = {January},
Publisher = {{AIAA Paper} 2005-389},
Title = {Diffusion Flux Modeling: Application to Direct Entry Problems},
Year = {2005}}
@book{vincenti:2002,
Author = {Walter G. Vincenti and Charles H. Kruger, Jr.},
Date-Added = {2020-08-10 16:55:46 -0700},
Date-Modified = {2020-08-10 16:57:14 -0700},
Publisher = {Krieger Publishing Company},
Title = {Introduction to Physical Gas Dynamics},
Year = {2002}}
@article{wilke:jcp:1950,
Author = {C. R. Wilke},
Date-Added = {2020-08-10 15:11:48 -0700},
Date-Modified = {2020-08-10 15:13:33 -0700},
Doi = {10.1063/1.1747673},
Journal = {The Journal of Chemical Physics},
Number = {4},
Pages = {517--519},
Title = {A Viscosity Equation for Gas Mixtures},
Volume = {18},
Year = {1950},
Bdsk-Url-1 = {https://doi.org/10.1063/1.1747673}}
@article{boyd:pf:2007,
Author = {Boyd,Iain D.},
Date-Added = {2020-07-29 14:25:18 -0700},
Date-Modified = {2020-07-29 14:25:31 -0700},
Doi = {10.1063/1.2771662},
Eprint = {https://doi.org/10.1063/1.2771662},
Journal = {Physics of Fluids},
Number = {9},
Pages = {096102},
Title = {Modeling of associative ionization reactions in hypersonic rarefied flows},
Url = {https://doi.org/10.1063/1.2771662},
Volume = {19},
Year = {2007},
Bdsk-Url-1 = {https://doi.org/10.1063/1.2771662}}
@article{bose:jcp:1997,
Author = {Bose,Deepak and Candler,Graham V.},
Date-Added = {2020-07-29 14:14:06 -0700},
Date-Modified = {2020-07-29 14:14:20 -0700},
Doi = {10.1063/1.475132},
Eprint = {https://doi.org/10.1063/1.475132},
Journal = {The Journal of Chemical Physics},
Number = {16},
Pages = {6136-6145},
Title = {Thermal rate constants of the O2+N→NO+O reaction based on the A2′ and A4′ potential-energy surfaces},
Url = {https://doi.org/10.1063/1.475132},
Volume = {107},
Year = {1997},
Bdsk-Url-1 = {https://doi.org/10.1063/1.475132}}
@article{bose:jcp:1996,
Author = {Bose,Deepak and Candler,Graham V.},
Date-Added = {2020-07-29 14:12:39 -0700},
Date-Modified = {2020-07-29 14:12:52 -0700},
Doi = {10.1063/1.471106},
Eprint = {https://doi.org/10.1063/1.471106},
Journal = {The Journal of Chemical Physics},
Number = {8},
Pages = {2825-2833},
Title = {Thermal rate constants of the N2+O→NO+N reaction using ab initio 3A″ and 3A′ potential energy surfaces},
Url = {https://doi.org/10.1063/1.471106},
Volume = {104},
Year = {1996},
Bdsk-Url-1 = {https://doi.org/10.1063/1.471106}}
@article{fernandez:ieee:1993,
Author = {F. A. Fernandez and Y. C. Yong and R. D. Ettinger},
Date-Added = {2020-07-29 12:18:50 -0700},
Date-Modified = {2020-07-29 12:21:12 -0700},
Doi = {10.1109/20.250774},
Journal = {IEEE Transactions on Magnetics},
Month = {March},
Number = {2},
Pages = {1882-1885},
Title = {A simple adaptive mesh generator for 2-D finite element calculations (optical waveguide theory)},
Volume = {29},
Year = {1993},
Bdsk-Url-1 = {https://doi.org/10.1109/20.250774}}
@inproceedings{mani:aiaa:2005,
Address = {Toronto, Ontario Canada},
Author = {Ali Mani and Meng Wang and Parviz Moin},
Booktitle = {36th AIAA Plasmadynamics and Lasers Conference},
Date-Added = {2020-07-29 12:09:48 -0700},
Date-Modified = {2020-07-29 12:13:41 -0700},
Doi = {10.2514/6.2005-4655},
Month = {June},
Publisher = {{AIAA Paper} 2005-4655},
Title = {Computational Study of Aero-Optical Distortion by Turbulent Wake},
Year = {2005},
Bdsk-Url-1 = {https://arc.aiaa.org/doi/10.2514/6.2005-4655}}
@article{robinson:jap:1964,
Author = {Robinson,C. A. and McNab,I. R.},
Date-Added = {2020-07-28 12:43:35 -0700},
Date-Modified = {2020-07-28 12:43:57 -0700},
Doi = {10.1063/1.1713730},
Eprint = {https://doi.org/10.1063/1.1713730},
Journal = {Journal of Applied Physics},
Number = {6},
Pages = {1742-1745},
Title = {Viscosity of Partially Ionized Gaseous Cesium},
Url = {https://doi.org/10.1063/1.1713730},
Volume = {35},
Year = {1964},
Bdsk-Url-1 = {https://doi.org/10.1063/1.1713730}}
@article{barker:pf:1964,
Author = {Barker,J. A. and Fock,W. and Smith,F.},
Date-Added = {2020-07-28 11:35:30 -0700},
Date-Modified = {2020-07-28 11:35:43 -0700},
Doi = {10.1063/1.1711301},
Eprint = {https://aip.scitation.org/doi/pdf/10.1063/1.1711301},
Journal = {The Physics of Fluids},
Number = {6},
Pages = {897-903},
Title = {Calculation of Gas Transport Properties and the Interaction of Argon Atoms},
Url = {https://aip.scitation.org/doi/abs/10.1063/1.1711301},
Volume = {7},
Year = {1964},
Bdsk-Url-1 = {https://aip.scitation.org/doi/abs/10.1063/1.1711301},
Bdsk-Url-2 = {https://doi.org/10.1063/1.1711301}}
@techreport{gupta:nasa:1990,
Author = {Roop N. Gupta and Jerrold M. Yos and Richard A. Thompson and Kam-Pui Lee},
Date-Added = {2020-07-28 11:26:50 -0700},
Date-Modified = {2020-07-28 11:28:42 -0700},
Institution = {NASA Langley Research Center},
Number = {NASA-RP-1232},
Title = {A review of reaction rates and thermodynamic and transport properties for an 11-species air model for chemical and thermal nonequilibrium calculations to 30000 K},
Year = {1990}}
@inproceedings{alkandry:scitech:2013,
Address = {Grapevine, TX},
Author = {Hicham Alkandry and Iain D. Boyd and Alexandre Martin},
Booktitle = {51st AIAA Aerospace Sciences Meeting including the New Horizons Forum and Aerospace Exposition},
Date-Added = {2020-07-28 11:23:26 -0700},
Date-Modified = {2020-07-28 11:25:54 -0700},
Doi = {10.2514/6.2013-303},
Month = {January},
Publisher = {{AIAA Paper} 2013-0303},
Title = {Comparison of Models for Mixture Transport Properties for Numerical Simulations of Ablative Heat-Shields},
Year = {2013},
Bdsk-Url-1 = {https://doi.org/10.2514/6.2013-303}}