2015-05-02 05:09: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/>.
|
|
|
|
*/
|
|
|
|
/*
|
2015-05-03 04:47:58 -03:00
|
|
|
multicopter simulator class
|
2015-05-02 05:09:30 -03:00
|
|
|
*/
|
|
|
|
|
2015-10-22 11:04:23 -03:00
|
|
|
#pragma once
|
2015-05-02 07:28:57 -03:00
|
|
|
|
2015-05-02 05:09:30 -03:00
|
|
|
#include "SIM_Aircraft.h"
|
2016-04-21 06:56:44 -03:00
|
|
|
#include "SIM_Motor.h"
|
|
|
|
#include "SIM_Frame.h"
|
2016-10-30 03:00:04 -03:00
|
|
|
|
2016-05-01 18:56:56 -03:00
|
|
|
namespace SITL {
|
2015-05-02 05:09:30 -03:00
|
|
|
|
|
|
|
/*
|
|
|
|
a multicopter simulator
|
|
|
|
*/
|
2015-10-22 10:15:34 -03:00
|
|
|
class MultiCopter : public Aircraft {
|
2015-05-02 05:09:30 -03:00
|
|
|
public:
|
2019-08-15 01:01:24 -03:00
|
|
|
MultiCopter(const char *frame_str);
|
2015-05-02 05:09:30 -03:00
|
|
|
|
|
|
|
/* update model by one time step */
|
2019-02-21 19:12:05 -04:00
|
|
|
void update(const struct sitl_input &input) override;
|
2015-05-02 05:09:30 -03:00
|
|
|
|
2020-01-17 17:19:40 -04:00
|
|
|
// get motor offset for model
|
|
|
|
virtual uint16_t get_motors_offset() const override {
|
|
|
|
return frame->motor_offset;
|
|
|
|
}
|
|
|
|
|
2015-05-03 04:47:58 -03:00
|
|
|
/* static object creator */
|
2019-08-15 01:01:24 -03:00
|
|
|
static Aircraft *create(const char *frame_str) {
|
|
|
|
return new MultiCopter(frame_str);
|
2015-05-04 22:49:54 -03:00
|
|
|
}
|
2015-05-03 04:47:58 -03:00
|
|
|
|
2015-12-31 23:15:06 -04:00
|
|
|
protected:
|
|
|
|
// calculate rotational and linear accelerations
|
|
|
|
void calculate_forces(const struct sitl_input &input, Vector3f &rot_accel, Vector3f &body_accel);
|
|
|
|
Frame *frame;
|
2015-05-02 05:09:30 -03:00
|
|
|
};
|
|
|
|
|
2016-05-01 18:56:56 -03:00
|
|
|
}
|