-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1783 lines (1626 loc) · 100 KB
/
Copy pathindex.html
File metadata and controls
1783 lines (1626 loc) · 100 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>yanagisea | Research Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@400;700&family=Inter:wght@300;400;600;700&family=JetBrains+Mono&display=swap');
body {
font-family: 'Inter', sans-serif;
background-color: #171c24;
color: #e2e8f0;
font-size: 16px;
}
/* Font size scaling */
.text-xs {
font-size: 0.8125rem !important;
}
.text-sm {
font-size: 0.9375rem !important;
}
.text-\[10px\] {
font-size: 0.75rem !important;
}
.text-\[15px\] {
font-size: 1rem !important;
}
.text-3xl {
font-size: 2rem !important;
}
.serif {
font-family: 'Noto Serif KR', serif;
}
.mono {
font-family: 'JetBrains Mono', monospace;
}
/* Tab Styling */
.tab-btn {
transition: 0.2s;
border-bottom: 2px solid transparent;
color: #8b9eb3;
font-weight: 500;
}
.tab-btn.active {
border-bottom-color: #22d3ee;
color: #f1f5f9;
font-weight: 700;
}
.tab-content {
display: none;
}
.tab-content.active {
display: block;
animation: fadeIn 0.4s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.profile-card {
background: linear-gradient(135deg, #1e3a5f 0%, #1a2744 100%);
border: 1px solid #2d4a6f;
border-radius: 12px;
box-shadow: 0 8px 32px -4px rgba(0, 0, 0, 0.5);
}
.profile-card h1 {
color: #f1f5f9 !important;
}
.profile-card p {
color: #e2e8f0 !important;
}
.profile-card .text-slate-400 {
color: #a5c3e8 !important;
}
.profile-card .text-slate-500 {
color: #a5c3e8 !important;
}
.profile-card .text-slate-600 {
color: #e2e8f0 !important;
}
.profile-card .text-zinc-400 {
color: #9cb4cf !important;
}
.profile-card a.text-slate-400 {
color: #a5c3e8 !important;
}
.profile-card a:hover {
color: #f1f5f9 !important;
}
/* Dark theme overrides */
.bg-white {
background-color: #1e2a3a !important;
}
.bg-slate-50 {
background-color: #1e2a3a !important;
}
.bg-slate-100 {
background-color: #243447 !important;
}
.border-slate-100 {
border-color: #2d4259 !important;
}
.border-slate-200 {
border-color: #3a536e !important;
}
.text-slate-900 {
color: #f1f5f9 !important;
}
.text-slate-800 {
color: #e2e8f0 !important;
}
.text-slate-700 {
color: #c5d4e4 !important;
}
.text-slate-600 {
color: #8fa4bc !important;
}
.text-slate-500 {
color: #8fa4bc !important;
}
.text-slate-400 {
color: #8fa4bc !important;
}
.hover\:text-slate-900:hover {
color: #f1f5f9 !important;
}
.before\:via-slate-300::before {
--tw-gradient-via: #3a536e !important;
}
/* Link colors for dark mode */
a.text-blue-600 {
color: #67b8f7 !important;
}
a:hover {
color: #93d5ff !important;
}
.text-indigo-600 {
color: #93b4ff !important;
}
.text-green-600 {
color: #6ee7b7 !important;
}
.text-green-700 {
color: #34d399 !important;
}
.text-amber-600 {
color: #fbbf24 !important;
}
/* Accent colors for variation */
.border-indigo-500 {
border-color: #6366f1 !important;
}
.text-indigo-500 {
color: #818cf8 !important;
}
.text-cyan-500 {
color: #22d3ee !important;
}
.text-teal-500 {
color: #14b8a6 !important;
}
/* Section accent colors */
.section-cyan h2 {
color: #22d3ee !important;
}
.section-cyan .section-card {
border-left: 3px solid #22d3ee;
}
.section-teal h2 {
color: #2dd4bf !important;
}
.section-teal .section-card {
border-left: 3px solid #2dd4bf;
}
.section-violet h2 {
color: #a78bfa !important;
}
.section-violet .section-card {
border-left: 3px solid #a78bfa;
}
.section-rose h2 {
color: #fb7185 !important;
}
.section-rose .section-card {
border-left: 3px solid #fb7185;
}
.section-amber h2 {
color: #fbbf24 !important;
}
.section-amber .section-card {
border-left: 3px solid #fbbf24;
}
.section-emerald h2 {
color: #34d399 !important;
}
.section-emerald .section-card {
border-left: 3px solid #34d399;
}
.section-sky h2 {
color: #38bdf8 !important;
}
.section-sky .section-card {
border-left: 3px solid #38bdf8;
}
/* Category headers with color indicators */
.category-header {
position: relative;
padding-left: 12px;
}
.category-header::before {
content: '';
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
width: 4px;
height: 70%;
border-radius: 2px;
}
.category-aero::before {
background: #22d3ee;
}
.category-hyper::before {
background: #f97316;
}
.category-ice::before {
background: #60a5fa;
}
.category-noise::before {
background: #a78bfa;
}
.category-standard::before {
background: #fbbf24;
}
.category-other::before {
background: #94a3b8;
}
.category-compute::before {
background: #34d399;
}
/* Publication card backgrounds for dark mode */
.bg-indigo-50\/50 {
background-color: rgba(79, 122, 200, 0.12) !important;
}
.bg-green-50\/50 {
background-color: rgba(16, 185, 129, 0.12) !important;
}
.bg-amber-50\/30 {
background-color: rgba(217, 119, 6, 0.12) !important;
}
.bg-indigo-50 {
background-color: rgba(79, 122, 200, 0.12) !important;
}
.bg-green-50 {
background-color: rgba(16, 185, 129, 0.12) !important;
}
.bg-amber-50 {
background-color: rgba(217, 119, 6, 0.12) !important;
}
/* Publication card borders for dark mode */
.border-indigo-100 {
border-color: rgba(99, 149, 230, 0.35) !important;
}
.border-green-100 {
border-color: rgba(52, 211, 153, 0.35) !important;
}
.border-amber-100 {
border-color: rgba(251, 191, 36, 0.35) !important;
}
.hover\:border-indigo-300:hover {
border-color: rgba(129, 170, 243, 0.6) !important;
}
.hover\:border-green-300:hover {
border-color: rgba(110, 231, 183, 0.6) !important;
}
.hover\:border-slate-300:hover {
border-color: #64748b !important;
}
/* Publication badges for dark mode */
.bg-indigo-100 {
background-color: rgba(129, 140, 248, 0.25) !important;
}
.bg-green-100 {
background-color: rgba(74, 222, 128, 0.25) !important;
}
.bg-amber-100 {
background-color: rgba(251, 191, 36, 0.25) !important;
}
.text-indigo-600.rounded-full,
span.text-indigo-600 {
color: #c7d2fe !important;
}
.text-green-700.rounded-full,
span.text-green-700 {
color: #bbf7d0 !important;
}
/* Text colors for publication content */
.group-hover\:text-indigo-600:hover {
color: #a5b4fc !important;
}
.group-hover\:text-green-700:hover {
color: #86efac !important;
}
.group-hover\:text-blue-600:hover {
color: #93c5fd !important;
}
/* Domestic conference section header */
h3.text-slate-600 {
color: #94a3b8 !important;
}
</style>
</head>
<body class="py-12 px-4 md:py-20">
<div class="max-w-4xl mx-auto">
<header class="profile-card p-8 mb-8">
<div class="flex flex-col md:flex-row items-center gap-8">
<div
class="w-32 h-32 md:w-40 md:h-40 bg-slate-100 rounded-2xl overflow-hidden border border-slate-200 shrink-0">
<img src="프로필사진_저용량.png" alt="Profile" class="w-full h-full object-cover">
</div>
<div class="text-center md:text-left flex-1">
<h1 class="text-3xl font-extrabold tracking-tight text-slate-900 mb-1">Sea Ryu</h1>
<p class="text-cyan-400 text-sm font-medium mb-2 italic">"CFD · Aerodynamic Optimisation · Noise ·
Standardisation & Policy"</p>
<div class="flex flex-wrap justify-center md:justify-start gap-2 mb-3">
<span
class="bg-blue-900/50 px-3 py-1 rounded-full text-blue-200 border border-blue-700 text-xs">Aerospace
Engineering</span>
<span
class="bg-amber-900/50 px-3 py-1 rounded-full text-amber-200 border border-amber-700 text-xs">Standardisation
& Policy</span>
</div>
<p class="serif text-sm text-slate-500 mb-1 tracking-wide">
류세아 · <ruby>柳<rt>やなぎ</rt>世<rt>せ</rt>亜<rt>あ</rt></ruby>(リュー・セア)
</p>
<p class="serif text-xs text-slate-400 mb-4 tracking-wide">
<span class="opacity-70 text-xs mr-1 italic text-zinc-400 font-sans">雅号:</span>
<ruby>彩<rt>さい</rt>霞<rt>か</rt></ruby>
<span class="text-xs text-slate-400 ml-1">(Saika, 채하)</span>
</p>
<p class="text-slate-600 font-medium leading-snug mb-5">
Ph.D. Candidate, Aerospace Information Engineering<br>
<span class="text-sm text-slate-400">Researcher, Aerospace Design·Airworthiness
Institute</span><br>
<span class="text-sm text-slate-400">Konkuk University, Seoul, Korea</span>
</p>
<div class="flex justify-center md:justify-start gap-5 text-xl">
<a href="https://github.com/yanagisea" title="GitHub"
class="text-slate-400 hover:text-slate-900"><i class="fab fa-github"></i></a>
<a href="https://scholar.google.com/citations?user=WPntuxgAAAAJ&hl=ko" title="Google Scholar"
class="text-slate-400 hover:text-blue-600"><i class="fas fa-graduation-cap"></i></a>
<a href="https://orcid.org/0009-0008-0765-9752" title="ORCID"
class="text-slate-400 hover:text-green-500"><i class="fab fa-orcid"></i></a>
<a href="mailto:stardong@konkuk.ac.kr" title="Email"
class="text-slate-400 hover:text-red-500"><i class="fas fa-envelope"></i></a>
</div>
</div>
</div>
</header>
<nav
class="flex justify-center gap-2 md:gap-4 lg:gap-6 border-b border-slate-200 mb-10 text-xs md:text-sm flex-wrap items-center">
<button class="tab-btn pb-3 active" onclick="showTab(event, 'home')">Home</button>
<button class="tab-btn pb-3" onclick="showTab(event, 'research')">Research</button>
<button class="tab-btn pb-3" onclick="showTab(event, 'awards')">Awards</button>
<button class="tab-btn pb-3" onclick="showTab(event, 'skills')">Skills</button>
<button class="tab-btn pb-3" onclick="showTab(event, 'career')">Career</button>
<button class="tab-btn pb-3" onclick="showTab(event, 'publications')">Publications</button>
<button class="tab-btn pb-3" onclick="showTab(event, 'resources')">Resources</button>
<button class="tab-btn pb-3" onclick="showTab(event, 'photos')">Photos</button>
<div class="relative">
<button class="tab-btn pb-3 more-btn" onclick="toggleMoreMenu(event)">···</button>
<div id="more-menu" class="hidden absolute right-0 top-full mt-1 bg-slate-800 border border-slate-600 rounded-lg shadow-xl z-50 min-w-[120px]">
<button class="tab-btn w-full text-left px-4 py-2 hover:bg-slate-700 rounded-t-lg" onclick="showTabFromMore(event, 'politics')">Politics</button>
<button class="tab-btn w-full text-left px-4 py-2 hover:bg-slate-700 rounded-b-lg" onclick="showTabFromMore(event, 'news')">News</button>
</div>
</div>
</nav>
<main>
<div id="home" class="tab-content active space-y-12">
<!-- Quick Stats -->
<section>
<div class="grid grid-cols-2 md:grid-cols-4 gap-4 text-center">
<div class="p-4 bg-white border border-slate-100 rounded-xl">
<div id="stat-projects" class="text-2xl font-bold text-cyan-400">-</div>
<div class="text-xs text-slate-500 uppercase tracking-wider">Projects</div>
</div>
<div class="p-4 bg-white border border-slate-100 rounded-xl">
<div id="stat-publications" class="text-2xl font-bold text-violet-400">-</div>
<div class="text-xs text-slate-500 uppercase tracking-wider">Publications</div>
</div>
<div class="p-4 bg-white border border-slate-100 rounded-xl">
<div id="stat-years" class="text-2xl font-bold text-emerald-400">-</div>
<div class="text-xs text-slate-500 uppercase tracking-wider">Years Research</div>
</div>
<div class="p-4 bg-white border border-slate-100 rounded-xl">
<div id="stat-awards" class="text-2xl font-bold text-amber-400">-</div>
<div class="text-xs text-slate-500 uppercase tracking-wider">Awards</div>
</div>
</div>
</section>
<section class="section-cyan">
<h2 class="text-xs uppercase tracking-[0.2em] font-bold mb-5">Biography</h2>
<p class="text-slate-700 leading-relaxed text-[15px]">
Focusing on <strong>Computational Fluid Dynamics(CFD)</strong>.
My research involves aerodynamic analysis and shape optimisation for UAM and flight vehicles,
utilising <strong>Adjoint methods</strong> to improve design efficiency.
My background includes <strong>aircraft system design</strong> and aerodynamic analysis for
various flight vehicles, including launch systems.
</p>
</section>
<section class="section-teal">
<h2 class="text-xs uppercase tracking-[0.2em] font-bold mb-5">Research Interests</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 text-sm">
<div class="p-4 bg-white border border-slate-100 rounded-lg">
<h4 class="font-bold text-slate-400 text-xs mb-2 uppercase">Computational Methods</h4>
<p class="text-slate-700 font-medium">CFD, Adjoint Based Optimisation, Aeroacoustics,
Rarefied Gas Dynamics, Quantum Computing
Algorithm</p>
</div>
<div class="p-4 bg-white border border-slate-100 rounded-lg">
<h4 class="font-bold text-slate-400 text-xs mb-2 uppercase">Aerodynamics</h4>
<p class="text-slate-700 font-medium">Hypersonic Flight Vehicle, Aerodynamic Design &
Optimisation</p>
</div>
<div class="p-4 bg-white border border-slate-100 rounded-lg">
<h4 class="font-bold text-slate-400 text-xs mb-2 uppercase">Applications</h4>
<p class="text-slate-700 font-medium">UAM, Launch Vehicles, Aeroacoustics, Anti/De-icing</p>
</div>
<div class="p-4 bg-white border border-slate-100 rounded-lg">
<h4 class="font-bold text-slate-400 text-xs mb-2 uppercase">Languages</h4>
<p class="text-slate-700 font-medium">Korean (Native), Japanese, English</p>
</div>
</div>
</section>
</div>
<div id="research" class="tab-content">
<div class="space-y-8 section-violet">
<h2 class="text-xs uppercase tracking-[0.2em] font-bold mb-5">Research Experience
</h2>
<!-- Aerodynamics -->
<div class="mb-8">
<h3
class="category-header category-aero font-bold text-cyan-400 text-sm mb-4 border-b border-slate-100 pb-2">
Project on
Aerodynamics</h3>
<div class="grid gap-4 sortable-projects">
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2018">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Fighter Backward Body Analysis</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">Korea Aerospace Industries</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2017-2018</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Korean Fighter Program (KF-X/KF-21) Development Project</li>
<li>Generate Aerodynamic DB of Various Backward Body Configuration</li>
<li>Capture of Drag induced by jet plume and Nozzles</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2018">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Fighter Nonlinear Aerodynamics</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">Korea Aerospace Industries</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2017-2018</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Korean Fighter Program (KF-X/KF-21) Development Project</li>
<li>Nonlinear Aerodynamic analysis at High AOA and AOS</li>
<li>Figure out Aerodynamic Coefficient of Delta Wing and fighters</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2014">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Development of Sports-Class Light
Aircraft</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">KAIA / MOLIT</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2010-2014</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>2D and 3D Flap analysis about Light Sport Aircraft (KLA-100)</li>
<li>Generate of Aerodynamics DB</li>
</ul>
</div>
</div>
</div>
<!-- Super/Hypersonic -->
<div class="mb-8">
<h3
class="category-header category-hyper font-bold text-orange-400 text-sm mb-4 border-b border-slate-100 pb-2">
Project on
Super/Hypersonic</h3>
<div class="grid gap-4 sortable-projects">
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2018">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Jet Vane Analysis & Embedded Training
</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">LIG Nex1</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2016-2018</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Analysis of Jet Vane</li>
<li>Force and Momentum analysis due to Vane deflections</li>
<li>Development of embedded training program for airborne weapons</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2015">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Fluid-Thermal Analysis of Hypersonic
Air Intake</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">ADD</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2013-2015</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>ADD Basic Research Project</li>
<li>Aerodynamic Analysis of Hypersonic Air Intake</li>
<li>Analysis of Fluid-Thermal Interaction and Figure out the optimum design</li>
<li>Development of Aero-Thermal Analysis Tool</li>
</ul>
</div>
</div>
</div>
<!-- Icing -->
<div class="mb-8">
<h3
class="category-header category-ice font-bold text-sky-400 text-sm mb-4 border-b border-slate-100 pb-2">
Project on
Icing</h3>
<div class="grid gap-4 sortable-projects">
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2024">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Aircraft Pitot-Static Tube Localisation
</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">DAPA / YONGBEEAT</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2021-2024</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Weapon System Component Localisation Development Support Project</li>
<li>Comparison of aerodynamic analysis with theoretical values (pressure, flow
speed)</li>
<li>Validation against wind tunnel test results</li>
<li>Icing simulation using CFD results</li>
<li>Heat transfer analysis for anti-icing design optimisation</li>
</ul>
</div>
</div>
</div>
<!-- Noise -->
<div class="mb-8">
<h3
class="category-header category-noise font-bold text-violet-400 text-sm mb-4 border-b border-slate-100 pb-2">
Project on
Noise</h3>
<div class="grid gap-4 sortable-projects">
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="9999">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Drone Noise Data Management for
Visualisation</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">KISTI</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2025 - Present</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Drone Noise Measurement and Evaluation</li>
<li>Computational Aeroacoustic Analysis</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="9998">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Risk-Based UAM Flight Procedure &
Corridor Design Automation Technology Development</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">KAIA / MOLIT</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2024 - Present</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Part of K-UAM Safe Operation Core Technology Development Project</li>
<li>UAM Computational Aeroacoustic Analysis</li>
<li>Noise Prediction, Evaluation and Standardisation</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="9998">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">UAM Cluster Development Research
Planning</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">Ulsan Metropolitan City</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2024 - Present</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Part of K-UAM Safe Operation Core Technology Development Project</li>
<li>Urban Air Mobility Operation Concept Study for Ulsan City</li>
<li>Development of Concept of Operations (ConOps)</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2024">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Standardisation of Civil-Military
Dual-Use Drone Noise Rating and Test Evaluation Procedures</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">DTaQ</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2022-2024</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Civil/Military Dual-Use Drone Noise Rating and Test Evaluation Procedures</li>
</ul>
</div>
</div>
</div>
<!-- Standardisation & Policy -->
<div class="mb-8">
<h3
class="category-header category-standard font-bold text-amber-400 text-sm mb-4 border-b border-slate-100 pb-2">
Standardisation
& Policy</h3>
<div class="grid gap-4 sortable-projects">
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="9998">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">UAM Cluster Development Research
Planning</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">Ulsan Metropolitan City</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2024 - Present</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Urban Air Mobility Operation Concept Study for Ulsan City</li>
<li>Development of Concept of Operations (ConOps)</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2024">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Standardisation of Civil-Military
Dual-Use Drone Noise Rating and Test Evaluation Procedures</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-500">DTaQ</span>
<span class="text-xs text-slate-300">•</span>
<span class="text-xs text-slate-400 font-mono">2022-2024</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Civil/Military Dual-Use Drone Noise Rating and Test Evaluation Procedures</li>
</ul>
</div>
</div>
</div>
<!-- Other -->
<div class="mb-8">
<h3
class="category-header category-other font-bold text-slate-400 text-sm mb-4 border-b border-slate-100 pb-2">
Other Projects
</h3>
<div class="grid gap-4 sortable-projects">
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="2020">
<div class="mb-3">
<h4 class="font-bold text-slate-800 text-sm">Industrial UAV Professional Training
</h4>
<div class="flex items-center gap-2 mt-1">
<span class="text-xs text-slate-400 font-mono">2018 - 2020</span>
</div>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Phase 1 & 2: Professional personnel training for industrial unmanned aerial
vehicles</li>
</ul>
</div>
</div>
</div>
<!-- Computing & Optimization -->
<div class="mb-8">
<h3
class="category-header category-compute font-bold text-emerald-400 text-sm mb-4 border-b border-slate-100 pb-2">
Research on
Computing & Optimisation</h3>
<div class="grid gap-4 sortable-projects">
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="9999">
<div class="flex flex-col md:flex-row md:items-center justify-between mb-2">
<h4 class="font-bold text-slate-800 text-sm">Rarefied Gas & Hypersonic Design</h4>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>DSMC Code Development (1D and 2D) and Study with SPARTA</li>
<li>Development of Hypersonic Aerodynamic Design Tool</li>
<li>Study on Hypersonic Aerodynamics and Re-entry Vehicles</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="9999">
<div class="flex flex-col md:flex-row md:items-center justify-between mb-2">
<h4 class="font-bold text-slate-800 text-sm">Parallel & Quantum Computing</h4>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Study on MPI, OpenMP, CUDA, OpenACC, GPGPU, Hybrid Computing</li>
<li>CFD Acceleration with Quantum Computing algorithm development</li>
</ul>
</div>
<div class="p-5 bg-white border border-slate-100 rounded-xl" data-date="9999">
<div class="flex flex-col md:flex-row md:items-center justify-between mb-2">
<h4 class="font-bold text-slate-800 text-sm">Optimisation</h4>
</div>
<ul class="list-disc list-inside text-xs text-slate-600 space-y-1">
<li>Aerodynamic Optimisation</li>
<li>Multidisciplinary Optimisation</li>
<li>Adjoint Method</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="awards" class="tab-content section-amber">
<h2 class="text-xs uppercase tracking-[0.2em] font-bold mb-5">Awards & Honors</h2>
<div class="space-y-4">
<div class="flex items-start gap-4 p-4 border-l-2 border-indigo-500 bg-slate-50">
<div class="text-indigo-500 mt-1"><i class="fas fa-trophy"></i></div>
<div>
<h3 class="font-bold text-slate-800 text-sm">Grand Prize, Creative Design Competition</h3>
<div class="text-xs text-slate-500 mb-1">Konkuk University | 2010</div>
<p class="text-xs text-slate-600 italic">Subject: Cross-rotating Helicopter</p>
</div>
</div>
<div class="flex items-start gap-4 p-4 border-l-2 border-slate-300 bg-white">
<div class="text-slate-400 mt-1"><i class="fas fa-award"></i></div>
<div>
<h3 class="font-bold text-slate-800 text-sm">Selection (Ip-Seon), 3rd Creative Design
Competition
</h3>
<div class="text-xs text-slate-500 mb-1">Konkuk University | 2011</div>
<p class="text-xs text-slate-600 italic">Subject: Design concept of Flying Wing using
Variable Wing
and TVC</p>
</div>
</div>
<div class="flex items-start gap-4 p-4 border-l-2 border-amber-600 bg-amber-50/30">
<div class="text-amber-600 mt-1"><i class="fas fa-medal"></i></div>
<div>
<h3 class="font-bold text-slate-800 text-sm">Bronze Prize, 4th Creative Design Competition
</h3>
<div class="text-xs text-slate-500 mb-1">Konkuk University | 2012</div>
<p class="text-xs text-slate-600 italic">Subject: Coaxial</p>
</div>
</div>
</div>
</div>
<div id="skills" class="tab-content section-emerald">
<h2 class="text-xs uppercase tracking-[0.2em] font-bold mb-5">Skills & Techniques</h2>
<div class="grid grid-cols-1 md:grid-cols-2 gap-6">
<div>
<h3 class="text-sm font-bold text-slate-700 mb-3">Experimental & Analysis</h3>
<div class="space-y-3">
<div class="bg-white p-3 rounded-lg border border-slate-100">
<div class="text-xs font-bold text-slate-500 mb-1 uppercase">Wind Tunnel Test</div>
<p class="text-xs text-slate-700">Subsonic/Supersonic Wind Tunnel test design and
analysis</p>
</div>
<div class="bg-white p-3 rounded-lg border border-slate-100">
<div class="text-xs font-bold text-slate-500 mb-1 uppercase">CFD Tools</div>
<p class="text-xs text-slate-700">ANSYS, OpenFOAM, SU2 and various open source/in-house
tools
</p>
</div>
<div class="bg-white p-3 rounded-lg border border-slate-100">
<div class="text-xs font-bold text-slate-500 mb-1 uppercase">DSMC Tools</div>
<p class="text-xs text-slate-700">SPARTA and various open source/in-house tools</p>
</div>
</div>
</div>
<div>
<h3 class="text-sm font-bold text-slate-700 mb-3">Computing & Software</h3>
<div class="space-y-3">
<div class="bg-white p-3 rounded-lg border border-slate-100">
<div class="text-xs font-bold text-slate-500 mb-1 uppercase">Programming Languages</div>
<p class="text-xs text-slate-700 font-mono">FORTRAN, C, C++, Python, Objective C, Swift
</p>
</div>
<div class="bg-white p-3 rounded-lg border border-slate-100">
<div class="text-xs font-bold text-slate-500 mb-1 uppercase">Parallel Computation</div>
<p class="text-xs text-slate-700">MPI, OpenMP, CUDA, OpenACC and Hybrid parallel
computation</p>
</div>
<div class="bg-white p-3 rounded-lg border border-slate-100">
<div class="text-xs font-bold text-slate-500 mb-1 uppercase">Engineering Software</div>
<p class="text-xs text-slate-700">MATLAB, Mathematica, Tecplot, PARAVIEW, CATIA,
AUTOCAD,
Fusion360</p>
</div>
<div class="bg-white p-3 rounded-lg border border-slate-100">
<div class="text-xs font-bold text-slate-500 mb-1 uppercase">Quantum & AI</div>
<p class="text-xs text-slate-700">IBMQ, Amazon AWS, Artificial Intelligence Introductory
Course
(WISET/KOSSA)</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="career" class="tab-content section-rose">
<h2 class="text-xs uppercase tracking-[0.2em] font-bold mb-5">Career Timeline</h2>
<div
class="space-y-8 relative before:absolute before:inset-0 before:ml-5 before:-translate-x-px md:before:mx-auto md:before:translate-x-0 before:h-full before:w-0.5 before:bg-gradient-to-b before:from-transparent before:via-slate-300 before:to-transparent">
<!-- Item: PhD (2017 - Present) -->
<div
class="relative flex items-center justify-between md:justify-normal md:odd:flex-row-reverse group is-active">
<div
class="flex items-center justify-center w-10 h-10 rounded-full border border-white bg-slate-50 shadow shrink-0 md:order-1 md:group-odd:-translate-x-1/2 md:group-even:translate-x-1/2">
<i class="fas fa-flask text-slate-500 text-sm"></i>
</div>
<div
class="w-[calc(100%-4rem)] md:w-[calc(50%-2.5rem)] p-4 rounded-xl border border-slate-100 bg-white shadow-sm">
<div class="flex items-center justify-between space-x-2 mb-1">
<div class="font-bold text-slate-700">Konkuk University</div>
<time class="font-mono text-xs text-slate-400">2017.08 - Present</time>
</div>
<div class="text-slate-500 text-sm italic mb-2">Ph.D. Candidate & Research Assistant</div>
<div class="text-slate-600 text-sm leading-snug">
Aerospace Information Engineering. Focus on Hypersonic CFD & Adjoint-based Shape
Optimisation.<br>
<span class="text-xs text-slate-400">Advisor: Prof. Sangho Kim · GPA: 4.04/4.5</span>
</div>
</div>
</div>
<!-- Item: ISO/TC 20/SC 16 (2026 ~ Present) -->
<div
class="relative flex items-center justify-between md:justify-normal md:odd:flex-row-reverse group is-active">
<div
class="flex items-center justify-center w-10 h-10 rounded-full border border-white bg-slate-50 shadow shrink-0 md:order-1 md:group-odd:-translate-x-1/2 md:group-even:translate-x-1/2">
<i class="fas fa-globe text-slate-500 text-sm"></i>
</div>
<div
class="w-[calc(100%-4rem)] md:w-[calc(50%-2.5rem)] p-4 rounded-xl border border-slate-100 bg-white shadow-sm">
<div class="flex items-center justify-between space-x-2 mb-1">
<div class="font-bold text-slate-700">ISO/TC 20/SC 16</div>
<time class="font-mono text-xs text-slate-400">2026 ~ Present</time>
</div>
<div class="text-slate-500 text-sm italic mb-2">Expert</div>
<div class="text-slate-600 text-sm leading-snug">
<span class="block">International standardization expert</span>
<span class="block mt-0.5 text-[11px] leading-tight text-slate-400">ISO/TC 20(Aircraft and space vehicles)/SC 16(Uncrewed aircraft systems)</span>
</div>
</div>
</div>
<!-- Item: Konkuk University (2024 - Present) -->
<div
class="relative flex items-center justify-between md:justify-normal md:odd:flex-row-reverse group is-active">
<div
class="flex items-center justify-center w-10 h-10 rounded-full border border-white bg-slate-50 shadow shrink-0 md:order-1 md:group-odd:-translate-x-1/2 md:group-even:translate-x-1/2">
<i class="fas fa-building text-slate-500 text-sm"></i>
</div>
<div
class="w-[calc(100%-4rem)] md:w-[calc(50%-2.5rem)] p-4 rounded-xl border border-slate-100 bg-white shadow-sm">
<div class="flex items-center justify-between space-x-2 mb-1">
<div class="font-bold text-slate-700">Konkuk University</div>
<time class="font-mono text-xs text-slate-400">2024.10 - Present</time>
</div>