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/Callisto.json
Views: 1799
1
# Callisto model, see https://www.freespaceoperations.com.au/
2
3
{
4
# total vehicle mass
5
"mass" : 32.5,
6
7
# vehicle diameter
8
"diagonal_size" : 1.325,
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" : 25.0, # m/s
14
"refAngle" : 30.0, # degrees
15
"refVoltage" : 46.9, # volts
16
"refCurrent" : 65.36, # Amps
17
"refAlt" : 26, # meters AMSL
18
"refTempC" : 25, # degrees C
19
"refBatRes" : 0.024, # BAT.Res from log
20
21
# full battery voltage
22
"maxVoltage" : 50.4,
23
24
# full battery capacity, Ah
25
"battCapacityAh" : 44,
26
27
# MOT_THST_EXPO
28
"propExpo" : 0.5,
29
30
# approximate maximum yaw rate in deg/sec
31
"refRotRate" : 120,
32
33
# hover throttle from 0 to 1
34
"hoverThrOut" : 0.36,
35
36
# MOT_PWM_MIN
37
"pwmMin" : 1000,
38
39
# MOT_PWM_MAX
40
"pwmMax" : 1940,
41
42
# MOT_SPIN_MIN
43
"spin_min" : 0.2,
44
45
# MOT_SPIN_MAX
46
"spin_max" : 0.975,
47
48
# maximum motor slew rate, or zero to disable
49
"slew_max" : 75,
50
51
# total effective disc area in sq m for 4 x 30 inch diameter rotors
52
# coaxial rotors count as a single rotor for this parameter)
53
"disc_area" : 1.82,
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" : 8
61
}
62
63