APM:Libraries
SIM_Balloon.h
Go to the documentation of this file.
1 /*
2  This program is free software: you can redistribute it and/or modify
3  it under the terms of the GNU General Public License as published by
4  the Free Software Foundation, either version 3 of the License, or
5  (at your option) any later version.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  GNU General Public License for more details.
11 
12  You should have received a copy of the GNU General Public License
13  along with this program. If not, see <http://www.gnu.org/licenses/>.
14  */
15 /*
16  balloon simulator class
17 */
18 
19 #pragma once
20 
21 #include "SIM_Aircraft.h"
22 
23 namespace SITL {
24 
25 /*
26  a balloon simulator
27  */
28 class Balloon : public Aircraft {
29 public:
30  Balloon(const char *home_str, const char *frame_str);
31 
32  /* update model by one time step */
33  void update(const struct sitl_input &input);
34 
35  /* static object creator */
36  static Aircraft *create(const char *home_str, const char *frame_str) {
37  return new Balloon(home_str, frame_str);
38  }
39 
40 private:
42  float climb_rate = 20;
43  float terminal_velocity = 40;
44  float burst_altitude = 20000;
45  bool burst = false;
46  bool released = false;
47 };
48 
49 } // namespace SITL
float burst_altitude
Definition: SIM_Balloon.h:44
void update(const struct sitl_input &input)
Definition: SIM_Balloon.cpp:34
float terminal_rotation_rate
Definition: SIM_Balloon.h:41
static constexpr float radians(float deg)
Definition: AP_Math.h:158
float terminal_velocity
Definition: SIM_Balloon.h:43
Balloon(const char *home_str, const char *frame_str)
Definition: SIM_Balloon.cpp:25
static Aircraft * create(const char *home_str, const char *frame_str)
Definition: SIM_Balloon.h:36
float climb_rate
Definition: SIM_Balloon.h:42