2013-08-29 02:34:34 -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/>.
|
|
|
|
*/
|
|
|
|
|
2012-06-29 02:06:28 -03:00
|
|
|
/*
|
2015-05-04 22:49:54 -03:00
|
|
|
SITL.cpp - software in the loop state
|
2012-06-29 02:06:28 -03:00
|
|
|
*/
|
|
|
|
|
2015-10-22 10:58:33 -03:00
|
|
|
#include "SITL.h"
|
|
|
|
|
2015-08-11 03:28:46 -03:00
|
|
|
#include <AP_Common/AP_Common.h>
|
|
|
|
#include <AP_HAL/AP_HAL.h>
|
|
|
|
#include <GCS_MAVLink/GCS_MAVLink.h>
|
2019-01-18 00:23:42 -04:00
|
|
|
#include <AP_Logger/AP_Logger.h>
|
2012-06-29 02:06:28 -03:00
|
|
|
|
2014-01-03 01:01:18 -04:00
|
|
|
extern const AP_HAL::HAL& hal;
|
|
|
|
|
2015-10-22 10:04:42 -03:00
|
|
|
namespace SITL {
|
|
|
|
|
2019-02-10 01:01:19 -04:00
|
|
|
SITL *SITL::_singleton = nullptr;
|
2018-05-02 08:30:59 -03:00
|
|
|
|
2012-06-29 02:06:28 -03:00
|
|
|
// table of user settable parameters
|
2015-10-25 14:03:46 -03:00
|
|
|
const AP_Param::GroupInfo SITL::var_info[] = {
|
2015-05-08 18:22:37 -03:00
|
|
|
AP_GROUPINFO("BARO_RND", 0, SITL, baro_noise, 0.2f),
|
|
|
|
AP_GROUPINFO("GYR_RND", 1, SITL, gyro_noise, 0),
|
|
|
|
AP_GROUPINFO("ACC_RND", 2, SITL, accel_noise, 0),
|
|
|
|
AP_GROUPINFO("MAG_RND", 3, SITL, mag_noise, 0),
|
2012-08-06 22:02:14 -03:00
|
|
|
AP_GROUPINFO("GPS_DISABLE",4, SITL, gps_disable, 0),
|
2015-05-08 18:22:37 -03:00
|
|
|
AP_GROUPINFO("DRIFT_SPEED",5, SITL, drift_speed, 0.05f),
|
2012-08-06 22:02:14 -03:00
|
|
|
AP_GROUPINFO("DRIFT_TIME", 6, SITL, drift_time, 5),
|
2015-04-13 20:57:17 -03:00
|
|
|
AP_GROUPINFO("GPS_DELAY", 7, SITL, gps_delay, 1),
|
2012-08-17 01:21:43 -03:00
|
|
|
AP_GROUPINFO("ENGINE_MUL", 8, SITL, engine_mul, 1),
|
2013-04-16 22:39:23 -03:00
|
|
|
AP_GROUPINFO("WIND_SPD", 9, SITL, wind_speed, 0),
|
2012-08-24 08:22:20 -03:00
|
|
|
AP_GROUPINFO("WIND_DIR", 10, SITL, wind_direction, 180),
|
2015-06-28 22:25:59 -03:00
|
|
|
AP_GROUPINFO("WIND_TURB", 11, SITL, wind_turbulance, 0),
|
2013-02-16 05:15:57 -04:00
|
|
|
AP_GROUPINFO("GPS_TYPE", 12, SITL, gps_type, SITL::GPS_TYPE_UBLOX),
|
2013-02-16 07:00:16 -04:00
|
|
|
AP_GROUPINFO("GPS_BYTELOSS", 13, SITL, gps_byteloss, 0),
|
2013-05-06 21:38:36 -03:00
|
|
|
AP_GROUPINFO("GPS_NUMSATS", 14, SITL, gps_numsats, 10),
|
2013-05-27 00:37:18 -03:00
|
|
|
AP_GROUPINFO("MAG_ERROR", 15, SITL, mag_error, 0),
|
2016-10-25 05:54:56 -03:00
|
|
|
AP_GROUPINFO("SERVO_SPEED", 16, SITL, servo_speed, 0.14),
|
2013-09-19 03:51:03 -03:00
|
|
|
AP_GROUPINFO("GPS_GLITCH", 17, SITL, gps_glitch, 0),
|
2013-10-01 03:39:16 -03:00
|
|
|
AP_GROUPINFO("GPS_HZ", 18, SITL, gps_hertz, 5),
|
2015-04-24 02:01:28 -03:00
|
|
|
AP_GROUPINFO("BATT_VOLTAGE", 19, SITL, batt_voltage, 12.6f),
|
2016-05-10 16:42:08 -03:00
|
|
|
AP_GROUPINFO("ARSPD_RND", 20, SITL, arspd_noise, 0.5f),
|
2013-11-06 21:49:08 -04:00
|
|
|
AP_GROUPINFO("ACCEL_FAIL", 21, SITL, accel_fail, 0),
|
2013-11-24 05:16:46 -04:00
|
|
|
AP_GROUPINFO("BARO_DRIFT", 22, SITL, baro_drift, 0),
|
2013-11-28 06:43:25 -04:00
|
|
|
AP_GROUPINFO("SONAR_GLITCH", 23, SITL, sonar_glitch, 0),
|
|
|
|
AP_GROUPINFO("SONAR_RND", 24, SITL, sonar_noise, 0),
|
2013-12-19 18:40:31 -04:00
|
|
|
AP_GROUPINFO("RC_FAIL", 25, SITL, rc_fail, 0),
|
2014-03-02 16:07:09 -04:00
|
|
|
AP_GROUPINFO("GPS2_ENABLE", 26, SITL, gps2_enable, 0),
|
2014-04-11 03:47:26 -03:00
|
|
|
AP_GROUPINFO("BARO_DISABLE", 27, SITL, baro_disable, 0),
|
2014-04-21 02:24:45 -03:00
|
|
|
AP_GROUPINFO("FLOAT_EXCEPT", 28, SITL, float_exception, 1),
|
2014-05-12 06:44:15 -03:00
|
|
|
AP_GROUPINFO("MAG_MOT", 29, SITL, mag_mot, 0),
|
2014-07-28 05:40:17 -03:00
|
|
|
AP_GROUPINFO("ACC_BIAS", 30, SITL, accel_bias, 0),
|
|
|
|
AP_GROUPINFO("BARO_GLITCH", 31, SITL, baro_glitch, 0),
|
2014-08-10 09:36:38 -03:00
|
|
|
AP_GROUPINFO("SONAR_SCALE", 32, SITL, sonar_scale, 12.1212f),
|
2015-01-02 06:49:56 -04:00
|
|
|
AP_GROUPINFO("FLOW_ENABLE", 33, SITL, flow_enable, 0),
|
2015-01-03 06:47:28 -04:00
|
|
|
AP_GROUPINFO("TERRAIN", 34, SITL, terrain_enable, 1),
|
2015-01-05 23:02:43 -04:00
|
|
|
AP_GROUPINFO("FLOW_RATE", 35, SITL, flow_rate, 10),
|
2015-01-05 23:18:44 -04:00
|
|
|
AP_GROUPINFO("FLOW_DELAY", 36, SITL, flow_delay, 0),
|
2015-02-20 17:32:49 -04:00
|
|
|
AP_GROUPINFO("GPS_DRIFTALT", 37, SITL, gps_drift_alt, 0),
|
2015-04-13 03:22:57 -03:00
|
|
|
AP_GROUPINFO("BARO_DELAY", 38, SITL, baro_delay, 0),
|
|
|
|
AP_GROUPINFO("MAG_DELAY", 39, SITL, mag_delay, 0),
|
|
|
|
AP_GROUPINFO("WIND_DELAY", 40, SITL, wind_delay, 0),
|
2015-04-20 19:29:27 -03:00
|
|
|
AP_GROUPINFO("MAG_OFS", 41, SITL, mag_ofs, 0),
|
2015-07-12 03:26:43 -03:00
|
|
|
AP_GROUPINFO("ACC2_RND", 42, SITL, accel2_noise, 0),
|
2016-05-10 16:42:08 -03:00
|
|
|
AP_GROUPINFO("ARSPD_FAIL", 43, SITL, arspd_fail, 0),
|
2016-01-19 00:28:53 -04:00
|
|
|
AP_GROUPINFO("GYR_SCALE", 44, SITL, gyro_scale, 0),
|
2016-06-15 21:20:01 -03:00
|
|
|
AP_GROUPINFO("ADSB_COUNT", 45, SITL, adsb_plane_count, -1),
|
2016-07-21 04:02:13 -03:00
|
|
|
AP_GROUPINFO("ADSB_RADIUS", 46, SITL, adsb_radius_m, 10000),
|
2016-06-15 00:47:19 -03:00
|
|
|
AP_GROUPINFO("ADSB_ALT", 47, SITL, adsb_altitude_m, 1000),
|
2016-06-17 00:46:12 -03:00
|
|
|
AP_GROUPINFO("MAG_ALY", 48, SITL, mag_anomaly_ned, 0),
|
|
|
|
AP_GROUPINFO("MAG_ALY_HGT", 49, SITL, mag_anomaly_hgt, 1.0f),
|
2016-07-21 21:57:45 -03:00
|
|
|
AP_GROUPINFO("PIN_MASK", 50, SITL, pin_mask, 0),
|
2016-08-16 18:16:03 -03:00
|
|
|
AP_GROUPINFO("ADSB_TX", 51, SITL, adsb_tx, 0),
|
2016-09-18 18:45:24 -03:00
|
|
|
AP_GROUPINFO("SPEEDUP", 52, SITL, speedup, -1),
|
2016-10-14 20:42:45 -03:00
|
|
|
AP_GROUPINFO("IMU_POS", 53, SITL, imu_pos_offset, 0),
|
|
|
|
AP_GROUPINFO("GPS_POS", 54, SITL, gps_pos_offset, 0),
|
|
|
|
AP_GROUPINFO("SONAR_POS", 55, SITL, rngfnd_pos_offset, 0),
|
|
|
|
AP_GROUPINFO("FLOW_POS", 56, SITL, optflow_pos_offset, 0),
|
2016-12-18 00:53:40 -04:00
|
|
|
AP_GROUPINFO("ACC2_BIAS", 57, SITL, accel2_bias, 0),
|
2017-01-30 15:04:10 -04:00
|
|
|
AP_GROUPINFO("GPS_NOISE", 58, SITL, gps_noise, 0),
|
2017-03-03 22:39:04 -04:00
|
|
|
AP_GROUPINFO("GP2_GLITCH", 59, SITL, gps2_glitch, 0),
|
2017-03-20 17:32:54 -03:00
|
|
|
AP_GROUPINFO("ENGINE_FAIL", 60, SITL, engine_fail, 0),
|
2017-04-14 04:57:37 -03:00
|
|
|
AP_GROUPINFO("GPS2_TYPE", 61, SITL, gps2_type, SITL::GPS_TYPE_UBLOX),
|
2020-05-11 06:35:32 -03:00
|
|
|
AP_SUBGROUPEXTENSION("", 62, SITL, var_info3),
|
2017-04-12 03:28:04 -03:00
|
|
|
AP_SUBGROUPEXTENSION("", 63, SITL, var_info2),
|
2012-06-29 02:06:28 -03:00
|
|
|
AP_GROUPEND
|
|
|
|
};
|
|
|
|
|
2017-04-12 03:28:04 -03:00
|
|
|
// second table of user settable parameters for SITL.
|
|
|
|
const AP_Param::GroupInfo SITL::var_info2[] = {
|
|
|
|
AP_GROUPINFO("TEMP_START", 1, SITL, temp_start, 25),
|
|
|
|
AP_GROUPINFO("TEMP_FLIGHT", 2, SITL, temp_flight, 35),
|
|
|
|
AP_GROUPINFO("TEMP_TCONST", 3, SITL, temp_tconst, 30),
|
2017-04-12 19:48:50 -03:00
|
|
|
AP_GROUPINFO("TEMP_BFACTOR", 4, SITL, temp_baro_factor, 0),
|
2017-07-14 02:00:46 -03:00
|
|
|
AP_GROUPINFO("GPS_LOCKTIME", 5, SITL, gps_lock_time, 0),
|
2017-08-01 17:44:18 -03:00
|
|
|
AP_GROUPINFO("ARSPD_FAIL_P", 6, SITL, arspd_fail_pressure, 0),
|
|
|
|
AP_GROUPINFO("ARSPD_PITOT", 7, SITL, arspd_fail_pitot_pressure, 0),
|
2017-09-17 21:24:45 -03:00
|
|
|
AP_GROUPINFO("GPS_ALT_OFS", 8, SITL, gps_alt_offset, 0),
|
2017-09-20 00:13:49 -03:00
|
|
|
AP_GROUPINFO("ARSPD_SIGN", 9, SITL, arspd_signflip, 0),
|
2018-01-30 12:38:36 -04:00
|
|
|
AP_GROUPINFO("WIND_DIR_Z", 10, SITL, wind_dir_z, 0),
|
2018-03-09 04:08:04 -04:00
|
|
|
AP_GROUPINFO("ARSPD2_FAIL", 11, SITL, arspd2_fail, 0),
|
|
|
|
AP_GROUPINFO("ARSPD2_FAILP",12, SITL, arspd2_fail_pressure, 0),
|
|
|
|
AP_GROUPINFO("ARSPD2_PITOT",13, SITL, arspd2_fail_pitot_pressure, 0),
|
2018-03-25 23:54:05 -03:00
|
|
|
AP_GROUPINFO("VICON_HSTLEN",14, SITL, vicon_observation_history_length, 0),
|
2018-04-30 12:25:19 -03:00
|
|
|
AP_GROUPINFO("WIND_T" ,15, SITL, wind_type, SITL::WIND_TYPE_SQRT),
|
|
|
|
AP_GROUPINFO("WIND_T_ALT" ,16, SITL, wind_type_alt, 60),
|
|
|
|
AP_GROUPINFO("WIND_T_COEF", 17, SITL, wind_type_coef, 0.01f),
|
2018-07-16 05:19:38 -03:00
|
|
|
AP_GROUPINFO("MAG_DIA", 18, SITL, mag_diag, 0),
|
|
|
|
AP_GROUPINFO("MAG_ODI", 19, SITL, mag_offdiag, 0),
|
|
|
|
AP_GROUPINFO("MAG_ORIENT", 20, SITL, mag_orient, 0),
|
2018-07-23 23:46:11 -03:00
|
|
|
AP_GROUPINFO("RC_CHANCOUNT",21, SITL, rc_chancount, 16),
|
2018-07-31 09:33:23 -03:00
|
|
|
// @Group: SPR_
|
|
|
|
// @Path: ./SIM_Sprayer.cpp
|
|
|
|
AP_SUBGROUPINFO(sprayer_sim, "SPR_", 22, SITL, Sprayer),
|
|
|
|
// @Group: GRPS_
|
|
|
|
// @Path: ./SIM_Gripper_Servo.cpp
|
|
|
|
AP_SUBGROUPINFO(gripper_sim, "GRPS_", 23, SITL, Gripper_Servo),
|
|
|
|
// @Group: GRPE_
|
|
|
|
// @Path: ./SIM_Gripper_EPM.cpp
|
|
|
|
AP_SUBGROUPINFO(gripper_epm_sim, "GRPE_", 24, SITL, Gripper_EPM),
|
2018-11-08 23:06:30 -04:00
|
|
|
|
|
|
|
// weight on wheels pin
|
|
|
|
AP_GROUPINFO("WOW_PIN", 25, SITL, wow_pin, -1),
|
2018-07-31 09:33:23 -03:00
|
|
|
|
2019-01-07 05:32:17 -04:00
|
|
|
// vibration frequencies on each axis
|
|
|
|
AP_GROUPINFO("VIB_FREQ", 26, SITL, vibe_freq, 0),
|
2019-01-08 21:39:44 -04:00
|
|
|
|
|
|
|
// @Path: ./SIM_Parachute.cpp
|
|
|
|
AP_SUBGROUPINFO(parachute_sim, "PARA_", 27, SITL, Parachute),
|
|
|
|
|
2019-08-15 02:43:46 -03:00
|
|
|
// enable bandwidth limitting on telemetry ports:
|
2019-01-24 20:26:19 -04:00
|
|
|
AP_GROUPINFO("BAUDLIMIT_EN", 28, SITL, telem_baudlimit_enable, 0),
|
|
|
|
|
2018-08-03 07:52:20 -03:00
|
|
|
// @Group: PLD_
|
|
|
|
// @Path: ./SIM_Precland.cpp
|
|
|
|
AP_SUBGROUPINFO(precland_sim, "PLD_", 29, SITL, SIM_Precland),
|
|
|
|
|
2019-08-15 02:43:46 -03:00
|
|
|
// apply a force to the vehicle over a period of time:
|
2017-11-27 06:45:23 -04:00
|
|
|
AP_GROUPINFO("SHOVE_X", 30, SITL, shove.x, 0),
|
|
|
|
AP_GROUPINFO("SHOVE_Y", 31, SITL, shove.y, 0),
|
|
|
|
AP_GROUPINFO("SHOVE_Z", 32, SITL, shove.z, 0),
|
|
|
|
AP_GROUPINFO("SHOVE_TIME", 33, SITL, shove.t, 0),
|
2019-02-14 05:23:25 -04:00
|
|
|
|
|
|
|
// optical flow sensor measurement noise in rad/sec
|
|
|
|
AP_GROUPINFO("FLOW_RND", 34, SITL, flow_noise, 0.05f),
|
|
|
|
|
2019-04-17 23:41:00 -03:00
|
|
|
// accel and gyro fail masks
|
|
|
|
AP_GROUPINFO("GYR_FAIL_MSK", 35, SITL, gyro_fail_mask, 0),
|
|
|
|
AP_GROUPINFO("ACC_FAIL_MSK", 36, SITL, accel_fail_mask, 0),
|
|
|
|
|
2019-04-10 22:55:04 -03:00
|
|
|
AP_GROUPINFO("TWIST_X", 37, SITL, twist.x, 0),
|
|
|
|
AP_GROUPINFO("TWIST_Y", 38, SITL, twist.y, 0),
|
|
|
|
AP_GROUPINFO("TWIST_Z", 39, SITL, twist.z, 0),
|
|
|
|
AP_GROUPINFO("TWIST_TIME", 40, SITL, twist.t, 0),
|
|
|
|
|
|
|
|
AP_GROUPINFO("GND_BEHAV", 41, SITL, gnd_behav, -1),
|
2019-01-05 06:45:02 -04:00
|
|
|
AP_GROUPINFO("BARO_COUNT", 42, SITL, baro_count, 1),
|
2019-04-10 22:55:04 -03:00
|
|
|
|
2017-05-28 01:08:14 -03:00
|
|
|
AP_GROUPINFO("GPS_HDG", 43, SITL, gps_hdg_enabled, 0),
|
|
|
|
|
2019-05-27 20:52:11 -03:00
|
|
|
// sailboat wave and tide simulation parameters
|
2019-05-19 12:03:16 -03:00
|
|
|
AP_GROUPINFO("WAVE_ENABLE", 44, SITL, wave.enable, 0.0f),
|
|
|
|
AP_GROUPINFO("WAVE_LENGTH", 45, SITL, wave.length, 10.0f),
|
|
|
|
AP_GROUPINFO("WAVE_AMP", 46, SITL, wave.amp, 0.5f),
|
|
|
|
AP_GROUPINFO("WAVE_DIR", 47, SITL, wave.direction, 0.0f),
|
|
|
|
AP_GROUPINFO("WAVE_SPEED", 48, SITL, wave.speed, 0.5f),
|
2019-05-27 20:52:11 -03:00
|
|
|
AP_GROUPINFO("TIDE_DIR", 49, SITL, tide.direction, 0.0f),
|
|
|
|
AP_GROUPINFO("TIDE_SPEED", 50, SITL, tide.speed, 0.0f),
|
2019-05-19 12:03:16 -03:00
|
|
|
|
2019-08-15 03:53:35 -03:00
|
|
|
// the following coordinates are for CMAC, in Canberra
|
|
|
|
AP_GROUPINFO("OPOS_LAT", 51, SITL, opos.lat, -35.363261f),
|
|
|
|
AP_GROUPINFO("OPOS_LNG", 52, SITL, opos.lng, 149.165230f),
|
|
|
|
AP_GROUPINFO("OPOS_ALT", 53, SITL, opos.alt, 584.0f),
|
|
|
|
AP_GROUPINFO("OPOS_HDG", 54, SITL, opos.hdg, 353.0f),
|
|
|
|
|
2019-09-17 05:10:06 -03:00
|
|
|
// extra delay per main loop
|
|
|
|
AP_GROUPINFO("LOOP_DELAY", 55, SITL, loop_delay, 0),
|
|
|
|
|
2019-10-07 04:30:22 -03:00
|
|
|
// @Path: ./SIM_Buzzer.cpp
|
|
|
|
AP_SUBGROUPINFO(buzzer_sim, "BZ_", 56, SITL, Buzzer),
|
|
|
|
|
2019-10-08 21:00:53 -03:00
|
|
|
// @Path: ./SIM_ToneAlarm.cpp
|
|
|
|
AP_SUBGROUPINFO(tonealarm_sim, "TA_", 57, SITL, ToneAlarm),
|
|
|
|
|
2019-12-16 06:04:53 -04:00
|
|
|
AP_GROUPINFO("MAG_SCALING", 60, SITL, mag_scaling, 1),
|
|
|
|
|
2017-04-12 03:28:04 -03:00
|
|
|
AP_GROUPEND
|
2019-01-05 06:45:02 -04:00
|
|
|
|
2017-04-12 03:28:04 -03:00
|
|
|
};
|
2019-05-19 12:03:16 -03:00
|
|
|
|
2020-05-11 06:35:32 -03:00
|
|
|
// third table of user settable parameters for SITL.
|
|
|
|
const AP_Param::GroupInfo SITL::var_info3[] = {
|
2020-05-12 02:34:16 -03:00
|
|
|
AP_GROUPINFO("ODOM_ENABLE", 1, SITL, odom_enable, 0),
|
2020-05-11 06:35:32 -03:00
|
|
|
AP_GROUPINFO("MAG1_DEVID", 3, SITL, mag_devid[0], 97539),
|
|
|
|
AP_GROUPINFO("MAG2_DEVID", 4, SITL, mag_devid[1], 131874),
|
|
|
|
AP_GROUPINFO("MAG3_DEVID", 5, SITL, mag_devid[2], 263178),
|
|
|
|
AP_GROUPINFO("MAG4_DEVID", 6, SITL, mag_devid[3], 97283),
|
|
|
|
AP_GROUPINFO("MAG5_DEVID", 7, SITL, mag_devid[4], 97795),
|
|
|
|
AP_GROUPINFO("MAG6_DEVID", 8, SITL, mag_devid[5], 98051),
|
|
|
|
AP_GROUPINFO("MAG7_DEVID", 9, SITL, mag_devid[6], 0),
|
|
|
|
AP_GROUPINFO("MAG8_DEVID", 10, SITL, mag_devid[7], 0),
|
|
|
|
AP_GROUPEND
|
|
|
|
|
|
|
|
};
|
2012-06-29 02:06:28 -03:00
|
|
|
|
|
|
|
/* report SITL state via MAVLink */
|
|
|
|
void SITL::simstate_send(mavlink_channel_t chan)
|
|
|
|
{
|
2015-05-04 22:49:54 -03:00
|
|
|
float yaw;
|
2012-06-29 02:06:28 -03:00
|
|
|
|
2015-05-04 22:49:54 -03:00
|
|
|
// convert to same conventions as DCM
|
|
|
|
yaw = state.yawDeg;
|
|
|
|
if (yaw > 180) {
|
|
|
|
yaw -= 360;
|
|
|
|
}
|
2012-06-29 02:06:28 -03:00
|
|
|
|
|
|
|
mavlink_msg_simstate_send(chan,
|
|
|
|
ToRad(state.rollDeg),
|
|
|
|
ToRad(state.pitchDeg),
|
|
|
|
ToRad(yaw),
|
|
|
|
state.xAccel,
|
|
|
|
state.yAccel,
|
|
|
|
state.zAccel,
|
2015-10-22 10:15:20 -03:00
|
|
|
radians(state.rollRate),
|
|
|
|
radians(state.pitchRate),
|
|
|
|
radians(state.yawRate),
|
2013-08-14 01:27:39 -03:00
|
|
|
state.latitude*1.0e7,
|
|
|
|
state.longitude*1.0e7);
|
2012-06-29 02:06:28 -03:00
|
|
|
}
|
|
|
|
|
2019-01-18 00:23:42 -04:00
|
|
|
/* report SITL state to AP_Logger */
|
2019-01-17 18:15:50 -04:00
|
|
|
void SITL::Log_Write_SIMSTATE()
|
2014-01-03 01:01:18 -04:00
|
|
|
{
|
2015-05-04 22:49:54 -03:00
|
|
|
float yaw;
|
2014-01-03 01:01:18 -04:00
|
|
|
|
2015-05-04 22:49:54 -03:00
|
|
|
// convert to same conventions as DCM
|
|
|
|
yaw = state.yawDeg;
|
|
|
|
if (yaw > 180) {
|
|
|
|
yaw -= 360;
|
|
|
|
}
|
2014-01-03 01:01:18 -04:00
|
|
|
|
|
|
|
struct log_AHRS pkt = {
|
|
|
|
LOG_PACKET_HEADER_INIT(LOG_SIMSTATE_MSG),
|
2015-11-19 23:15:52 -04:00
|
|
|
time_us : AP_HAL::micros64(),
|
2015-05-04 22:49:54 -03:00
|
|
|
roll : (int16_t)(state.rollDeg*100),
|
|
|
|
pitch : (int16_t)(state.pitchDeg*100),
|
|
|
|
yaw : (uint16_t)(wrap_360_cd(yaw*100)),
|
|
|
|
alt : (float)state.altitude,
|
|
|
|
lat : (int32_t)(state.latitude*1.0e7),
|
2017-04-15 08:20:28 -03:00
|
|
|
lng : (int32_t)(state.longitude*1.0e7),
|
|
|
|
q1 : state.quaternion.q1,
|
|
|
|
q2 : state.quaternion.q2,
|
|
|
|
q3 : state.quaternion.q3,
|
|
|
|
q4 : state.quaternion.q4,
|
2014-01-03 01:01:18 -04:00
|
|
|
};
|
2019-01-18 00:24:08 -04:00
|
|
|
AP::logger().WriteBlock(&pkt, sizeof(pkt));
|
2014-01-03 01:01:18 -04:00
|
|
|
}
|
|
|
|
|
2015-01-03 00:44:19 -04:00
|
|
|
/*
|
|
|
|
convert a set of roll rates from earth frame to body frame
|
|
|
|
output values are in radians/second
|
|
|
|
*/
|
2012-06-29 02:06:28 -03:00
|
|
|
void SITL::convert_body_frame(double rollDeg, double pitchDeg,
|
|
|
|
double rollRate, double pitchRate, double yawRate,
|
|
|
|
double *p, double *q, double *r)
|
|
|
|
{
|
2015-05-04 22:49:54 -03:00
|
|
|
double phi, theta, phiDot, thetaDot, psiDot;
|
2012-06-29 02:06:28 -03:00
|
|
|
|
2015-05-04 22:49:54 -03:00
|
|
|
phi = ToRad(rollDeg);
|
|
|
|
theta = ToRad(pitchDeg);
|
|
|
|
phiDot = ToRad(rollRate);
|
|
|
|
thetaDot = ToRad(pitchRate);
|
|
|
|
psiDot = ToRad(yawRate);
|
2012-06-29 02:06:28 -03:00
|
|
|
|
2015-05-30 09:51:38 -03:00
|
|
|
*p = phiDot - psiDot*sin(theta);
|
|
|
|
*q = cos(phi)*thetaDot + sin(phi)*psiDot*cos(theta);
|
|
|
|
*r = cos(phi)*psiDot*cos(theta) - sin(phi)*thetaDot;
|
2012-06-29 02:06:28 -03:00
|
|
|
}
|
|
|
|
|
2015-05-02 07:29:16 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
convert angular velocities from body frame to
|
|
|
|
earth frame.
|
2015-05-04 22:49:54 -03:00
|
|
|
|
2015-05-02 07:29:16 -03:00
|
|
|
all inputs and outputs are in radians/s
|
|
|
|
*/
|
|
|
|
Vector3f SITL::convert_earth_frame(const Matrix3f &dcm, const Vector3f &gyro)
|
|
|
|
{
|
|
|
|
float p = gyro.x;
|
|
|
|
float q = gyro.y;
|
|
|
|
float r = gyro.z;
|
|
|
|
|
|
|
|
float phi, theta, psi;
|
|
|
|
dcm.to_euler(&phi, &theta, &psi);
|
|
|
|
|
|
|
|
float phiDot = p + tanf(theta)*(q*sinf(phi) + r*cosf(phi));
|
|
|
|
float thetaDot = q*cosf(phi) - r*sinf(phi);
|
|
|
|
if (fabsf(cosf(theta)) < 1.0e-20f) {
|
|
|
|
theta += 1.0e-10f;
|
|
|
|
}
|
|
|
|
float psiDot = (q*sinf(phi) + r*cosf(phi))/cosf(theta);
|
|
|
|
return Vector3f(phiDot, thetaDot, psiDot);
|
|
|
|
}
|
|
|
|
|
2015-10-22 10:04:42 -03:00
|
|
|
} // namespace SITL
|
2018-05-02 08:30:59 -03:00
|
|
|
|
|
|
|
|
|
|
|
namespace AP {
|
|
|
|
|
|
|
|
SITL::SITL *sitl()
|
|
|
|
{
|
2019-02-10 01:01:19 -04:00
|
|
|
return SITL::SITL::get_singleton();
|
2018-05-02 08:30:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
};
|