Skip to content

Commit f0bacd2

Browse files
committed
Version without any extension tasks attempted
1 parent 2dedf06 commit f0bacd2

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

lander/lander.cpp

+16-16
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ void autopilot (void)
1919
{
2020
// INSERT YOUR CODE HERE
2121

22-
// Deploy parachute if lander under 70km and safe to deploy
23-
if (parachute_status == NOT_DEPLOYED && safe_to_deploy_parachute() && altitude < 70000){
24-
parachute_status = DEPLOYED;
25-
}
26-
27-
// Enable altitude stabilisation
28-
stabilized_attitude = true;
22+
// // Deploy parachute if lander under 70km and safe to deploy
23+
// if (parachute_status == NOT_DEPLOYED && safe_to_deploy_parachute() && altitude < 70000){
24+
// parachute_status = DEPLOYED;
25+
// }
26+
//
27+
// // Enable altitude stabilisation
28+
// stabilized_attitude = true;
2929

3030
// Calculate error term
3131
double error = -(0.5 + K_h * altitude + (velocity * position.norm()));
@@ -118,7 +118,7 @@ void initialize_simulation (void)
118118
scenario_description[3] = "polar launch at escape velocity (but drag prevents escape)";
119119
scenario_description[4] = "elliptical orbit that clips the atmosphere and decays";
120120
scenario_description[5] = "descent from 200km";
121-
scenario_description[6] = "aerostationary orbit";
121+
scenario_description[6] = "";
122122
scenario_description[7] = "";
123123
scenario_description[8] = "";
124124
scenario_description[9] = "";
@@ -194,14 +194,14 @@ void initialize_simulation (void)
194194
break;
195195

196196
case 6:
197-
// a circular equitorial orbit where the period of orbit is the same as the orbital period of Mars on its axis of rotation
198-
position = vector3d(20428000.0, 0.0, 0.0);
199-
velocity = vector3d(0.0, 1448.155346, 0.0);
200-
orientation = vector3d(0.0, 0.0, 90.0);
201-
delta_t = 0.1;
202-
parachute_status = NOT_DEPLOYED;
203-
stabilized_attitude = true;
204-
autopilot_enabled = false;
197+
// // a circular equitorial orbit where the period of orbit is the same as the orbital period of Mars on its axis of rotation
198+
// position = vector3d(20428000.0, 0.0, 0.0);
199+
// velocity = vector3d(0.0, 1448.155346, 0.0);
200+
// orientation = vector3d(0.0, 0.0, 90.0);
201+
// delta_t = 0.1;
202+
// parachute_status = NOT_DEPLOYED;
203+
// stabilized_attitude = true;
204+
// autopilot_enabled = false;
205205
break;
206206

207207
case 7:

0 commit comments

Comments
 (0)