mirror of
https://github.com/ArduPilot/ardupilot.git
synced 2026-02-07 05:35:54 +08:00
Only one ever exists so there's little reason to construct all possibilities ahead of time and store them in global RAM. Instead, keep a list of the parameters and only construct the one requested. Saves some 60K of RAM on hardware when using sim on hardware. In particular, enough is saved to get esp32empty copter building again. But esp32 sim on hardware still does not work due to other regressions.
89 lines
2.4 KiB
C++
89 lines
2.4 KiB
C++
/*
|
|
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/>.
|
|
*/
|
|
/*
|
|
multicopter simulator class
|
|
*/
|
|
|
|
#include "SIM_Multicopter.h"
|
|
#include <AP_Motors/AP_Motors.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
using namespace SITL;
|
|
|
|
MultiCopter::MultiCopter(const char *frame_str) :
|
|
Aircraft(frame_str)
|
|
{
|
|
frame = Frame::create_frame(frame_str);
|
|
if (frame == nullptr) {
|
|
printf("Frame '%s' not found or insufficient memory", frame_str);
|
|
exit(1);
|
|
}
|
|
|
|
frame->init(frame_str, &battery);
|
|
|
|
mass = frame->get_mass();
|
|
frame_height = 0.1;
|
|
ground_behavior = GROUND_BEHAVIOR_NO_MOVEMENT;
|
|
lock_step_scheduled = true;
|
|
}
|
|
|
|
// calculate rotational and linear accelerations
|
|
void MultiCopter::calculate_forces(const struct sitl_input &input, Vector3f &rot_accel, Vector3f &body_accel)
|
|
{
|
|
motor_mask |= ((1U<<frame->num_motors)-1U) << frame->motor_offset;
|
|
frame->calculate_forces(*this, input, rot_accel, body_accel, rpm);
|
|
|
|
add_shove_forces(rot_accel, body_accel);
|
|
add_twist_forces(rot_accel);
|
|
|
|
// add forces from slung payload or tether payload
|
|
add_external_forces(body_accel);
|
|
}
|
|
|
|
/*
|
|
update the multicopter simulation by one time step
|
|
*/
|
|
void MultiCopter::update(const struct sitl_input &input)
|
|
{
|
|
// get wind vector setup
|
|
update_wind(input);
|
|
|
|
Vector3f rot_accel;
|
|
|
|
calculate_forces(input, rot_accel, accel_body);
|
|
// simulated clamp holding vehicle down
|
|
if (clamp.clamped(*this, input)) {
|
|
rot_accel.zero();
|
|
accel_body.zero();
|
|
}
|
|
|
|
// estimate voltage and current
|
|
frame->current_and_voltage(battery_voltage, battery_current);
|
|
|
|
battery.set_current(battery_current);
|
|
|
|
update_dynamics(rot_accel);
|
|
update_external_payload(input);
|
|
|
|
// update lat/lon/altitude
|
|
update_position();
|
|
time_advance();
|
|
|
|
// update magnetic field
|
|
update_mag_field_bf();
|
|
}
|
|
|