2015-05-31 23:53:30 -03:00
|
|
|
/*
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
antenna-tracker simulator class
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "SIM_Tracker.h"
|
2015-10-22 10:58:33 -03:00
|
|
|
|
2015-05-31 23:53:30 -03:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2015-10-22 10:04:42 -03:00
|
|
|
namespace SITL {
|
|
|
|
|
2015-05-31 23:53:30 -03:00
|
|
|
/*
|
|
|
|
update function for position (normal) servos.
|
|
|
|
*/
|
2021-02-01 12:37:57 -04:00
|
|
|
void Tracker::update_position_servos(float delta_time, float &yaw_rate, float &pitch_rate) const
|
2015-05-31 23:53:30 -03:00
|
|
|
{
|
2015-06-01 01:08:45 -03:00
|
|
|
float pitch_target = pitch_input*pitch_range;
|
|
|
|
float yaw_target = yaw_input*yaw_range;
|
2015-05-31 23:53:30 -03:00
|
|
|
|
2015-06-01 01:08:45 -03:00
|
|
|
pitch_rate = constrain_float(pitch_target - pitch_current_relative, -pitchrate, pitchrate);
|
|
|
|
yaw_rate = constrain_float(yaw_target - yaw_current_relative, -yawrate, yawrate);
|
2015-05-31 23:53:30 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
update function for onoff servos.
|
2015-10-22 10:15:20 -03:00
|
|
|
These servos either move at a constant rate or are still
|
2015-05-31 23:53:30 -03:00
|
|
|
Returns (yaw_rate,pitch_rate) tuple
|
|
|
|
*/
|
2021-02-01 12:37:57 -04:00
|
|
|
void Tracker::update_onoff_servos(float &yaw_rate, float &pitch_rate) const
|
2015-05-31 23:53:30 -03:00
|
|
|
{
|
|
|
|
if (fabsf(yaw_input) < 0.1) {
|
|
|
|
yaw_rate = 0;
|
|
|
|
} else if (yaw_input >= 0.1) {
|
|
|
|
yaw_rate = yawrate;
|
|
|
|
} else {
|
|
|
|
yaw_rate = -yawrate;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fabsf(pitch_input) < 0.1) {
|
|
|
|
pitch_rate = 0;
|
|
|
|
} else if (pitch_input >= 0.1) {
|
|
|
|
pitch_rate = pitchrate;
|
|
|
|
} else {
|
|
|
|
pitch_rate = -pitchrate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
update state of tracker
|
|
|
|
*/
|
|
|
|
void Tracker::update(const struct sitl_input &input)
|
|
|
|
{
|
|
|
|
// how much time has passed?
|
|
|
|
float delta_time = frame_time_us * 1.0e-6f;
|
2015-10-22 10:15:20 -03:00
|
|
|
|
2016-02-26 01:16:28 -04:00
|
|
|
float yaw_rate = 0.0f, pitch_rate = 0.0f;
|
2015-05-31 23:53:30 -03:00
|
|
|
|
|
|
|
yaw_input = (input.servos[0]-1500)/500.0f;
|
|
|
|
pitch_input = (input.servos[1]-1500)/500.0f;
|
|
|
|
|
|
|
|
// implement yaw and pitch limits
|
|
|
|
float r, p, y;
|
|
|
|
dcm.to_euler(&r, &p, &y);
|
|
|
|
|
2015-06-01 01:08:45 -03:00
|
|
|
pitch_current_relative = degrees(p) - zero_pitch;
|
|
|
|
yaw_current_relative = degrees(y) - zero_yaw;
|
2015-05-31 23:53:30 -03:00
|
|
|
float roll_current = degrees(r);
|
|
|
|
if (yaw_current_relative > 180) {
|
|
|
|
yaw_current_relative -= 360;
|
|
|
|
}
|
|
|
|
if (yaw_current_relative < -180) {
|
|
|
|
yaw_current_relative += 360;
|
|
|
|
}
|
|
|
|
if (yaw_rate > 0 && yaw_current_relative >= yaw_range) {
|
|
|
|
yaw_rate = 0;
|
|
|
|
}
|
|
|
|
if (yaw_rate < 0 && yaw_current_relative <= -yaw_range) {
|
|
|
|
yaw_rate = 0;
|
|
|
|
}
|
|
|
|
if (pitch_rate > 0 && pitch_current_relative >= pitch_range) {
|
|
|
|
pitch_rate = 0;
|
|
|
|
}
|
|
|
|
if (pitch_rate < 0 && pitch_current_relative <= -pitch_range) {
|
|
|
|
pitch_rate = 0;
|
|
|
|
}
|
|
|
|
|
2015-06-01 01:08:45 -03:00
|
|
|
if (onoff) {
|
|
|
|
update_onoff_servos(yaw_rate, pitch_rate);
|
|
|
|
} else {
|
|
|
|
update_position_servos(delta_time, yaw_rate, pitch_rate);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-31 23:53:30 -03:00
|
|
|
// keep it level
|
|
|
|
float roll_rate = 0 - roll_current;
|
|
|
|
|
|
|
|
if (time_now_us - last_debug_us > 2e6f && !onoff) {
|
|
|
|
last_debug_us = time_now_us;
|
|
|
|
printf("roll=%.1f pitch=%.1f yaw=%.1f rates=%.1f/%.1f/%.1f in=%.3f,%.3f\n",
|
|
|
|
roll_current,
|
2015-10-22 10:15:20 -03:00
|
|
|
pitch_current_relative,
|
|
|
|
yaw_current_relative,
|
2015-05-31 23:53:30 -03:00
|
|
|
roll_rate, pitch_rate, yaw_rate,
|
|
|
|
yaw_input, pitch_input);
|
|
|
|
}
|
|
|
|
|
|
|
|
gyro = Vector3f(radians(roll_rate),radians(pitch_rate),radians(yaw_rate));
|
|
|
|
|
|
|
|
// update attitude
|
|
|
|
dcm.rotate(gyro * delta_time);
|
|
|
|
dcm.normalize();
|
|
|
|
|
|
|
|
Vector3f accel_earth = Vector3f(0, 0, -GRAVITY_MSS);
|
|
|
|
accel_body = dcm.transposed() * accel_earth;
|
|
|
|
|
|
|
|
// new velocity vector
|
|
|
|
velocity_ef.zero();
|
|
|
|
update_position();
|
2017-03-03 06:23:40 -04:00
|
|
|
time_advance();
|
2016-06-17 00:46:12 -03:00
|
|
|
|
|
|
|
// update magnetic field
|
|
|
|
update_mag_field_bf();
|
2015-05-31 23:53:30 -03:00
|
|
|
}
|
|
|
|
|
2015-10-22 10:04:42 -03:00
|
|
|
} // namespace SITL
|