Contact Us!
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/aircraft/arducopter/plus_quad2-set.xml
Views: 2012
1
<?xml version="1.0"?>
2
<!--
3
************************************************************************
4
Arducotper UAV Model
5
************************************************************************
6
-->
7
<PropertyList>
8
<sim>
9
<description>Arducopter UAV (R/C) (plus quad)</description>
10
<author>James Goppert</author>
11
<aircraft-version>0.0</aircraft-version>
12
<status>experimental</status>
13
<flight-model>jsb</flight-model>
14
<aero>plus_quad2</aero>
15
<model-hz>50</model-hz>
16
<sound>
17
<path>Aircraft/Generic/generic-sound.xml</path>
18
</sound>
19
<panel>
20
<visibility archive="n">false</visibility>
21
</panel>
22
<model>
23
<path archive="y">Aircraft/arducopter/Models/plus_quad2.xml</path>
24
</model>
25
<view>
26
<internal archive="y">true</internal>
27
<config>
28
<x-offset-m archive="y">0.0</x-offset-m>
29
<y-offset-m archive="y">0.15</y-offset-m>
30
<z-offset-m archive="y">0.90</z-offset-m>
31
<pitch-offset-deg>0</pitch-offset-deg>
32
</config>
33
</view>
34
<chase-distance-m archive="y" type="double">-5.5</chase-distance-m>
35
<help>
36
<title>plus_quad UAV</title>
37
<line>Cruise speed: ? mph</line>
38
<line>Never-exceed (Vne): ? mph</line>
39
<line>Best Glide (Vglide): ? mph</line>
40
<line>Maneuvering (Va): ? mph</line>
41
<line>Approach speed: ? mph</line>
42
<line>Stall speed (Vs): ? mph</line>
43
</help>
44
<startup>
45
<splash-title>Arducopter UAV DIY Drones/ OPENMAV</splash-title>
46
<splash-texture>Aircraft/arducopter/arducopter.jpg</splash-texture>
47
</startup>
48
</sim>
49
<controls>
50
<flight>
51
<aileron-trim>0.00</aileron-trim>
52
<!-- fixed -->
53
<elevator-trim>0.00</elevator-trim>
54
<!-- controllable -->
55
</flight>
56
</controls>
57
<consumables>
58
<fuel>
59
<tank n="0">
60
<level-gal_us>0</level-gal_us>
61
</tank>
62
</fuel>
63
</consumables>
64
<payload>
65
<weight>
66
<name type="string">Payload</name>
67
<weight-lb alias="/fdm/jsbsim/inertia/pointmass-weight-lbs[0]"/>
68
<min-lb type="double">0.0</min-lb>
69
<max-lb type="double">1.0</max-lb>
70
</weight>
71
</payload>
72
<nasal>
73
<plus_quad2>
74
<script>
75
setlistener("/sim/signals/fdm-initialized", func {
76
var left = screen.display.new(20, 10);
77
left.add("/controls/engines/engine[0]/throttle");
78
left.add("/controls/engines/engine[1]/throttle");
79
left.add("/controls/engines/engine[2]/throttle");
80
left.add("/controls/engines/engine[3]/throttle");
81
82
var right = screen.display.new(-250, 20);
83
right.add("/position/altitude-agl-ft");
84
right.add("/orientation/roll-deg");
85
right.add("/orientation/pitch-deg");
86
right.add("/orientation/heading-deg");
87
right.add("/instrumentation/gps/indicated-ground-speed-kt");
88
});
89
</script>
90
</plus_quad2>
91
</nasal>
92
</PropertyList>
93
<!-- vim:sw=4:ts=4:expandtab -->
94
95