-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_program_C377_7.m
215 lines (194 loc) · 6.29 KB
/
project_program_C377_7.m
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
% Predict using polynomial models the desired, raised height (h) that the
% hammer is raised in order to reach a desired distance (d)
% Team: C377-7
clear; clc;
%% Initialize Knowns
% Note: Not the actual polynomial that we're using for the game day. This
% is a substitute made of simulated test values that we made up. The actual
% data will be collected between now and game day
p1 = 1.0925;
p2 = 9.7869;
polymodel1 = [p1, p2];
n = 1;
%% Rounds 1 - 3
while n < 4
% print 'Round Title'
fprintf("\nRound %d: Land Team Puck in Zone \n",n);
% print zone options
fprintf("Your zone options are: \n")
fprintf("| edge |\n")
fprintf("| zone 4 |\n")
fprintf("| 3a | 3b | 3c |\n")
fprintf("| 2a | 2b | 2c |\n")
fprintf("| 1a | 1b | 1c |\n")
isValid = false;
while isValid == false
prompt = "\nEnter the zone you want to target: ";
zone = input(prompt, 's'); % change this to be the zone name
% switch case for different zones, coordinates are placeholder
% values for now
switch zone
case "1a"
coords = [-25 37.5];
isValid = true;
break
case "1b"
coords = [0 37.5];
isValid = true;
break
case "1c"
coords = [25 37.5];
isValid = true;
break
case "2a"
coords = [-25 62.5];
isValid = true;
break
case "2b"
coords = [0 62.5];
isValid = true;
break
case "2c"
coords = [25 62.5];
isValid = true;
break
case "3a"
coords = [-25 87.5];
isValid = true;
break
case "3b"
coords = [0 87.5];
isValid = true;
break
case "3c"
coords = [25 87.5];
isValid = true;
break
case "zone 4"
coords = [0 112.5];
isValid = true;
break
case "edge"
coords = [0 125];
break
case "exit"
return
case "quit"
return
case "stop"
return
case "q"
return
otherwise
warning("Invalid input, try again.\n");
end
end
% perform calculations for initial height and firing angle
distance = sqrt(coords(1)^2 + coords(2)^2); % calc distance
angle = atan2(coords(2), coords(1)) * (180/pi);
h1hat = distance/p1; % polyval
fprintf("\nThe height at which you should raise the hammer is %.2f centimeters.\n", h1hat);
fprintf("The angle at which you should aim the hammer is %.2f degrees.\n", angle);
n = n + 1;
end
%% Round 4
fprintf("\nRound 4: Hit Team Puck into EF Puck\n");
p3 = 1.0925;
p4 = 9.7869;
polymodel2 = [p3, p4];
isValidMass = false;
while ~isValidMass
mass = input("\nEnter the mass of the EF Puck in grams (between 10 and 30 grams): ");
if mass >= 10 && mass <= 30
isValidMass = true;
else
warning("Invalid mass, please enter a value between 10 and 30 grams.");
end
end
team_puck_coords = [0, 0];
ef_puck_coords = [0, 75];
distance = sqrt((ef_puck_coords(1) - team_puck_coords(1))^2 + (ef_puck_coords(2) - team_puck_coords(2))^2);
target_coords = [0, 112.5];
target_distance = target_coords(2) - ef_puck_coords(2);
h1hat = (distance * target_distance) / (p3 * mass);
angle = atan2(target_coords(2), target_coords(1)) * (180/pi);
fprintf("\nThe height at which you should raise the hammer is %.2f centimeters.\n", h1hat);
fprintf("The angle at which you should aim the hammer is %.2f degrees.\n", angle);
n = n + 1;
%% Scoring points at the end
xInput = input("\nEnter the approximate x coordinate of the middle of the goal (middle is 0): ");
while true
fprintf("\nRound %d: Land Team Puck in Zone\n",n);
isValid = false;
while isValid == false
prompt = "\nEnter the zone you want to target: ";
zone = input(prompt, 's'); % change this to be the zone name
% switch case for different zones, coordinates are placeholder
% values for now
switch zone
case "1a"
coords = [-25 37.5];
isValid = true;
break
case "1b"
coords = [0 37.5];
isValid = true;
break
case "1c"
coords = [25 37.5];
isValid = true;
break
case "2a"
coords = [-25 62.5];
isValid = true;
break
case "2b"
coords = [0 62.5];
isValid = true;
break
case "2c"
coords = [25 62.5];
isValid = true;
break
case "3a"
coords = [-25 87.5];
isValid = true;
break
case "3b"
coords = [0 87.5];
isValid = true;
break
case "3c"
coords = [25 87.5];
isValid = true;
break
case "zone 4"
coords = [0 112.5];
isValid = true;
break
case "goal"
coords = [xInput 137.5];
isValid = true;
break
case "edge"
coords = [0 125];
break
case "exit"
return
case "quit"
return
case "stop"
return
case "q"
return
otherwise
warning("Invalid input, try again.\n");
end
end
distance = sqrt(coords(1)^2 + coords(2)^2); % calc distance
angle = atan2(coords(2), coords(1)) * (180/pi);
h1hat = distance/p1; % polyval
fprintf("\nThe height at which you should raise the hammer is %.2f centimeters.\n", h1hat);
fprintf("The angle at which you should aim the hammer is %.2f degrees.\n", angle);
n = n + 1;
end