2015-05-03 04:47:58 -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/>.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
helicopter simulator class
|
|
|
|
*/
|
|
|
|
|
2015-10-22 11:04:23 -03:00
|
|
|
#pragma once
|
2015-05-03 04:47:58 -03:00
|
|
|
|
|
|
|
#include "SIM_Aircraft.h"
|
|
|
|
|
2015-10-22 10:04:42 -03:00
|
|
|
namespace SITL {
|
|
|
|
|
2015-05-03 04:47:58 -03:00
|
|
|
/*
|
|
|
|
a helicopter simulator
|
|
|
|
*/
|
2015-10-22 10:15:34 -03:00
|
|
|
class Helicopter : public Aircraft {
|
2015-05-03 04:47:58 -03:00
|
|
|
public:
|
|
|
|
Helicopter(const char *home_str, const char *frame_str);
|
|
|
|
|
|
|
|
/* update model by one time step */
|
2019-02-21 19:12:05 -04:00
|
|
|
void update(const struct sitl_input &input) override;
|
2015-05-03 04:47:58 -03:00
|
|
|
|
|
|
|
/* static object creator */
|
2015-05-04 22:49:54 -03:00
|
|
|
static Aircraft *create(const char *home_str, const char *frame_str) {
|
|
|
|
return new Helicopter(home_str, frame_str);
|
|
|
|
}
|
2015-05-03 04:47:58 -03:00
|
|
|
|
|
|
|
private:
|
2015-05-31 19:04:51 -03:00
|
|
|
float terminal_rotation_rate = 4*radians(360.0f);
|
|
|
|
float hover_throttle = 0.65f;
|
|
|
|
float terminal_velocity = 40;
|
2015-11-10 20:27:15 -04:00
|
|
|
float hover_lean = 3.0f;
|
2015-05-31 19:04:51 -03:00
|
|
|
float yaw_zero = 0.1f;
|
|
|
|
float rotor_rot_accel = radians(20);
|
|
|
|
float roll_rate_max = radians(1400);
|
|
|
|
float pitch_rate_max = radians(1400);
|
|
|
|
float yaw_rate_max = radians(1400);
|
|
|
|
float rsc_setpoint = 0.8f;
|
2015-05-03 04:47:58 -03:00
|
|
|
float thrust_scale;
|
|
|
|
float tail_thrust_scale;
|
2015-08-13 05:44:35 -03:00
|
|
|
enum frame_types {
|
|
|
|
HELI_FRAME_CONVENTIONAL,
|
|
|
|
HELI_FRAME_DUAL,
|
|
|
|
HELI_FRAME_COMPOUND
|
|
|
|
} frame_type = HELI_FRAME_CONVENTIONAL;
|
2015-07-30 21:54:16 -03:00
|
|
|
bool gas_heli = false;
|
2015-05-03 04:47:58 -03:00
|
|
|
};
|
|
|
|
|
2015-10-22 10:04:42 -03:00
|
|
|
} // namespace SITL
|