-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebsite-data.js
More file actions
152 lines (150 loc) · 5.51 KB
/
Copy pathwebsite-data.js
File metadata and controls
152 lines (150 loc) · 5.51 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
// Website data exported as JavaScript module
// This works with file:// protocol unlike JSON fetch
const websiteData = {
teamMembers: [
{
name: "Thaddeus Kobylarz",
role: "President",
program: "Programs: Astronomy and Physics",
initials: "TJMPK-III"
},
{
name: "Zagrous Ghodsian",
role: "Vice President",
program: "Program: Physics and Mathematics minor",
initials: "ZG"
},
{
name: "Ashish Abbur Venkata Kumar",
role: "Propulsion Lead",
program: "Programs: Physics and Mathematics minor",
initials: "AK"
},
{
name: "Andrew Miranda",
role: "Mechanical & Aerodynamics Lead",
program: "Programs: Astronomy, Physics and Mathematics minor",
initials: "AM"
},
{
name: "Tymon Cui",
role: "Avionics Lead",
program: "Programs: Mathematics and Computer Science",
initials: "TC"
},
{
name: "Joshua Chen",
role: "Finance Team Lead",
program: "Programs: Computer Science, Management and Economics minor",
initials: "JC"
},
{
name: "Anastasia Butnariu",
role: "Media & Outreach Team Lead",
program: "Programs: Mechanical Engineering",
initials: "AB"
},
{
name: "Inba Thiyagarajan",
role: "Executive Secretary",
program: "Programs: Computer Science and Mathematics minor",
initials: "IT"
},
{
name: "Kai Tano Bague",
role: "Lead Web Designer",
program: "Programs: Computer Science, Data Science and Mathematics minor",
initials: "KTB"
},
{
name: "Nika Kavianitabar",
role: "Member At Large",
program: "Programs: Physics",
initials: "NK"
}
],
projects: [
{
title: "Team-Built Flight Computer Demonstration",
icon: "fas fa-laptop-code",
description: "A Team designed and built flight computer spearheaded by our Avionics Team on an arduino platform. Dual deploy capable launching on a 3\" body with a 29mm motor.",
status: "In Progress",
statusClass: "active",
detailedDescription: "Our main project right now is quite ambitious.\n\
We are attempting to design and produce a flight computer capable of the dual-deploy recovery of a 3\" diameter rocket!\n\
This project is aimed at showcasing our skills in programming and software design as well as soldering and our abilities to construct our own hardware.",
details: [
"Team built Flight Computer capable of replicating the same functions as commercially sold devices",
"Capable of deploying gunpowder charges for dual-deploy recovery purposes",
"Wifi Capable for remote arming of charges",
"Radio Telemetry for accurate data collection on the rocket's position and acceleration",
"Successful demonstration of the computer's ability to execute the safe recovery of our rocket"
],
carouselImages: []
},
{
title: "Rocket Assembly Workshop",
icon: "fas fa-chalkboard-teacher",
description: "Fun, educational and creative workshop where our passionate club members assembled our rocket parts!",
status: "Completed",
statusClass: "completed",
detailedDescription: "An engaging hands-on workshop where team members learned about rocket assembly, structural components, and the fundamentals of model rocketry.\n\
This workshop provided practical experience in building and preparing rockets for flight.",
details: [
"Hands-on experience with rocket assembly techniques",
"Understanding of structural components and their functions",
"Team collaboration and knowledge sharing",
"Safety protocols and best practices in rocketry",
"Introduction to flight preparation procedures"
],
carouselImages: [
"Images/Carrousel1/1.webp",
"Images/Carrousel1/2.webp",
"Images/Carrousel1/3.webp",
"Images/Carrousel1/4.webp",
"Images/Carrousel1/5.webp",
"Images/Carrousel1/6.webp",
"Images/Carrousel1/7.webp",
"Images/Carrousel1/8.webp"
]
}
// {
// title: "Avionics Systems",
// icon: "fas fa-microchip",
// description: "Flight computers, telemetry, and ground control software using C/C++ and Python with simulation and Hardware-in-the-Loop testing.",
// status: "In Progress",
// statusClass: "active"
// },
// {
// title: "Structures & Propulsion",
// icon: "fas fa-tools",
// description: "Airframe design, composite structures, motor integration, thrust characterization, and recovery/VTOL hardware development.",
// status: "In Progress",
// statusClass: "active"
// }
],
features: [
{
icon: "fas fa-rocket",
title: "Rocket Development",
description: "Design and launch medium and high power rockets of various different designs and purposes."
},
{
icon: "fas fa-microchip",
title: "Avionics & Software",
description: "Team-designed and built flight computers. With telemetry and software coded in C/C++ and Python."
},
{
icon: "fas fa-cogs",
title: "Aerodynamics, Mechanical Design, & Propulsion Systems",
description: "Custom designed rocketry parts, motor mounts, recovery systems, and both team-designed and kit based rockets."
}
]
};
// Export for different module systems
if (typeof module !== 'undefined' && module.exports) {
module.exports = websiteData;
}
if (typeof window !== 'undefined') {
window.websiteData = websiteData;
}