Malolo1-set.xml 3.29 KB
Newer Older
lm's avatar
lm committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
<?xml version="1.0"?>
<!--
************************************************************************
Rascal 110 R/C airplane config. This files ties together all the components
used by FGFS to represent the Rascal 110 (by Sig Mfg) including the flight
dynamics model, and external 3D model.
************************************************************************
-->

<PropertyList>
 <sim>

  <description>Malolo1(R/C)</description>
  <author>Innis Cunningham, Josh Wilson</author>
  <aircraft-version>0.0</aircraft-version>

  <startup>
    <splash-texture>Aircraft/Malolo1/Malolo1-splash.rgb</splash-texture>
  </startup>

  <flight-model>jsb</flight-model>
  <aero>Malolo1</aero>
  <fuel-fraction>0.8</fuel-fraction>
  <!--
  <systems>
   <autopilot>
    <path>Aircraft/Malolo1/Systems/110-autopilot.xml</path>
   </autopilot>
   <electrical>
    <path>Aircraft/Malolo1/Systems/electrical.xml</path>
   </electrical>
  </systems> -->

  <sound>
   <path>Aircraft/Generic/generic-sound.xml</path>
  </sound>

  <panel>
   <visibility archive="n">false</visibility>
  </panel>

  <model>
   <path archive="y">Aircraft/Malolo1/Models/Malolo1.xml</path>
  </model>
  
  <view>
   <internal archive="y">true</internal>
   <config>
     <x-offset-m archive="y">0.0</x-offset-m>
     <y-offset-m archive="y">0.26</y-offset-m>
     <z-offset-m archive="y">0.34</z-offset-m>
     <pitch-offset-deg>-8</pitch-offset-deg>
   </config>
  </view>

        <chase-distance-m archive="y" type="double">-15.0</chase-distance-m>
  <help>
    <title>YardStik 110 (Sig Mfg)</title>
    <line>Cruise speed: 60 mph</line>
    <line>Never-exceed (Vne): 85 mph</line>
    <line>Best Glide (Vglide): 20 mph</line>
    <line>Maneuvering (Va): 50 mph</line>
    <line>Approach speed: 15-25 mph</line>
    <line>Stall speed (Vs): 10 mph</line>
  </help>
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
	<menubar>
	  <default>
      <menu n="10">
      <label>Malolo</label>
      <enabled type="bool">true</enabled>
			<item>
		    <label>Operate catapult</label>
		    <binding>
		      <command>nasal</command>
		      <script>
		        malolo1.launchCatapult();
		      </script>
		    </binding>
      </item>

      </menu>
	  </default>
	</menubar>
lm's avatar
lm committed
84 85 86

 </sim>

87 88 89 90 91 92
<nasal>
	<malolo1>
		<file>Aircraft/Malolo1/Nasal/catapult.nas</file>
	</malolo1>
</nasal>

lm's avatar
lm committed
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
 <controls>
  <flight>
   <aileron-trim>-0.01</aileron-trim>   <!-- fixed -->
   <elevator-trim>0.00</elevator-trim> <!-- controllable -->
   <rudder-trim>0.00</rudder-trim>     <!-- fixed -->
  </flight>
  <engines>
   <engine n="0">
    <magnetos>3</magnetos>
   </engine>
  </engines>
  <door>1.0</door>
 </controls>

 <engines>
  <engine>
   <rpm type="double">700</rpm>
  </engine>
 </engines>
  
 <!-- An autopilot on a Cub??? -->  
 <autopilot>
   <config>
     <min-climb-speed-kt type="float">48.0</min-climb-speed-kt>
     <best-climb-speed-kt type="float">56.0</best-climb-speed-kt>
     <target-climb-rate-fpm type="float">400.0</target-climb-rate-fpm>
     <target-descent-rate-fpm type="float">1000.0</target-descent-rate-fpm>
     <elevator-adj-factor type="float">6000.0</elevator-adj-factor>
     <integral-contribution type="float">0.008</integral-contribution> 
     <zero-pitch-throttle type="float">0.35</zero-pitch-throttle>
     <zero-pitch-trim-full-throttle type="float">0.001</zero-pitch-trim-full-throttle>
   </config>
 </autopilot>

127 128


lm's avatar
lm committed
129
</PropertyList>