@@ -2,8 +2,8 @@ import React from 'react';
22import Layout from '@theme/Layout' ;
33import styles from './styles.module.css' ; // CSS Styling
44
5- // Define here the publications
6- export const publications = [
5+ // Define here the flightstack publications
6+ export const flightstack_publications = [
77 {
88 id : '2025-pub1' ,
99 authors : 'M. Gramuglia, G. M. Kumar, G. A. Orlando, and A. L\'Afflitto' ,
@@ -12,33 +12,37 @@ export const publications = [
1212 conference : 'AIAA SciTech Forum, Orlando, FL, January 2025' ,
1313 } ,
1414 {
15- id : '2024-pub3 ' ,
15+ id : '2024-pub1 ' ,
1616 authors : 'M. Gramuglia, G. M. Kumar, and A. L\'Afflitto' ,
1717 title : 'Potential and Challenges for a Certified Application of Model Reference Adaptive Control to Aerial Vehicles' ,
1818 link : 'https://lafflitto.com/Documents/LAfflitto_Potential_MRAC_Certification.pdf' ,
1919 conference : 'IEEE TechDefense, Naples, Italy, November 2024' ,
2020 } ,
21+ ] ;
22+
23+ // Define here the simulation publications (PyChrono related)
24+ export const simulation_publications = [
25+ {
26+ id : '2024-sim3' ,
27+ authors : 'M. Gramuglia, G. M. Kumar, and A. L\'Afflitto' ,
28+ title : 'Adaptive control for hybrid dynamical systems with user-defined rate of convergence' ,
29+ link : 'https://lafflitto.com/Documents/LAfflitto_Two_Layer_Hybrid_MRAC.pdf' ,
30+ conference : 'Journal of the Franklin Institute - Vol. 361, no. 9, Apr. 2024, pp. 106854' ,
31+ } ,
2132 {
22- id : '2024-pub2 ' ,
33+ id : '2024-sim2 ' ,
2334 authors : 'M. Gramuglia, G. M. Kumar, and A. L\'Afflitto' ,
2435 title : 'Two-Layer Adaptive Funnel MRAC with Applications to the Control of Multi-Rotor UAVs' ,
2536 link : 'https://lafflitto.com/Documents/LAfflitto_RoMoCo_2024.pdf' ,
2637 conference : 'IEEE RoMoCo, Poznań, Poland, July 2024' ,
2738 } ,
2839 {
29- id : '2024-pub1 ' ,
40+ id : '2024-sim1 ' ,
3041 authors : 'M. Gramuglia, G. M. Kumar, and A. L\'Afflitto' ,
3142 title : 'A Hybrid Model Reference Adaptive Control System for Multi-Rotor Unmanned Aerial Vehicles' ,
3243 link : 'https://lafflitto.com/Documents/LAfflitto_X8_Hybrid_MRAC_Control_AIAA_Conference.pdf' ,
3344 conference : 'AIAA SciTech Forum, Orlando, FL, January 2024' ,
3445 } ,
35- {
36- id : '2022-pub1' ,
37- authors : 'J. A. Marshall, G. I. Carter, and A. L\'Afflitto' ,
38- title : 'Model Reference Adaptive Control for Prescribed Performance and Longitudinal Control of a Tail-Sitter UAV' ,
39- link : 'https://lafflitto.com/Documents/LAfflitto_MRAC_PP_Quadbiplane.pdf' ,
40- conference : 'AIAA SciTech Forum, San Diego, CA, January 2022' ,
41- } ,
4246] ;
4347
4448function References ( ) {
@@ -49,10 +53,11 @@ function References() {
4953
5054 < div className = { styles . card } >
5155 < section >
52- < h2 > 📑 Relevant Journal and Conference Papers</ h2 >
53- < ol >
54- { publications . map ( ( pub , index ) => (
56+ < h2 > 📑 Flightstack-related Relevant Journal and Conference Papers</ h2 >
57+ < ol className = { styles . customList } >
58+ { flightstack_publications . map ( ( pub , index ) => (
5559 < li key = { pub . id } id = { pub . id } >
60+ < span className = { styles . index } > F.{ index + 1 } </ span >
5661 < strong > { pub . authors } </ strong >
5762 < br />
5863 < em > { pub . title } </ em > ,{ ' ' }
@@ -65,10 +70,29 @@ function References() {
6570 ) ) }
6671 </ ol >
6772 </ section >
73+
74+ < section >
75+ < h2 > 📑 Simulator-related Relevant Journal and Conference Papers</ h2 >
76+ < ol className = { styles . customList } >
77+ { simulation_publications . map ( ( sim , index ) => (
78+ < li key = { sim . id } id = { sim . id } >
79+ < span className = { styles . index } > S.{ index + 1 } </ span >
80+ < strong > { sim . authors } </ strong >
81+ < br />
82+ < em > { sim . title } </ em > ,{ ' ' }
83+ < a href = { sim . link } target = "_blank" rel = "noopener noreferrer" >
84+ [PAPER]
85+ </ a >
86+ < br />
87+ < span > { sim . conference } </ span >
88+ </ li >
89+ ) ) }
90+ </ ol >
91+ </ section >
6892 </ div >
6993 </ div >
7094 </ Layout >
7195 ) ;
7296}
7397
74- export default References ;
98+ export default References ;
0 commit comments