CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
Ardupilot

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: Ardupilot/ardupilot
Path: blob/master/Tools/autotest/models/freestyle.json
Views: 1799
1
# 5 inch FPV Freestyle/Racing model
2
3
{
4
# total vehicle mass in kg
5
"mass" : 0.8,
6
7
# vehicle diameter
8
"diagonal_size" : 0.25,
9
10
# the ref parameters should be taken from a test
11
# with the copter flying at constant speed in zero wind. This is used
12
# to estimate the drag coefficient
13
"refSpd" : 20.0, # m/s
14
"refAngle" : 45.0, # degrees
15
"refVoltage" : 23.2, # volts
16
"refCurrent" : 5, # Amps
17
"refAlt" : 607, # meters AMSL
18
"refTempC" : 25, # degrees C
19
"refBatRes" : 0.0226, # BAT.Res from log
20
21
# full battery voltage
22
"maxVoltage" : 25.2,
23
24
# full battery capacity, Ah
25
# 0 means unlimited
26
"battCapacityAh" : 0,
27
28
# MOT_THST_EXPO
29
"propExpo" : 0.7,
30
31
# approximate maximum yaw rate in deg/sec
32
"refRotRate" : 700,
33
34
# hover throttle from 0 to 1
35
"hoverThrOut" : 0.125,
36
37
# MOT_PWM_MIN
38
"pwmMin" : 1000,
39
40
# MOT_PWM_MAX
41
"pwmMax" : 2000,
42
43
# MOT_SPIN_MIN
44
"spin_min" : 0.01,
45
46
# MOT_SPIN_MAX
47
"spin_max" : 0.95,
48
49
# maximum motor slew rate, or zero to disable
50
"slew_max" : 0,
51
52
# total effective disc area in sq m for 4 x 5 inch diameter rotors
53
"disc_area" : 0.204,
54
55
# momentum drag coefficient
56
# ratio of momentum drag relative to a ducted rotor of the same effective disc area
57
"mdrag_coef" : 0.10,
58
59
# number of motors
60
"num_motors" : 4
61
}
62
63
64