2018-06-21 04:52:03 -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/>.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
BalanceBot simulator class
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "SIM_Aircraft.h"
|
|
|
|
|
|
|
|
namespace SITL {
|
|
|
|
|
|
|
|
class BalanceBot : public Aircraft {
|
|
|
|
public:
|
2019-08-15 01:01:24 -03:00
|
|
|
BalanceBot(const char *frame_str);
|
2018-06-21 04:52:03 -03:00
|
|
|
|
|
|
|
/* update model by one time step */
|
2019-02-21 19:12:05 -04:00
|
|
|
void update(const struct sitl_input &input) override;
|
2018-06-21 04:52:03 -03:00
|
|
|
|
|
|
|
/* static object creator */
|
2019-08-15 01:01:24 -03:00
|
|
|
static Aircraft *create(const char *frame_str) {
|
2024-05-26 22:24:16 -03:00
|
|
|
return NEW_NOTHROW BalanceBot(frame_str);
|
2018-06-21 04:52:03 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// vehicle frame x velocity
|
|
|
|
float velocity_vf_x;
|
|
|
|
|
|
|
|
float skid_turn_rate;
|
|
|
|
|
2021-02-01 12:37:57 -04:00
|
|
|
float calc_yaw_rate(float steering) const;
|
2018-06-21 04:52:03 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace SITL
|