123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- #include "Sub.h"
- //#include "/AP_Math/AP_Math.h"
- /*
- * control_althold.pde - init and run calls for althold, flight mode
- */
- // althold_init - initialise althold controller
- bool Sub::althold_init()
- {
- if(!control_check_barometer()) {
- return false;
- }
- // initialize vertical speeds and leash lengths
- // sets the maximum speed up and down returned by position controller
- pos_control.set_max_speed_z(-get_pilot_speed_dn(), g.pilot_speed_up);
- pos_control.set_max_accel_z(g.pilot_accel_z);
- pos_control.relax_alt_hold_controllers();
- pos_control.set_target_to_stopping_point_z();
- holding_depth = true;
- if (prev_control_mode == STABILIZE) {
- last_roll_s = ahrs.roll_sensor;
- last_pitch_s = ahrs.pitch_sensor;
- } else {
- last_roll_s = 0;
- last_pitch_s = 0;
- }
- last_yaw_s = ahrs.yaw_sensor;
- last_input_ms = AP_HAL::millis();
- last_input_ms_stable = AP_HAL::millis();
- return true;
- }
- void Sub::handle_attitude()
- {
- uint32_t tnow = AP_HAL::millis();
- motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
- // get pilot desired lean angles
- float target_roll, target_pitch, target_yaw;
- // Check if set_attitude_target_no_gps is valid
- if (tnow - sub.set_attitude_target_no_gps.last_message_ms < 5000) {
- Quaternion(
- set_attitude_target_no_gps.packet.q
- ).to_euler(
- target_roll,
- target_pitch,
- target_yaw
- );
- target_roll = 100 * degrees(target_roll);
- target_pitch = 100 * degrees(target_pitch);
- target_yaw = 100 * degrees(target_yaw);
- last_roll_s = target_roll;
- last_pitch_s = target_pitch;
- last_yaw_s = target_yaw;
-
- attitude_control.input_euler_angle_roll_pitch_yaw(target_roll, target_pitch, target_yaw, true);
- } else {
-
- //int32_t yaw_input= (int32_t)((float)yaw_press*100);
- //int32_t roll_input = 0;
- int32_t pitch_input = 0;
-
- if (prepare_state == Horizontal)
- {
- pitch_input = 0;
- target_roll = 0;
- last_roll_s = 0;
- target_yaw = get_pilot_desired_yaw_rate(channel_yaw->get_control_in());
- }else if(prepare_state == Vertical)
- {
- pitch_input = 7600;
- target_roll = -((float)channel_yaw->get_control_in()*0.5);
-
- target_yaw = 0;
- }
- else{
- pitch_input = 0;
- }
- pitch_input_inc = constrain_int32(pitch_input,-9000,9000);
- //-------------------------------------
- // target_yaw = get_pilot_desired_yaw_rate(channel_yaw->get_control_in());
- if (abs(target_roll) > 300 ){
- attitude_control.input_rate_bf_roll_pitch_yaw(target_roll, 0, 0);
- last_yaw_s = ahrs.yaw_sensor;
- last_roll_s = ahrs.roll_sensor;
- last_input_ms_stable = tnow;
-
- }else if (abs(target_yaw) > 300) {
- // if only yaw is being controlled, don't update pitch and roll
- attitude_control.input_rate_bf_roll_pitch_yaw(0, 0, target_yaw);
- last_yaw_s = ahrs.yaw_sensor;
-
- last_input_ms_stable = tnow;
- } else if (tnow < last_input_ms_stable + 250) {
- // just brake for a few mooments so we don't bounce
- last_yaw_s = ahrs.yaw_sensor;
-
- attitude_control.input_rate_bf_roll_pitch_yaw(0, 0, 0);
- } else {
- // Lock attitude
- attitude_control.input_euler_angle_roll_pitch_yaw(last_roll_s, (float)pitch_input_inc, last_yaw_s, true);
- //attitude_control.input_euler_angle_roll_pitch_yaw(roll_input, (float)pitch_input_inc, last_yaw, true);
- }//--------------------------------------------------------------------------------------------------------------
- //attitude_control.input_euler_angle_roll_pitch_yaw(roll_input, (float)pitch_input_inc, yaw_input, true);//pitch九十度 竖直前进有可能翻车
- //attitude_control.input_euler_angle_roll_pitch_yaw_quat_control((float)roll_input, (float)pitch_input_inc, (float)yaw_input, true);//四元数控制在pitch90度时的效果与欧拉角控制在80度时相差不多, 但是在360往0的YAW切换的时候会猛烈转动
- static int f = 0;
- f++;
- if(f>800)
- {
- //float cosruslt = sinf(radians(286)*0.5f);
- //gcs().send_text(MAV_SEVERITY_INFO, " stableinput %f %f,%f ",(float)last_roll_s,(float)pitch_input_inc,(float)last_yaw_s);
- f=0;
- }
-
- }
- }
- // althold_run - runs the althold controller
- // should be called at 100hz or more
- void Sub::althold_run()
- {
- // When unarmed, disable motors and stabilization
- if (!motors.armed()) {
- motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::GROUND_IDLE);
- // Sub vehicles do not stabilize roll/pitch/yaw when not auto-armed (i.e. on the ground, pilot has never raised throttle)
- attitude_control.set_throttle_out(0.5 ,true, g.throttle_filt);
- attitude_control.relax_attitude_controllers();
- pos_control.relax_alt_hold_controllers();
- last_roll = 0;
- last_pitch = 0;
- last_yaw = ahrs.yaw_sensor;
- holding_depth = false;
- return;
- }
- // Vehicle is armed, motors are free to run
- motors.set_desired_spool_state(AP_Motors::DesiredSpoolState::THROTTLE_UNLIMITED);
- handle_attitude();
- pos_control.update_z_controller();
- // Read the output of the z controller and rotate it so it always points up
- Vector3f throttle_vehicle_frame = ahrs.get_rotation_body_to_ned().transposed() * Vector3f(0, 0, motors.get_throttle_in_bidirectional());
- // Output the Z controller + pilot input to all motors.
- //TODO: scale throttle with the ammount of thrusters in the given direction
- motors.set_throttle(0.5+throttle_vehicle_frame.z + channel_throttle->norm_input()-0.5);
- motors.set_forward(-throttle_vehicle_frame.x + channel_forward->norm_input());
- motors.set_lateral(-throttle_vehicle_frame.y + channel_lateral->norm_input());
- // We rotate the RC inputs to the earth frame to check if the user is giving an input that would change the depth.
- Vector3f earth_frame_rc_inputs = ahrs.get_rotation_body_to_ned() * Vector3f(channel_forward->norm_input(), channel_lateral->norm_input(), (2.0f*(-0.5f+channel_throttle->norm_input())));
- if (fabsf(earth_frame_rc_inputs.z) > 0.05f) { // Throttle input above 5%
- // reset z targets to current values
- holding_depth = false;
- pos_control.relax_alt_hold_controllers();
- } else { // hold z
- if (ap.at_surface) {
- pos_control.set_alt_target(g.surface_depth - 5.0f); // set target to 5cm below surface level
- holding_depth = true;
- } else if (ap.at_bottom) {
- pos_control.set_alt_target(inertial_nav.get_altitude() + 10.0f); // set target to 10 cm above bottom
- holding_depth = true;
- } else if (!holding_depth) {
- pos_control.set_target_to_stopping_point_z();
- holding_depth = true;
- }
- }
- }
|