123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425 |
- #include <AP_HAL/AP_HAL.h>
- #include "AC_PosControl.h"
- #include <AP_Math/AP_Math.h>
- #include <AP_Logger/AP_Logger.h>
- #include "../../ArduSub/Sub.h"
- extern const AP_HAL::HAL& hal;
- #if APM_BUILD_TYPE(APM_BUILD_ArduPlane)
-
- # define POSCONTROL_POS_Z_P 1.0f
- # define POSCONTROL_VEL_Z_P 5.0f
- # define POSCONTROL_ACC_Z_P 0.3f
- # define POSCONTROL_ACC_Z_I 1.0f
- # define POSCONTROL_ACC_Z_D 0.0f
- # define POSCONTROL_ACC_Z_IMAX 800
- # define POSCONTROL_ACC_Z_FILT_HZ 10.0f
- # define POSCONTROL_ACC_Z_DT 0.02f
- # define POSCONTROL_POS_XY_P 1.0f
- # define POSCONTROL_VEL_XY_P 1.4f
- # define POSCONTROL_VEL_XY_I 0.7f
- # define POSCONTROL_VEL_XY_D 0.35f
- # define POSCONTROL_VEL_XY_IMAX 1000.0f
- # define POSCONTROL_VEL_XY_FILT_HZ 5.0f
- # define POSCONTROL_VEL_XY_FILT_D_HZ 5.0f
- #elif APM_BUILD_TYPE(APM_BUILD_ArduSub)
-
- # define POSCONTROL_POS_Z_P 3.0f
- # define POSCONTROL_VEL_Z_P 8.0f
- # define POSCONTROL_ACC_Z_P 0.5f
- # define POSCONTROL_ACC_Z_I 0.1f
- # define POSCONTROL_ACC_Z_D 0.0f
- # define POSCONTROL_ACC_Z_IMAX 100
- # define POSCONTROL_ACC_Z_FILT_HZ 20.0f
- # define POSCONTROL_ACC_Z_DT 0.0025f
- # define POSCONTROL_POS_XY_P 1.0f
- # define POSCONTROL_VEL_XY_P 1.0f
- # define POSCONTROL_VEL_XY_I 0.5f
- # define POSCONTROL_VEL_XY_D 0.0f
- # define POSCONTROL_VEL_XY_IMAX 1000.0f
- # define POSCONTROL_VEL_XY_FILT_HZ 5.0f
- # define POSCONTROL_VEL_XY_FILT_D_HZ 5.0f
- #else
-
- # define POSCONTROL_POS_Z_P 1.0f
- # define POSCONTROL_VEL_Z_P 5.0f
- # define POSCONTROL_ACC_Z_P 0.5f
- # define POSCONTROL_ACC_Z_I 1.0f
- # define POSCONTROL_ACC_Z_D 0.0f
- # define POSCONTROL_ACC_Z_IMAX 800
- # define POSCONTROL_ACC_Z_FILT_HZ 20.0f
- # define POSCONTROL_ACC_Z_DT 0.0025f
- # define POSCONTROL_POS_XY_P 1.0f
- # define POSCONTROL_VEL_XY_P 2.0f
- # define POSCONTROL_VEL_XY_I 1.0f
- # define POSCONTROL_VEL_XY_D 0.5f
- # define POSCONTROL_VEL_XY_IMAX 1000.0f
- # define POSCONTROL_VEL_XY_FILT_HZ 5.0f
- # define POSCONTROL_VEL_XY_FILT_D_HZ 5.0f
- #endif
- const AP_Param::GroupInfo AC_PosControl::var_info[] = {
-
-
-
-
-
-
-
-
- AP_GROUPINFO("_ACC_XY_FILT", 1, AC_PosControl, _accel_xy_filt_hz, POSCONTROL_ACCEL_FILTER_HZ),
-
-
-
-
-
- AP_SUBGROUPINFO(_p_pos_z, "_POSZ_", 2, AC_PosControl, AC_P),
-
-
-
-
-
- AP_SUBGROUPINFO(_p_vel_z, "_VELZ_", 3, AC_PosControl, AC_P),
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AP_SUBGROUPINFO(_pid_accel_z, "_ACCZ_", 4, AC_PosControl, AC_PID),
-
-
-
-
-
- AP_SUBGROUPINFO(_p_pos_xy, "_POSXY_", 5, AC_PosControl, AC_P),
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- AP_SUBGROUPINFO(_pid_vel_xy, "_VELXY_", 6, AC_PosControl, AC_PID_2D),
-
-
-
-
-
-
-
- AP_GROUPINFO("_ANGLE_MAX", 7, AC_PosControl, _lean_angle_max, 0.0f),
- AP_GROUPEND
- };
- AC_PosControl::AC_PosControl(const AP_AHRS_View& ahrs, const AP_InertialNav& inav,
- const AP_Motors& motors, AC_AttitudeControl& attitude_control) :
- _ahrs(ahrs),
- _inav(inav),
- _motors(motors),
- _attitude_control(attitude_control),
- _p_pos_z(POSCONTROL_POS_Z_P),
- _p_vel_z(POSCONTROL_VEL_Z_P),
- _pid_accel_z(POSCONTROL_ACC_Z_P, POSCONTROL_ACC_Z_I, POSCONTROL_ACC_Z_D, 0.0f, POSCONTROL_ACC_Z_IMAX, 0.0f, POSCONTROL_ACC_Z_FILT_HZ, 0.0f, POSCONTROL_ACC_Z_DT),
- _p_pos_xy(POSCONTROL_POS_XY_P),
- _pid_vel_xy(POSCONTROL_VEL_XY_P, POSCONTROL_VEL_XY_I, POSCONTROL_VEL_XY_D, POSCONTROL_VEL_XY_IMAX, POSCONTROL_VEL_XY_FILT_HZ, POSCONTROL_VEL_XY_FILT_D_HZ, POSCONTROL_DT_50HZ),
- _dt(POSCONTROL_DT_400HZ),
- _speed_down_cms(POSCONTROL_SPEED_DOWN),
- _speed_up_cms(POSCONTROL_SPEED_UP),
- _speed_cms(POSCONTROL_SPEED),
- _accel_z_cms(POSCONTROL_ACCEL_Z),
- _accel_cms(POSCONTROL_ACCEL_XY),
- _leash(POSCONTROL_LEASH_LENGTH_MIN),
- _leash_down_z(POSCONTROL_LEASH_LENGTH_MIN),
- _leash_up_z(POSCONTROL_LEASH_LENGTH_MIN),
- _accel_target_filter(POSCONTROL_ACCEL_FILTER_HZ)
- {
- AP_Param::setup_object_defaults(this, var_info);
-
- _flags.recalc_leash_z = true;
- _flags.recalc_leash_xy = true;
- _flags.reset_desired_vel_to_pos = true;
- _flags.reset_accel_to_lean_xy = true;
- _flags.reset_rate_to_accel_z = true;
- _flags.freeze_ff_z = true;
- _flags.use_desvel_ff_z = true;
- _limit.pos_up = true;
- _limit.pos_down = true;
- _limit.vel_up = true;
- _limit.vel_down = true;
- _limit.accel_xy = true;
- }
- void AC_PosControl::set_dt(float delta_sec)
- {
- _dt = delta_sec;
-
- _pid_accel_z.set_dt(_dt);
- _pid_vel_xy.set_dt(_dt);
-
- _vel_error_filter.set_cutoff_frequency(POSCONTROL_VEL_ERROR_CUTOFF_FREQ);
- }
- void AC_PosControl::set_max_speed_z(float speed_down, float speed_up)
- {
-
- speed_down = -fabsf(speed_down);
- if ((fabsf(_speed_down_cms - speed_down) > 1.0f) || (fabsf(_speed_up_cms - speed_up) > 1.0f)) {
- _speed_down_cms = speed_down;
- _speed_up_cms = speed_up;
- _flags.recalc_leash_z = true;
- calc_leash_length_z();
- }
- }
- void AC_PosControl::set_max_accel_z(float accel_cmss)
- {
- if (fabsf(_accel_z_cms - accel_cmss) > 1.0f) {
- _accel_z_cms = accel_cmss;
- _flags.recalc_leash_z = true;
- calc_leash_length_z();
- }
- }
- void AC_PosControl::set_alt_target_with_slew(float alt_cm, float dt)
- {
- float alt_change = alt_cm - _pos_target.z;
-
- _flags.use_desvel_ff_z = false;
-
- if ((alt_change < 0 && !_motors.limit.throttle_lower) || (alt_change > 0 && !_motors.limit.throttle_upper)) {
- if (!is_zero(dt)) {
- float climb_rate_cms = constrain_float(alt_change / dt, _speed_down_cms, _speed_up_cms);
- _pos_target.z += climb_rate_cms * dt;
- _vel_desired.z = climb_rate_cms;
- }
- } else {
-
- _vel_desired.z = 0.0f;
- }
-
- float curr_alt = _inav.get_altitude();
- _pos_target.z = constrain_float(_pos_target.z, curr_alt - _leash_down_z, curr_alt + _leash_up_z);
- }
- void AC_PosControl::set_alt_target_from_climb_rate(float climb_rate_cms, float dt, bool force_descend)
- {
-
-
- if ((climb_rate_cms < 0 && (!_motors.limit.throttle_lower || force_descend)) || (climb_rate_cms > 0 && !_motors.limit.throttle_upper && !_limit.pos_up)) {
- _pos_target.z += climb_rate_cms * dt;
- }
-
-
- _flags.use_desvel_ff_z = false;
- _vel_desired.z = climb_rate_cms;
- }
- void AC_PosControl::set_alt_target_from_climb_rate_ff(float climb_rate_cms, float dt, bool force_descend)
- {
-
- float accel_z_cms = _accel_z_cms;
- if (_vel_desired.z < _speed_down_cms && !is_zero(_speed_down_cms)) {
- accel_z_cms *= POSCONTROL_OVERSPEED_GAIN_Z * _vel_desired.z / _speed_down_cms;
- }
- if (_vel_desired.z > _speed_up_cms && !is_zero(_speed_up_cms)) {
- accel_z_cms *= POSCONTROL_OVERSPEED_GAIN_Z * _vel_desired.z / _speed_up_cms;
- }
- accel_z_cms = constrain_float(accel_z_cms, 0.0f, 750.0f);
-
- float jerk_z = accel_z_cms * POSCONTROL_JERK_RATIO;
- float accel_z_max = MIN(accel_z_cms, safe_sqrt(2.0f * fabsf(_vel_desired.z - climb_rate_cms) * jerk_z));
- _accel_last_z_cms += jerk_z * dt;
- _accel_last_z_cms = MIN(accel_z_max, _accel_last_z_cms);
- float vel_change_limit = _accel_last_z_cms * dt;
- _vel_desired.z = constrain_float(climb_rate_cms, _vel_desired.z - vel_change_limit, _vel_desired.z + vel_change_limit);
- _flags.use_desvel_ff_z = true;
-
-
- if ((_vel_desired.z < 0 && (!_motors.limit.throttle_lower || force_descend)) || (_vel_desired.z > 0 && !_motors.limit.throttle_upper && !_limit.pos_up)) {
- _pos_target.z += _vel_desired.z * dt;
- }
- }
- void AC_PosControl::add_takeoff_climb_rate(float climb_rate_cms, float dt)
- {
- _pos_target.z += climb_rate_cms * dt;
- }
- void AC_PosControl::shift_alt_target(float z_cm)
- {
- _pos_target.z += z_cm;
-
- if (!is_zero(z_cm)) {
- freeze_ff_z();
- }
- }
- void AC_PosControl::relax_alt_hold_controllers(float throttle_setting)
- {
- _pos_target.z = _inav.get_altitude();
- _vel_desired.z = 0.0f;
- _flags.use_desvel_ff_z = false;
- _vel_target.z = _inav.get_velocity_z();
- _vel_last.z = _inav.get_velocity_z();
- _accel_desired.z = 0.0f;
- _accel_last_z_cms = 0.0f;
- _flags.reset_rate_to_accel_z = true;
- _pid_accel_z.set_integrator((throttle_setting - _motors.get_throttle_hover()) * 1000.0f);
- _accel_target.z = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
- _pid_accel_z.reset_filter();
- }
- float AC_PosControl::get_alt_error() const
- {
- return (_pos_target.z - _inav.get_altitude());
- }
- void AC_PosControl::set_target_to_stopping_point_z()
- {
-
- calc_leash_length_z();
- get_stopping_point_z(_pos_target);
- }
- void AC_PosControl::get_stopping_point_z(Vector3f& stopping_point) const
- {
- const float curr_pos_z = _inav.get_altitude();
- float curr_vel_z = _inav.get_velocity_z();
- float linear_distance;
- float linear_velocity;
-
- if (is_active_z()) {
- curr_vel_z += _vel_error.z;
- if (_flags.use_desvel_ff_z) {
- curr_vel_z -= _vel_desired.z;
- }
- }
-
- if (_p_pos_z.kP() <= 0.0f || _accel_z_cms <= 0.0f) {
- stopping_point.z = curr_pos_z;
- return;
- }
-
- linear_velocity = _accel_z_cms / _p_pos_z.kP();
- if (fabsf(curr_vel_z) < linear_velocity) {
-
- stopping_point.z = curr_pos_z + curr_vel_z / _p_pos_z.kP();
- } else {
- linear_distance = _accel_z_cms / (2.0f * _p_pos_z.kP() * _p_pos_z.kP());
- if (curr_vel_z > 0) {
- stopping_point.z = curr_pos_z + (linear_distance + curr_vel_z * curr_vel_z / (2.0f * _accel_z_cms));
- } else {
- stopping_point.z = curr_pos_z - (linear_distance + curr_vel_z * curr_vel_z / (2.0f * _accel_z_cms));
- }
- }
- stopping_point.z = constrain_float(stopping_point.z, curr_pos_z - POSCONTROL_STOPPING_DIST_DOWN_MAX, curr_pos_z + POSCONTROL_STOPPING_DIST_UP_MAX);
- }
- void AC_PosControl::init_takeoff()
- {
- const Vector3f& curr_pos = _inav.get_position();
- _pos_target.z = curr_pos.z;
-
- freeze_ff_z();
-
- _pid_accel_z.set_integrator((_attitude_control.get_throttle_in() - _motors.get_throttle_hover()) * 1000.0f);
-
- init_ekf_z_reset();
- }
- bool AC_PosControl::is_active_z() const
- {
- return ((AP_HAL::micros64() - _last_update_z_us) <= POSCONTROL_ACTIVE_TIMEOUT_US);
- }
- void AC_PosControl::update_z_controller()
- {
-
- const uint64_t now_us = AP_HAL::micros64();
- if (now_us - _last_update_z_us > POSCONTROL_ACTIVE_TIMEOUT_US) {
- _flags.reset_rate_to_accel_z = true;
- _pid_accel_z.set_integrator((_attitude_control.get_throttle_in() - _motors.get_throttle_hover()) * 1000.0f);
- _accel_target.z = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
- _pid_accel_z.reset_filter();
- }
- _last_update_z_us = now_us;
-
-
-
- calc_leash_length_z();
-
- run_z_controller_f();
- }
- float AC_PosControl::update_z_controller_f()
- {
-
- const uint64_t now_us = AP_HAL::micros64();
- if (now_us - _last_update_z_us > POSCONTROL_ACTIVE_TIMEOUT_US) {
- _flags.reset_rate_to_accel_z = true;
- _pid_accel_z.set_integrator((_attitude_control.get_throttle_in() - _motors.get_throttle_hover()) * 1000.0f);
- _accel_target.z = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
- _pid_accel_z.reset_filter();
- }
- _last_update_z_us = now_us;
-
-
-
- calc_leash_length_z();
-
- return run_z_controller_f();
- }
- void AC_PosControl::calc_leash_length_z()
- {
- if (_flags.recalc_leash_z) {
- _leash_up_z = calc_leash_length(_speed_up_cms, _accel_z_cms, _p_pos_z.kP());
- _leash_down_z = calc_leash_length(-_speed_down_cms, _accel_z_cms, _p_pos_z.kP());
- _flags.recalc_leash_z = false;
- }
- }
- void AC_PosControl::run_z_controller()
- {
-
- float curr_alt = sub.barometer.get_altitude()*100;
-
- float vel_from_baro = AC_AttitudeControl::sqrt_controller(curr_alt-last_alt, _p_pos_z.kP(), _accel_z_cms, _dt);
- static uint16_t i=0;
- uint16_t timecnt = (uint16_t)(0.25/_dt);
- i++;
- if (i>timecnt)
- {
- i = 0;
- last_alt = curr_alt;
- }
-
-
- _limit.pos_up = false;
- _limit.pos_down = false;
-
- _pos_error.z = _pos_target.z - curr_alt;
-
- if (_pos_error.z > _leash_up_z) {
- _pos_target.z = curr_alt + _leash_up_z;
- _pos_error.z = _leash_up_z;
- _limit.pos_up = true;
- }
- if (_pos_error.z < -_leash_down_z) {
- _pos_target.z = curr_alt - _leash_down_z;
- _pos_error.z = -_leash_down_z;
- _limit.pos_down = true;
- }
-
- _vel_target.z = AC_AttitudeControl::sqrt_controller(_pos_error.z, _p_pos_z.kP(), _accel_z_cms, _dt);
-
-
- _limit.vel_up = false;
- _limit.vel_down = false;
- if (_vel_target.z < _speed_down_cms) {
- _vel_target.z = _speed_down_cms;
- _limit.vel_down = true;
- }
- if (_vel_target.z > _speed_up_cms) {
- _vel_target.z = _speed_up_cms;
- _limit.vel_up = true;
- }
-
- if (_flags.use_desvel_ff_z) {
- _vel_target.z += _vel_desired.z;
- }
-
-
-
-
- Vector3f curr_vel;
-
- curr_vel.z=vel_from_baro;
-
-
- if (_flags.reset_rate_to_accel_z) {
- _vel_last.z = _vel_target.z;
- }
-
- if (_dt > 0.0f) {
- if (!_flags.freeze_ff_z) {
- _accel_desired.z = (_vel_target.z - _vel_last.z) / _dt;
- } else {
-
- _flags.freeze_ff_z = false;
- }
- } else {
- _accel_desired.z = 0.0f;
- }
-
- _vel_last.z = _vel_target.z;
-
- if (_flags.reset_rate_to_accel_z) {
-
- _vel_error.z = 0;
- _vel_error_filter.reset(0);
- _accel_target.z = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
- _flags.reset_rate_to_accel_z = false;
- } else {
-
- _vel_error.z = _vel_error_filter.apply(_vel_target.z - curr_vel.z, _dt);
- _accel_target.z = _p_vel_z.get_p(_vel_error.z);
- }
-
- _accel_target.z += _accel_desired.z;
-
- float z_accel_meas;
-
- z_accel_meas = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
-
- if (_motors.get_throttle_hover() * 1000.0f > _pid_accel_z.imax()) {
- _pid_accel_z.imax(_motors.get_throttle_hover() * 1000.0f);
- }
-
- float thr_out = _pid_accel_z.update_all(_accel_target.z, z_accel_meas, (_motors.limit.throttle_lower || _motors.limit.throttle_upper)) * 0.001f +0.5;
-
- _attitude_control.set_throttle_out(thr_out, true, POSCONTROL_THROTTLE_CUTOFF_FREQ);
- static uint8_t cnt = 0;
- cnt++;
- if (cnt>250)
- {
- cnt = 0;
-
-
-
- gcs().send_text(MAV_SEVERITY_INFO, " pid %f %f %f %f\n",_accel_target.z,z_accel_meas,_accel_desired.z,thr_out);
- }
- }
- float AC_PosControl::run_z_controller_f()
- {
-
- float curr_alt = sub.barometer.get_altitude()*100;
-
- float vel_from_baro = AC_AttitudeControl::sqrt_controller(curr_alt-last_alt, _p_pos_z.kP(), _accel_z_cms, _dt);
- static uint16_t i=0;
- uint16_t timecnt = (uint16_t)(0.25/_dt);
- i++;
- if (i>timecnt)
- {
- i = 0;
- last_alt = curr_alt;
- }
-
-
- _limit.pos_up = false;
- _limit.pos_down = false;
-
- _pos_error.z = _pos_target.z - curr_alt;
-
- if (_pos_error.z > _leash_up_z) {
- _pos_target.z = curr_alt + _leash_up_z;
- _pos_error.z = _leash_up_z;
- _limit.pos_up = true;
- }
- if (_pos_error.z < -_leash_down_z) {
- _pos_target.z = curr_alt - _leash_down_z;
- _pos_error.z = -_leash_down_z;
- _limit.pos_down = true;
- }
-
- _vel_target.z = AC_AttitudeControl::sqrt_controller(_pos_error.z, _p_pos_z.kP(), _accel_z_cms, _dt);
-
-
- _limit.vel_up = false;
- _limit.vel_down = false;
- if (_vel_target.z < _speed_down_cms) {
- _vel_target.z = _speed_down_cms;
- _limit.vel_down = true;
- }
- if (_vel_target.z > _speed_up_cms) {
- _vel_target.z = _speed_up_cms;
- _limit.vel_up = true;
- }
-
- if (_flags.use_desvel_ff_z) {
- _vel_target.z += _vel_desired.z;
- }
-
-
-
-
- Vector3f curr_vel;
-
- curr_vel.z=vel_from_baro;
-
-
- if (_flags.reset_rate_to_accel_z) {
- _vel_last.z = _vel_target.z;
- }
-
- if (_dt > 0.0f) {
- if (!_flags.freeze_ff_z) {
- _accel_desired.z = (_vel_target.z - _vel_last.z) / _dt;
- } else {
-
- _flags.freeze_ff_z = false;
- }
- } else {
- _accel_desired.z = 0.0f;
- }
-
- _vel_last.z = _vel_target.z;
- static uint8_t freeze_ff_z =1;
-
- if (_flags.reset_rate_to_accel_z) {
-
- _vel_error.z = 0;
- _vel_error_filter.reset(0);
- _accel_target.z = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
-
- _flags.reset_rate_to_accel_z = false;
- } else {
-
- _vel_error.z = _vel_error_filter.apply(_vel_target.z - curr_vel.z, _dt);
- _accel_target.z = _p_vel_z.get_p(_vel_error.z);
- freeze_ff_z =1;
- }
-
- _accel_target.z += _accel_desired.z;
-
- float z_accel_meas;
-
- z_accel_meas = -(_ahrs.get_accel_ef_blended().z + GRAVITY_MSS) * 100.0f;
-
- if (_motors.get_throttle_hover() * 1000.0f > _pid_accel_z.imax()) {
- _pid_accel_z.imax(_motors.get_throttle_hover() * 1000.0f);
- }
-
- float thr_out = _pid_accel_z.update_all(_accel_target.z, z_accel_meas, (_motors.limit.throttle_lower || _motors.limit.throttle_upper)) * 0.001f;
- float ff_p =(float)SRV_Channels::srv_channel(15)->get_output_min()/1000000;
- float thr_out_ff = thr_out;
- if (freeze_ff_z!=0)
- {
-
- thr_out_ff = thr_out - curr_vel.z*ff_p;
- }
-
- static uint8_t cnt = 0;
- cnt++;
- if (cnt>250)
- {
- cnt = 0;
-
-
-
- gcs().send_text(MAV_SEVERITY_INFO, "pid %d %f %f %f %f\n",freeze_ff_z,_vel_target.z,thr_out,ff_p,thr_out_ff);
- }
- return thr_out_ff;
- }
- void AC_PosControl::set_max_accel_xy(float accel_cmss)
- {
- if (fabsf(_accel_cms - accel_cmss) > 1.0f) {
- _accel_cms = accel_cmss;
- _flags.recalc_leash_xy = true;
- calc_leash_length_xy();
- }
- }
- void AC_PosControl::set_max_speed_xy(float speed_cms)
- {
- if (fabsf(_speed_cms - speed_cms) > 1.0f) {
- _speed_cms = speed_cms;
- _flags.recalc_leash_xy = true;
- calc_leash_length_xy();
- }
- }
- void AC_PosControl::set_pos_target(const Vector3f& position)
- {
- _pos_target = position;
- _flags.use_desvel_ff_z = false;
- _vel_desired.z = 0.0f;
-
-
-
-
- }
- void AC_PosControl::set_xy_target(float x, float y)
- {
- _pos_target.x = x;
- _pos_target.y = y;
- }
- void AC_PosControl::shift_pos_xy_target(float x_cm, float y_cm)
- {
-
- _pos_target.x += x_cm;
- _pos_target.y += y_cm;
- }
- void AC_PosControl::set_target_to_stopping_point_xy()
- {
-
- calc_leash_length_xy();
- get_stopping_point_xy(_pos_target);
- }
- void AC_PosControl::get_stopping_point_xy(Vector3f &stopping_point) const
- {
- const Vector3f curr_pos = _inav.get_position();
- Vector3f curr_vel = _inav.get_velocity();
- float linear_distance;
- float linear_velocity;
- float stopping_dist;
- float kP = _p_pos_xy.kP();
-
- if (is_active_xy()) {
- curr_vel.x += _vel_error.x;
- curr_vel.y += _vel_error.y;
- }
-
- float vel_total = norm(curr_vel.x, curr_vel.y);
-
- if (kP <= 0.0f || _accel_cms <= 0.0f || is_zero(vel_total)) {
- stopping_point.x = curr_pos.x;
- stopping_point.y = curr_pos.y;
- return;
- }
-
- linear_velocity = _accel_cms / kP;
-
- if (vel_total < linear_velocity) {
- stopping_dist = vel_total / kP;
- } else {
- linear_distance = _accel_cms / (2.0f * kP * kP);
- stopping_dist = linear_distance + (vel_total * vel_total) / (2.0f * _accel_cms);
- }
-
- stopping_dist = constrain_float(stopping_dist, 0, _leash);
-
- stopping_point.x = curr_pos.x + (stopping_dist * curr_vel.x / vel_total);
- stopping_point.y = curr_pos.y + (stopping_dist * curr_vel.y / vel_total);
- }
- float AC_PosControl::get_distance_to_target() const
- {
- return norm(_pos_error.x, _pos_error.y);
- }
- int32_t AC_PosControl::get_bearing_to_target() const
- {
- return get_bearing_cd(_inav.get_position(), _pos_target);
- }
- bool AC_PosControl::is_active_xy() const
- {
- return ((AP_HAL::micros64() - _last_update_xy_us) <= POSCONTROL_ACTIVE_TIMEOUT_US);
- }
- float AC_PosControl::get_lean_angle_max_cd() const
- {
- if (is_zero(_lean_angle_max)) {
- return _attitude_control.lean_angle_max();
- }
- return _lean_angle_max * 100.0f;
- }
- void AC_PosControl::init_xy_controller()
- {
-
-
- _roll_target = _ahrs.roll_sensor;
- _pitch_target = _ahrs.pitch_sensor;
-
- _pid_vel_xy.reset_filter();
- lean_angles_to_accel(_accel_target.x, _accel_target.y);
- _pid_vel_xy.set_integrator(_accel_target - _accel_desired);
-
- _flags.reset_desired_vel_to_pos = true;
- _flags.reset_accel_to_lean_xy = true;
-
- init_ekf_xy_reset();
- }
- void AC_PosControl::update_xy_controller()
- {
-
- const uint64_t now_us = AP_HAL::micros64();
- float dt = (now_us - _last_update_xy_us) * 1.0e-6f;
-
- if (dt >= POSCONTROL_ACTIVE_TIMEOUT_US * 1.0e-6f) {
- dt = 0.0f;
- }
-
- check_for_ekf_xy_reset();
-
- calc_leash_length_xy();
-
- desired_vel_to_pos(dt);
-
- run_xy_controller(dt);
-
- _last_update_xy_us = now_us;
- }
- float AC_PosControl::time_since_last_xy_update() const
- {
- const uint64_t now_us = AP_HAL::micros64();
- return (now_us - _last_update_xy_us) * 1.0e-6f;
- }
- void AC_PosControl::write_log()
- {
- const Vector3f &pos_target = get_pos_target();
- const Vector3f &vel_target = get_vel_target();
- const Vector3f &accel_target = get_accel_target();
- const Vector3f &position = _inav.get_position();
- const Vector3f &velocity = _inav.get_velocity();
- float accel_x, accel_y;
- lean_angles_to_accel(accel_x, accel_y);
- AP::logger().Write("PSC",
- "TimeUS,TPX,TPY,PX,PY,TVX,TVY,VX,VY,TAX,TAY,AX,AY",
- "smmmmnnnnoooo",
- "F000000000000",
- "Qffffffffffff",
- AP_HAL::micros64(),
- double(pos_target.x * 0.01f),
- double(pos_target.y * 0.01f),
- double(position.x * 0.01f),
- double(position.y * 0.01f),
- double(vel_target.x * 0.01f),
- double(vel_target.y * 0.01f),
- double(velocity.x * 0.01f),
- double(velocity.y * 0.01f),
- double(accel_target.x * 0.01f),
- double(accel_target.y * 0.01f),
- double(accel_x * 0.01f),
- double(accel_y * 0.01f));
- }
- void AC_PosControl::init_vel_controller_xyz()
- {
-
- _roll_target = _ahrs.roll_sensor;
- _pitch_target = _ahrs.pitch_sensor;
- _pid_vel_xy.reset_filter();
- lean_angles_to_accel(_accel_target.x, _accel_target.y);
- _pid_vel_xy.set_integrator(_accel_target);
-
- _flags.reset_desired_vel_to_pos = true;
- _flags.reset_accel_to_lean_xy = true;
-
- const Vector3f& curr_pos = _inav.get_position();
- set_xy_target(curr_pos.x, curr_pos.y);
- set_alt_target(curr_pos.z);
-
- const Vector3f& curr_vel = _inav.get_velocity();
- set_desired_velocity(curr_vel);
-
- set_desired_accel_xy(0.0f, 0.0f);
-
- init_ekf_xy_reset();
- init_ekf_z_reset();
- }
- void AC_PosControl::update_vel_controller_xy()
- {
-
- const uint64_t now_us = AP_HAL::micros64();
- float dt = (now_us - _last_update_xy_us) * 1.0e-6f;
-
- if (dt >= 0.2f) {
- dt = 0.0f;
- }
-
- check_for_ekf_xy_reset();
-
- calc_leash_length_xy();
-
-
- desired_vel_to_pos(dt);
-
- run_xy_controller(dt);
-
- _last_update_xy_us = now_us;
- }
- void AC_PosControl::update_vel_controller_xyz()
- {
- update_vel_controller_xy();
-
- set_alt_target_from_climb_rate_ff(_vel_desired.z, _dt, false);
-
- update_z_controller();
- }
- float AC_PosControl::get_horizontal_error() const
- {
- return norm(_pos_error.x, _pos_error.y);
- }
- void AC_PosControl::calc_leash_length_xy()
- {
-
- if (_flags.recalc_leash_xy) {
- _leash = calc_leash_length(_speed_cms, _accel_cms, _p_pos_xy.kP());
- _flags.recalc_leash_xy = false;
- }
- }
- void AC_PosControl::desired_accel_to_vel(float nav_dt)
- {
-
- if (nav_dt < 0) {
- return;
- }
-
- if (_flags.reset_desired_vel_to_pos) {
- _flags.reset_desired_vel_to_pos = false;
- } else {
- _vel_desired.x += _accel_desired.x * nav_dt;
- _vel_desired.y += _accel_desired.y * nav_dt;
- }
- }
- void AC_PosControl::desired_vel_to_pos(float nav_dt)
- {
-
- if (nav_dt < 0) {
- return;
- }
-
- if (_flags.reset_desired_vel_to_pos) {
- _flags.reset_desired_vel_to_pos = false;
- } else {
- _pos_target.x += _vel_desired.x * nav_dt;
- _pos_target.y += _vel_desired.y * nav_dt;
- }
- }
- void AC_PosControl::run_xy_controller(float dt)
- {
- float ekfGndSpdLimit, ekfNavVelGainScaler;
- AP::ahrs_navekf().getEkfControlLimits(ekfGndSpdLimit, ekfNavVelGainScaler);
- Vector3f curr_pos = _inav.get_position();
- float kP = ekfNavVelGainScaler * _p_pos_xy.kP();
-
- if (kP <= 0.0f) {
- _vel_target.x = 0.0f;
- _vel_target.y = 0.0f;
- } else {
-
- _pos_error.x = _pos_target.x - curr_pos.x;
- _pos_error.y = _pos_target.y - curr_pos.y;
-
-
-
- if (limit_vector_length(_pos_error.x, _pos_error.y, _leash)) {
- _pos_target.x = curr_pos.x + _pos_error.x;
- _pos_target.y = curr_pos.y + _pos_error.y;
- }
- _vel_target = sqrt_controller(_pos_error, kP, _accel_cms);
- }
-
- _vel_target.x += _vel_desired.x;
- _vel_target.y += _vel_desired.y;
-
- Vector2f accel_target, vel_xy_p, vel_xy_i, vel_xy_d;
-
- if (_flags.vehicle_horiz_vel_override) {
- _flags.vehicle_horiz_vel_override = false;
- } else {
- _vehicle_horiz_vel.x = _inav.get_velocity().x;
- _vehicle_horiz_vel.y = _inav.get_velocity().y;
- }
-
- _vel_error.x = _vel_target.x - _vehicle_horiz_vel.x;
- _vel_error.y = _vel_target.y - _vehicle_horiz_vel.y;
-
-
- _pid_vel_xy.set_input(_vel_error);
-
- vel_xy_p = _pid_vel_xy.get_p();
-
-
- if (!_limit.accel_xy && !_motors.limit.throttle_upper) {
- vel_xy_i = _pid_vel_xy.get_i();
- } else {
- vel_xy_i = _pid_vel_xy.get_i_shrink();
- }
-
- vel_xy_d = _pid_vel_xy.get_d();
-
- accel_target.x = (vel_xy_p.x + vel_xy_i.x + vel_xy_d.x) * ekfNavVelGainScaler;
- accel_target.y = (vel_xy_p.y + vel_xy_i.y + vel_xy_d.y) * ekfNavVelGainScaler;
-
- if (_flags.reset_accel_to_lean_xy) {
- _accel_target_filter.reset(Vector2f(accel_target.x, accel_target.y));
- _flags.reset_accel_to_lean_xy = false;
- }
-
- _accel_target_filter.set_cutoff_frequency(MIN(_accel_xy_filt_hz, 5.0f * ekfNavVelGainScaler));
- _accel_target_filter.apply(accel_target, dt);
-
- _accel_target.x = _accel_target_filter.get().x;
- _accel_target.y = _accel_target_filter.get().y;
-
- _accel_target.x += _accel_desired.x;
- _accel_target.y += _accel_desired.y;
-
-
- float angle_max = MIN(_attitude_control.get_althold_lean_angle_max(), get_lean_angle_max_cd());
- float accel_max = MIN(GRAVITY_MSS * 100.0f * tanf(ToRad(angle_max * 0.01f)), POSCONTROL_ACCEL_XY_MAX);
- _limit.accel_xy = limit_vector_length(_accel_target.x, _accel_target.y, accel_max);
-
- accel_to_lean_angles(_accel_target.x, _accel_target.y, _roll_target, _pitch_target);
- }
- void AC_PosControl::accel_to_lean_angles(float accel_x_cmss, float accel_y_cmss, float& roll_target, float& pitch_target) const
- {
- float accel_right, accel_forward;
-
-
- accel_forward = accel_x_cmss * _ahrs.cos_yaw() + accel_y_cmss * _ahrs.sin_yaw();
- accel_right = -accel_x_cmss * _ahrs.sin_yaw() + accel_y_cmss * _ahrs.cos_yaw();
-
- pitch_target = atanf(-accel_forward / (GRAVITY_MSS * 100.0f)) * (18000.0f / M_PI);
- float cos_pitch_target = cosf(pitch_target * M_PI / 18000.0f);
- roll_target = atanf(accel_right * cos_pitch_target / (GRAVITY_MSS * 100.0f)) * (18000.0f / M_PI);
- }
- void AC_PosControl::lean_angles_to_accel(float& accel_x_cmss, float& accel_y_cmss) const
- {
-
-
- accel_x_cmss = (GRAVITY_MSS * 100) * (-_ahrs.cos_yaw() * _ahrs.sin_pitch() * _ahrs.cos_roll() - _ahrs.sin_yaw() * _ahrs.sin_roll()) / MAX(_ahrs.cos_roll() * _ahrs.cos_pitch(), 0.5f);
- accel_y_cmss = (GRAVITY_MSS * 100) * (-_ahrs.sin_yaw() * _ahrs.sin_pitch() * _ahrs.cos_roll() + _ahrs.cos_yaw() * _ahrs.sin_roll()) / MAX(_ahrs.cos_roll() * _ahrs.cos_pitch(), 0.5f);
- }
- float AC_PosControl::calc_leash_length(float speed_cms, float accel_cms, float kP) const
- {
- float leash_length;
-
- if (accel_cms <= 0.0f) {
- accel_cms = POSCONTROL_ACCELERATION_MIN;
- }
-
- if (kP <= 0.0f) {
- return POSCONTROL_LEASH_LENGTH_MIN;
- }
-
- if (speed_cms <= accel_cms / kP) {
-
- leash_length = speed_cms / kP;
- } else {
-
- leash_length = (accel_cms / (2.0f * kP * kP)) + (speed_cms * speed_cms / (2.0f * accel_cms));
- }
-
- if (leash_length < POSCONTROL_LEASH_LENGTH_MIN) {
- leash_length = POSCONTROL_LEASH_LENGTH_MIN;
- }
- return leash_length;
- }
- void AC_PosControl::init_ekf_xy_reset()
- {
- Vector2f pos_shift;
- _ekf_xy_reset_ms = _ahrs.getLastPosNorthEastReset(pos_shift);
- }
- void AC_PosControl::check_for_ekf_xy_reset()
- {
-
- Vector2f pos_shift;
- uint32_t reset_ms = _ahrs.getLastPosNorthEastReset(pos_shift);
- if (reset_ms != _ekf_xy_reset_ms) {
- shift_pos_xy_target(pos_shift.x * 100.0f, pos_shift.y * 100.0f);
- _ekf_xy_reset_ms = reset_ms;
- }
- }
- void AC_PosControl::init_ekf_z_reset()
- {
- float alt_shift;
- _ekf_z_reset_ms = _ahrs.getLastPosDownReset(alt_shift);
- }
- void AC_PosControl::check_for_ekf_z_reset()
- {
-
- float alt_shift;
- uint32_t reset_ms = _ahrs.getLastPosDownReset(alt_shift);
- if (reset_ms != 0 && reset_ms != _ekf_z_reset_ms) {
- shift_alt_target(-alt_shift * 100.0f);
- _ekf_z_reset_ms = reset_ms;
- }
- }
- bool AC_PosControl::limit_vector_length(float& vector_x, float& vector_y, float max_length)
- {
- float vector_length = norm(vector_x, vector_y);
- if ((vector_length > max_length) && is_positive(vector_length)) {
- vector_x *= (max_length / vector_length);
- vector_y *= (max_length / vector_length);
- return true;
- }
- return false;
- }
- Vector3f AC_PosControl::sqrt_controller(const Vector3f& error, float p, float second_ord_lim)
- {
- if (second_ord_lim < 0.0f || is_zero(second_ord_lim) || is_zero(p)) {
- return Vector3f(error.x * p, error.y * p, error.z);
- }
- float linear_dist = second_ord_lim / sq(p);
- float error_length = norm(error.x, error.y);
- if (error_length > linear_dist) {
- float first_order_scale = safe_sqrt(2.0f * second_ord_lim * (error_length - (linear_dist * 0.5f))) / error_length;
- return Vector3f(error.x * first_order_scale, error.y * first_order_scale, error.z);
- } else {
- return Vector3f(error.x * p, error.y * p, error.z);
- }
- }
- bool AC_PosControl::pre_arm_checks(const char *param_prefix,
- char *failure_msg,
- const uint8_t failure_msg_len)
- {
-
- const struct {
- const char *pid_name;
- AC_P &p;
- } ps[] = {
- { "POSXY", get_pos_xy_p() },
- { "POSZ", get_pos_z_p() },
- { "VELZ", get_vel_z_p() },
- };
- for (uint8_t i=0; i<ARRAY_SIZE(ps); i++) {
-
- if (!is_positive(ps[i].p.kP())) {
- hal.util->snprintf(failure_msg, failure_msg_len, "%s_%s_P must be > 0", param_prefix, ps[i].pid_name);
- return false;
- }
- }
-
- if (!is_positive(get_accel_z_pid().kP())) {
- hal.util->snprintf(failure_msg, failure_msg_len, "%s_ACCZ_P must be > 0", param_prefix);
- return false;
- }
- if (!is_positive(get_accel_z_pid().kI())) {
- hal.util->snprintf(failure_msg, failure_msg_len, "%s_ACCZ_I must be > 0", param_prefix);
- return false;
- }
- return true;
- }
|