@@ -19,13 +19,13 @@ void autopilot (void)
19
19
{
20
20
// INSERT YOUR CODE HERE
21
21
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;
29
29
30
30
// Calculate error term
31
31
double error = -(0.5 + K_h * altitude + (velocity * position.norm ()));
@@ -118,7 +118,7 @@ void initialize_simulation (void)
118
118
scenario_description[3 ] = " polar launch at escape velocity (but drag prevents escape)" ;
119
119
scenario_description[4 ] = " elliptical orbit that clips the atmosphere and decays" ;
120
120
scenario_description[5 ] = " descent from 200km" ;
121
- scenario_description[6 ] = " aerostationary orbit " ;
121
+ scenario_description[6 ] = " " ;
122
122
scenario_description[7 ] = " " ;
123
123
scenario_description[8 ] = " " ;
124
124
scenario_description[9 ] = " " ;
@@ -194,14 +194,14 @@ void initialize_simulation (void)
194
194
break ;
195
195
196
196
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;
205
205
break ;
206
206
207
207
case 7 :
0 commit comments