1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #pragma once
- #include "SIM_Aircraft.h"
- #include "SIM_Motor.h"
- namespace SITL {
- class Frame {
- public:
- const char *name;
- uint8_t num_motors;
- Motor *motors;
- Frame(const char *_name,
- uint8_t _num_motors,
- Motor *_motors) :
- name(_name),
- num_motors(_num_motors),
- motors(_motors) {}
-
- static Frame *find_frame(const char *name);
-
-
- void init(float mass, float hover_throttle, float terminal_velocity, float terminal_rotation_rate);
-
- void calculate_forces(const Aircraft &aircraft,
- const struct sitl_input &input,
- Vector3f &rot_accel, Vector3f &body_accel);
-
- float terminal_velocity;
- float terminal_rotation_rate;
- float thrust_scale;
- uint8_t motor_offset;
-
- void current_and_voltage(const struct sitl_input &input, float &voltage, float ¤t);
- };
- }
|