1
0
Fork 0
This commit is contained in:
vezza 2020-03-19 22:34:34 +01:00
commit cf582054e7
21 changed files with 1433 additions and 758 deletions

View file

@ -460,6 +460,12 @@
</fuel> </fuel>
</consumables> </consumables>
<environment>
<aircraft-effects>
<frost-inch type="double">0</frost-inch>
</aircraft-effects>
</environment>
<fdm> <fdm>
<jsbsim> <jsbsim>
<external_reactions> <external_reactions>

View file

@ -386,6 +386,16 @@
</offsets> </offsets>
</model> </model>
<!-- wing condensation effect -->
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-L.xml</path>
<name>wing-condensation</name>
</model>
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-R.xml</path>
<name>wing-condensation</name>
</model>
<!-- Other non-aircraft models --> <!-- Other non-aircraft models -->
<model> <model>
<name>Pushback</name> <name>Pushback</name>

View file

@ -416,6 +416,16 @@
</offsets> </offsets>
</model> </model>
<!-- wing condensation effect -->
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-L.xml</path>
<name>wing-condensation</name>
</model>
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-R.xml</path>
<name>wing-condensation</name>
</model>
<!-- Other non-aircraft models --> <!-- Other non-aircraft models -->
<model> <model>
<name>Pushback</name> <name>Pushback</name>

View file

@ -416,6 +416,16 @@
</offsets> </offsets>
</model> </model>
<!-- wing condensation effect -->
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-L.xml</path>
<name>wing-condensation</name>
</model>
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-R.xml</path>
<name>wing-condensation</name>
</model>
<!-- Other non-aircraft models --> <!-- Other non-aircraft models -->
<model> <model>
<name>Pushback</name> <name>Pushback</name>

View file

@ -395,6 +395,16 @@
</offsets> </offsets>
</model> </model>
<!-- wing condensation effect -->
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-L.xml</path>
<name>wing-condensation</name>
</model>
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-R.xml</path>
<name>wing-condensation</name>
</model>
<!-- Other non-aircraft models --> <!-- Other non-aircraft models -->
<model> <model>
<name>Pushback</name> <name>Pushback</name>

View file

@ -395,6 +395,16 @@
</offsets> </offsets>
</model> </model>
<!-- wing condensation effect -->
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-L.xml</path>
<name>wing-condensation</name>
</model>
<model>
<path>Aircraft/A320-family/Models/Effects/wing-condensation-R.xml</path>
<name>wing-condensation</name>
</model>
<!-- Other non-aircraft models --> <!-- Other non-aircraft models -->
<model> <model>
<name>Pushback</name> <name>Pushback</name>

View file

@ -0,0 +1,146 @@
<?xml version="1.0"?>
<PropertyList>
<particlesystem>
<!-- <type>trail</type>-->
<name>moisture</name>
<texture>res/smoke.png</texture>
<emissive>false</emissive>
<lighting>false</lighting>
<offsets>
<x-m>0.3</x-m>
<y-m>0</y-m>
<z-m>-1.3</z-m>
<pitch-deg>0</pitch-deg>
</offsets>
<attach>local</attach>
<placer>
<type>point</type>
</placer>
<shooter>
<theta-min-deg>0</theta-min-deg>
<theta-max-deg>0</theta-max-deg>
<phi-min-deg>0</phi-min-deg>
<phi-max-deg>0</phi-max-deg>
<speed>
<value>0</value>
<spread>0</spread>
</speed>
<rotation-speed>
<x-min-deg-sec>180</x-min-deg-sec>
<y-min-deg-sec>180</y-min-deg-sec>
<z-min-deg-sec>180</z-min-deg-sec>
<x-max-deg-sec>-180</x-max-deg-sec>
<y-max-deg-sec>-180</y-max-deg-sec>
<z-max-deg-sec>-180</z-max-deg-sec>
</rotation-speed>
</shooter>
<counter>
<particles-per-sec>
<value>50</value>
<spread>0</spread>
</particles-per-sec>
</counter>
<align>billboard</align>
<particle>
<start>
<color>
<red>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</red>
<green>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</green>
<blue>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</blue>
<alpha>
<expression>
<product>
<value>0.002</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</alpha>
</color>
<size>
<value>1.3</value>
</size>
</start>
<end>
<color>
<red>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</red>
<green>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</green>
<blue>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</blue>
<alpha>
<expression>
<product>
<value>0.0008</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</alpha>
</color>
<size>
<value>1.6</value>
</size>
</end>
<life-sec><value>0.0001</value></life-sec>
<mass-kg>0.4</mass-kg>
<radius-m>0.1</radius-m>
</particle>
<program>
<fluid>air</fluid>
<gravity type="bool">false</gravity>
<wind type="bool">false</wind>
</program>
</particlesystem>
</PropertyList>

View file

@ -8,10 +8,10 @@
<emissive>false</emissive> <emissive>false</emissive>
<lighting>false</lighting> <lighting>false</lighting>
<offsets> <offsets>
<x-m>3</x-m> <x-m>0.3</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>-1</z-m>
<pitch-deg>-90</pitch-deg> <pitch-deg>0</pitch-deg>
</offsets> </offsets>
<attach>local</attach> <attach>local</attach>
@ -30,18 +30,18 @@
<spread>0</spread> <spread>0</spread>
</speed> </speed>
<rotation-speed> <rotation-speed>
<x-min-deg-sec>0</x-min-deg-sec> <x-min-deg-sec>180</x-min-deg-sec>
<y-min-deg-sec>0</y-min-deg-sec> <y-min-deg-sec>180</y-min-deg-sec>
<z-min-deg-sec>0</z-min-deg-sec> <z-min-deg-sec>180</z-min-deg-sec>
<x-max-deg-sec>0</x-max-deg-sec> <x-max-deg-sec>-180</x-max-deg-sec>
<y-max-deg-sec>0</y-max-deg-sec> <y-max-deg-sec>-180</y-max-deg-sec>
<z-max-deg-sec>0</z-max-deg-sec> <z-max-deg-sec>-180</z-max-deg-sec>
</rotation-speed> </rotation-speed>
</shooter> </shooter>
<counter> <counter>
<particles-per-sec> <particles-per-sec>
<value>150</value> <value>50</value>
<spread>0</spread> <spread>0</spread>
</particles-per-sec> </particles-per-sec>
</counter> </counter>
@ -54,33 +54,38 @@
<red> <red>
<expression> <expression>
<product> <product>
<value>1.0</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</red> </red>
<green> <green>
<expression> <expression>
<product> <product>
<value>1.0</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</green> </green>
<blue> <blue>
<expression> <expression>
<product> <product>
<value>1.0</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</blue> </blue>
<alpha> <alpha>
<value>0.00000001</value> <expression>
<product>
<value>0.003</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</alpha> </alpha>
</color> </color>
<size> <size>
<value>1</value> <value>1.0</value>
</size> </size>
</start> </start>
@ -89,44 +94,49 @@
<red> <red>
<expression> <expression>
<product> <product>
<value>0.7</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</red> </red>
<green> <green>
<expression> <expression>
<product> <product>
<value>0.7</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</green> </green>
<blue> <blue>
<expression> <expression>
<product> <product>
<value>0.7</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</blue> </blue>
<alpha> <alpha>
<value>0.3</value> <expression>
<product>
<value>0.0009</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</alpha> </alpha>
</color> </color>
<size> <size>
<value>2</value> <value>1.4</value>
</size> </size>
</end> </end>
<life-sec><value>0.4</value></life-sec> <life-sec><value>0.0001</value></life-sec>
<mass-kg>0.4</mass-kg> <mass-kg>0.4</mass-kg>
<radius-m>0.1</radius-m> <radius-m>0.1</radius-m>
</particle> </particle>
<program> <program>
<fluid>air</fluid> <fluid>air</fluid>
<gravity type="bool">true</gravity> <gravity type="bool">false</gravity>
<wind type="bool">false</wind> <wind type="bool">false</wind>
</program> </program>

View file

@ -5,43 +5,52 @@
<particlesystem> <particlesystem>
<name>engine-spray-reverse</name> <name>engine-spray-reverse</name>
<texture>res/smoke.png</texture> <texture>res/smoke.png</texture>
<emissive type="bool">false</emissive> <emissive>false</emissive>
<lighting type="bool">false</lighting> <lighting>false</lighting>
<offsets>
<x-m>0</x-m>
<y-m>0</y-m>
<z-m>0</z-m>
<pitch-deg>180</pitch-deg>
</offsets>
<attach>world</attach> <attach>world</attach>
<placer> <placer>
<type>point</type> <type>segments</type>
<vertex>
<x-m>1</x-m>
<y-m>3</y-m>
<z-m>-1</z-m>
</vertex>
<vertex>
<x-m>1</x-m>
<y-m>-3</y-m>
<z-m>-1</z-m>
</vertex>
</placer> </placer>
<shooter> <shooter>
<theta-min-deg>-1.5</theta-min-deg> <theta-min-deg>0</theta-min-deg>
<theta-max-deg>1.5</theta-max-deg> <theta-max-deg>0</theta-max-deg>
<phi-min-deg>-1.5</phi-min-deg> <phi-min-deg>0</phi-min-deg>
<phi-max-deg>1.5</phi-max-deg> <phi-max-deg>0</phi-max-deg>
<speed-mps> <speed-mps>
<value>0</value> <value>10</value>
<spread>0</spread> <spread>1</spread>
</speed-mps> </speed-mps>
<rotation-speed> <rotation-speed>
<x-min-deg-sec>0</x-min-deg-sec> <x-max-deg-sec>180</x-max-deg-sec>
<y-min-deg-sec>0</y-min-deg-sec> <x-min-deg-sec>-180</x-min-deg-sec>
<z-min-deg-sec>0</z-min-deg-sec> <y-max-deg-sec>180</y-max-deg-sec>
<x-max-deg-sec>0</x-max-deg-sec> <y-min-deg-sec>-180</y-min-deg-sec>
<y-max-deg-sec>0</y-max-deg-sec> <z-max-deg-sec>180</z-max-deg-sec>
<z-max-deg-sec>0</z-max-deg-sec> <z-min-deg-sec>-180</z-min-deg-sec>
</rotation-speed> </rotation-speed>
</shooter> </shooter>
<counter> <counter>
<particles-per-sec> <particles-per-sec>
<expression>
<product>
<property>environment/surface/wetness</property>
<value>50</value> <value>50</value>
</product>
</expression>
<spread>0</spread> <spread>0</spread>
</particles-per-sec> </particles-per-sec>
</counter> </counter>
@ -54,83 +63,90 @@
<red> <red>
<expression> <expression>
<product> <product>
<value>0.7</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</red> </red>
<green> <green>
<expression> <expression>
<product> <product>
<value>0.7</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</green> </green>
<blue> <blue>
<expression> <expression>
<product> <product>
<value>0.7</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</blue> </blue>
<alpha> <alpha>
<value>0.3</value> <expression>
<product>
<value>0.2</value>
<property>environment/surface/wetness</property>
</product>
</expression>
</alpha> </alpha>
</color> </color>
<size> <size>
<value>2</value> <value>5</value>
</size> </size>
</start> </start>
<end> <end>
<color> <color>
<red> <red>
<expression> <expression>
<product> <product>
<value>1.0</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</red> </red>
<green> <green>
<expression> <expression>
<product> <product>
<value>1.0</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</green> </green>
<blue> <blue>
<expression> <expression>
<product> <product>
<value>1.0</value> <value>0.01</value>
<property>rendering/scene/diffuse/red</property> <property>environment/relative-humidity</property>
</product> </product>
</expression> </expression>
</blue> </blue>
<alpha> <alpha>
<value>0.00000001</value> <expression>
<product>
<value>0.1</value>
<property>environment/surface/wetness</property>
</product>
</expression>
</alpha> </alpha>
</color> </color>
<size> <size>
<value>3</value> <value>10</value>
</size> </size>
</end> </end>
<life-sec> <life-sec>
<value>0.4</value> <value>0.5</value>
</life-sec> </life-sec>
<mass-kg>0.025</mass-kg>
<mass-kg>0.5</mass-kg> <radius-m>0.175</radius-m>
<radius-m>0.1</radius-m>
</particle> </particle>
<program> <program>
<fluid>air</fluid> <fluid>air</fluid>
<gravity type="bool">true</gravity> <gravity>true</gravity>
<wind typ="bool">true</wind> <wind>true</wind>
</program> </program>
</particlesystem> </particlesystem>

View file

@ -25,27 +25,32 @@
</placer> </placer>
<shooter> <shooter>
<theta-min-deg>15</theta-min-deg> <theta-min-deg>0</theta-min-deg>
<theta-max-deg>60</theta-max-deg> <theta-max-deg>0</theta-max-deg>
<phi-min-deg>-5</phi-min-deg> <phi-min-deg>0</phi-min-deg>
<phi-max-deg>5</phi-max-deg> <phi-max-deg>0</phi-max-deg>
<speed-mps> <speed-mps>
<value>250</value> <value>250</value>
<spread>15</spread> <spread>15</spread>
</speed-mps> </speed-mps>
<rotation-speed> <rotation-speed>
<x-max-deg-sec>15</x-max-deg-sec> <x-max-deg-sec>180</x-max-deg-sec>
<x-min-deg-sec>-15</x-min-deg-sec> <x-min-deg-sec>-180</x-min-deg-sec>
<y-max-deg-sec>15</y-max-deg-sec> <y-max-deg-sec>180</y-max-deg-sec>
<y-min-deg-sec>-15</y-min-deg-sec> <y-min-deg-sec>-180</y-min-deg-sec>
<z-max-deg-sec>15</z-max-deg-sec> <z-max-deg-sec>180</z-max-deg-sec>
<z-min-deg-sec>-15</z-min-deg-sec> <z-min-deg-sec>-180</z-min-deg-sec>
</rotation-speed> </rotation-speed>
</shooter> </shooter>
<counter> <counter>
<particles-per-sec> <particles-per-sec>
<expression>
<product>
<property>environment/surface/wetness</property>
<value>100</value> <value>100</value>
</product>
</expression>
<spread>10</spread> <spread>10</spread>
</particles-per-sec> </particles-per-sec>
</counter> </counter>
@ -55,21 +60,77 @@
<particle> <particle>
<start> <start>
<color> <color>
<red><value>0.9</value></red> <red>
<green><value>0.9</value></green> <expression>
<blue><value>0.9</value></blue> <product>
<alpha><value>0.04</value></alpha> <value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</red>
<green>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</green>
<blue>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</blue>
<alpha>
<expression>
<product>
<property>environment/surface/wetness</property>
<value>0.05</value>
</product>
</expression>
</alpha>
</color> </color>
<size> <size>
<value>0.5</value> <value>5</value>
</size> </size>
</start> </start>
<end> <end>
<color> <color>
<red><value>1</value></red> <red>
<green><value>1</value></green> <expression>
<blue><value>1</value></blue> <product>
<alpha><value>0.02</value></alpha> <value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</red>
<green>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</green>
<blue>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</blue>
<alpha>
<expression>
<product>
<property>environment/surface/wetness</property>
<value>0.02</value>
</product>
</expression>
</alpha>
</color> </color>
<size> <size>
<value>10</value> <value>10</value>

View file

@ -0,0 +1,261 @@
<?xml version="1.0" encoding="UTF-8" ?>
<PropertyList>
<particlesystem>
<name>wing-condensation</name>
<texture>res/smoke.png</texture>
<emissive>false</emissive>
<lighting>false</lighting>
<type>normal</type>
<attach>local</attach>
<condition>
<and>
<or>
<greater-than-equals>
<expression>
<sum>
<product>
<property>environment/relative-humidity</property>
<value>0.1</value>
</product>
<property>systems/navigation/adr/output/aoa-1</property>
</sum>
</expression>
<value>13.5</value>
</greater-than-equals>
<greater-than-equals>
<expression>
<sum>
<product>
<property>environment/relative-humidity</property>
<value>0.1</value>
</product>
<property>systems/navigation/adr/output/aoa-2</property>
</sum>
</expression>
<value>13.5</value>
</greater-than-equals>
<greater-than-equals>
<expression>
<sum>
<product>
<property>environment/relative-humidity</property>
<value>0.1</value>
</product>
<property>systems/navigation/adr/output/aoa-3</property>
</sum>
</expression>
<value>13.5</value>
</greater-than-equals>
</or>
<greater-than>
<property>velocities/groundspeed-kt</property>
<value>100</value>
</greater-than>
<less-than>
<property>velocities/groundspeed-kt</property>
<value>210</value>
</less-than>
<greater-than>
<property>environment/relative-humidity</property>
<value>50</value>
</greater-than>
<less-than-equals>
<property>environment/temperature-degc</property>
<value>28</value>
</less-than-equals>
<greater-than>
<property>position/altitude-agl-ft</property>
<value>0</value>
</greater-than>
<less-than>
<property>position/altitude-agl-ft</property>
<value>8000</value>
</less-than>
<or>
<greater-than>
<property>systems/navigation/adr/output/aoa-1</property>
<value>0</value>
</greater-than>
<greater-than>
<property>systems/navigation/adr/output/aoa-2</property>
<value>0</value>
</greater-than>
<greater-than>
<property>systems/navigation/adr/output/aoa-3</property>
<value>0</value>
</greater-than>
</or>
</and>
</condition>
<placer>
<type>segments</type>
<vertex>
<x-m>15</x-m>
<y-m>-2.3</y-m>
<z-m>0</z-m>
</vertex>
<vertex>
<x-m>22</x-m>
<y-m>-16</y-m>
<z-m>0.7</z-m>
</vertex>
<vertex>
<x-m>19</x-m>
<y-m>-2.3</y-m>
<z-m>-1</z-m>
</vertex>
</placer>
<shooter>
<theta-min-deg>
<!-- <expression>
<sum>
<value>70</value>
<property>systems/navigation/adr/output/aoa-1</property>
</sum>
</expression> -->
<value>90</value>
</theta-min-deg>
<theta-max-deg>
<!-- <expression>
<sum>
<value>110</value>
<property>systems/navigation/adr/output/aoa-1</property>
</sum>
</expression> -->
<value>90</value>
</theta-max-deg>
<phi-min-deg>90</phi-min-deg>
<phi-max-deg>90</phi-max-deg>
<speed-mps>
<!-- <expression>
<product>
<property>velocities/groundspeed-kt</property>
<value>-1</value>
</product>
</expression> -->
<value>0</value>
<spread>0</spread>
</speed-mps>
<rotation-speed>
<x-max-deg-sec>180</x-max-deg-sec>
<x-min-deg-sec>180</x-min-deg-sec>
<y-max-deg-sec>180</y-max-deg-sec>
<y-min-deg-sec>-180</y-min-deg-sec>
<z-max-deg-sec>-180</z-max-deg-sec>
<z-min-deg-sec>-180</z-min-deg-sec>
</rotation-speed>
</shooter>
<counter>
<particles-per-sec>
<expression>
<product>
<value>4</value>
<property>environment/relative-humidity</property>
</product>
</expression>
<spread>10</spread>
</particles-per-sec>
</counter>
<align>billboard</align>
<particle>
<start>
<color>
<red>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</red>
<green>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</green>
<blue>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</blue>
<alpha>
<expression>
<product>
<value>0.0007</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</alpha>
</color>
<size>
<value>1.5</value>
</size>
</start>
<end>
<color>
<red>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</red>
<green>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</green>
<blue>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</blue>
<alpha>
<expression>
<product>
<value>0.00001</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</alpha>
</color>
<size>
<value>2</value>
</size>
</end>
<life-sec>
<value>0.00001</value>
</life-sec>
<mass-kg>0.025</mass-kg>
<radius-m>0.175</radius-m>
</particle>
<program>
<fluid>air</fluid>
<gravity>true</gravity>
<wind>true</wind>
</program>
</particlesystem>
</PropertyList>

View file

@ -0,0 +1,261 @@
<?xml version="1.0" encoding="UTF-8" ?>
<PropertyList>
<particlesystem>
<name>wing-condensation</name>
<texture>res/smoke.png</texture>
<emissive>false</emissive>
<lighting>false</lighting>
<type>normal</type>
<attach>local</attach>
<condition>
<and>
<or>
<greater-than-equals>
<expression>
<sum>
<product>
<property>environment/relative-humidity</property>
<value>0.1</value>
</product>
<property>systems/navigation/adr/output/aoa-1</property>
</sum>
</expression>
<value>13.5</value>
</greater-than-equals>
<greater-than-equals>
<expression>
<sum>
<product>
<property>environment/relative-humidity</property>
<value>0.1</value>
</product>
<property>systems/navigation/adr/output/aoa-2</property>
</sum>
</expression>
<value>13.5</value>
</greater-than-equals>
<greater-than-equals>
<expression>
<sum>
<product>
<property>environment/relative-humidity</property>
<value>0.1</value>
</product>
<property>systems/navigation/adr/output/aoa-3</property>
</sum>
</expression>
<value>13.5</value>
</greater-than-equals>
</or>
<greater-than>
<property>velocities/groundspeed-kt</property>
<value>100</value>
</greater-than>
<less-than>
<property>velocities/groundspeed-kt</property>
<value>210</value>
</less-than>
<greater-than>
<property>environment/relative-humidity</property>
<value>50</value>
</greater-than>
<less-than-equals>
<property>environment/temperature-degc</property>
<value>28</value>
</less-than-equals>
<greater-than>
<property>position/altitude-agl-ft</property>
<value>0</value>
</greater-than>
<less-than>
<property>position/altitude-agl-ft</property>
<value>8000</value>
</less-than>
<or>
<greater-than>
<property>systems/navigation/adr/output/aoa-1</property>
<value>0</value>
</greater-than>
<greater-than>
<property>systems/navigation/adr/output/aoa-2</property>
<value>0</value>
</greater-than>
<greater-than>
<property>systems/navigation/adr/output/aoa-3</property>
<value>0</value>
</greater-than>
</or>
</and>
</condition>
<placer>
<type>segments</type>
<vertex>
<x-m>15</x-m>
<y-m>2.3</y-m>
<z-m>0</z-m>
</vertex>
<vertex>
<x-m>22</x-m>
<y-m>16</y-m>
<z-m>0.7</z-m>
</vertex>
<vertex>
<x-m>19</x-m>
<y-m>2.3</y-m>
<z-m>-1</z-m>
</vertex>
</placer>
<shooter>
<theta-min-deg>
<!-- <expression>
<sum>
<value>70</value>
<property>systems/navigation/adr/output/aoa-1</property>
</sum>
</expression> -->
<value>90</value>
</theta-min-deg>
<theta-max-deg>
<!-- <expression>
<sum>
<value>110</value>
<property>systems/navigation/adr/output/aoa-1</property>
</sum>
</expression> -->
<value>90</value>
</theta-max-deg>
<phi-min-deg>90</phi-min-deg>
<phi-max-deg>90</phi-max-deg>
<speed-mps>
<!-- <expression>
<product>
<property>velocities/groundspeed-kt</property>
<value>-1</value>
</product>
</expression> -->
<value>0</value>
<spread>0</spread>
</speed-mps>
<rotation-speed>
<x-max-deg-sec>180</x-max-deg-sec>
<x-min-deg-sec>180</x-min-deg-sec>
<y-max-deg-sec>180</y-max-deg-sec>
<y-min-deg-sec>-180</y-min-deg-sec>
<z-max-deg-sec>-180</z-max-deg-sec>
<z-min-deg-sec>-180</z-min-deg-sec>
</rotation-speed>
</shooter>
<counter>
<particles-per-sec>
<expression>
<product>
<value>4</value>
<property>environment/relative-humidity</property>
</product>
</expression>
<spread>10</spread>
</particles-per-sec>
</counter>
<align>billboard</align>
<particle>
<start>
<color>
<red>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</red>
<green>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</green>
<blue>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</blue>
<alpha>
<expression>
<product>
<value>0.0007</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</alpha>
</color>
<size>
<value>1.5</value>
</size>
</start>
<end>
<color>
<red>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</red>
<green>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</green>
<blue>
<expression>
<product>
<value>0.01</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</blue>
<alpha>
<expression>
<product>
<value>0.00001</value>
<property>environment/relative-humidity</property>
</product>
</expression>
</alpha>
</color>
<size>
<value>2</value>
</size>
</end>
<life-sec>
<value>0.00001</value>
</life-sec>
<mass-kg>0.025</mass-kg>
<radius-m>0.175</radius-m>
</particle>
<program>
<fluid>air</fluid>
<gravity>true</gravity>
<wind>true</wind>
</program>
</particlesystem>
</PropertyList>

View file

@ -51,24 +51,7 @@
<path>Aircraft/A320-family/Models/Effects/contrail.xml</path> <path>Aircraft/A320-family/Models/Effects/contrail.xml</path>
<name>contrail</name> <name>contrail</name>
<condition> <condition>
<and> <property>environment/contrail</property>
<greater-than>
<property>engines/engine[0]/n2-actual</property>
<value>50</value>
</greater-than>
<greater-than>
<property>position/altitude-ft</property>
<value>19000</value>
</greater-than>
<less-than>
<property>environment/temperature-degc</property>
<value>-30</value>
</less-than>
<equals>
<property>engines/engine[0]/state</property>
<value>3</value>
</equals>
</and>
</condition> </condition>
<overlay> <overlay>
<params> <params>
@ -84,7 +67,7 @@
<!-- Takeoff/Landing Engine Moisture --> <!-- Takeoff/Landing Engine Moisture -->
<model> <model>
<path>Aircraft/A320-family/Models/Effects/Moisture.xml</path> <path>Aircraft/A320-family/Models/Effects/Moisture-neo.xml</path>
<name>moisture</name> <name>moisture</name>
<condition> <condition>
<and> <and>
@ -111,9 +94,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>-0.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>0.4</z-m>
<pitch-deg>0</pitch-deg> <pitch-deg>0</pitch-deg>
</offsets> </offsets>
</model> </model>
@ -186,9 +169,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>0.875</x-m> <x-m>-1.0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>-2.5</z-m> <z-m>0</z-m>
</offsets> </offsets>
</model> </model>

View file

@ -51,24 +51,7 @@
<path>Aircraft/A320-family/Models/Effects/contrail.xml</path> <path>Aircraft/A320-family/Models/Effects/contrail.xml</path>
<name>contrail</name> <name>contrail</name>
<condition> <condition>
<and> <property>environment/contrail</property>
<greater-than>
<property>engines/engine[1]/n2-actual</property>
<value>50</value>
</greater-than>
<greater-than>
<property>position/altitude-ft</property>
<value>19000</value>
</greater-than>
<less-than>
<property>environment/temperature-degc</property>
<value>-30</value>
</less-than>
<equals>
<property>engines/engine[1]/state</property>
<value>3</value>
</equals>
</and>
</condition> </condition>
<overlay> <overlay>
<params> <params>
@ -84,7 +67,7 @@
<!-- Takeoff/Landing Engine Moisture --> <!-- Takeoff/Landing Engine Moisture -->
<model> <model>
<path>Aircraft/A320-family/Models/Effects/Moisture.xml</path> <path>Aircraft/A320-family/Models/Effects/Moisture-neo.xml</path>
<name>moisture</name> <name>moisture</name>
<condition> <condition>
<and> <and>
@ -114,9 +97,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>-0.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>0.4</z-m>
<pitch-deg>0</pitch-deg> <pitch-deg>0</pitch-deg>
</offsets> </offsets>
</model> </model>
@ -189,9 +172,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>0.875</x-m> <x-m>-1.0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>-2.5</z-m> <z-m>0</z-m>
</offsets> </offsets>
</model> </model>

View file

@ -38,24 +38,7 @@
<path>Aircraft/A320-family/Models/Effects/contrail.xml</path> <path>Aircraft/A320-family/Models/Effects/contrail.xml</path>
<name>contrail</name> <name>contrail</name>
<condition> <condition>
<and> <property>environment/contrail</property>
<greater-than>
<property>engines/engine[0]/n2-actual</property>
<value>50</value>
</greater-than>
<greater-than>
<property>position/altitude-ft</property>
<value>19000</value>
</greater-than>
<less-than>
<property>environment/temperature-degc</property>
<value>-30</value>
</less-than>
<equals>
<property>engines/engine[0]/state</property>
<value>3</value>
</equals>
</and>
</condition> </condition>
<overlay> <overlay>
<params> <params>
@ -71,7 +54,7 @@
<!-- Takeoff/Landing Engine Moisture --> <!-- Takeoff/Landing Engine Moisture -->
<model> <model>
<path>Aircraft/A320-family/Models/Effects/Moisture.xml</path> <path>Aircraft/A320-family/Models/Effects/Moisture-neo.xml</path>
<name>moisture</name> <name>moisture</name>
<condition> <condition>
<and> <and>
@ -98,7 +81,7 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>-0.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>0</z-m>
<pitch-deg>0</pitch-deg> <pitch-deg>0</pitch-deg>
@ -173,9 +156,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>1.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>-1</z-m> <z-m>0</z-m>
</offsets> </offsets>
</model> </model>

View file

@ -38,24 +38,7 @@
<path>Aircraft/A320-family/Models/Effects/contrail.xml</path> <path>Aircraft/A320-family/Models/Effects/contrail.xml</path>
<name>contrail</name> <name>contrail</name>
<condition> <condition>
<and> <property>environment/contrail</property>
<greater-than>
<property>engines/engine[1]/n2-actual</property>
<value>50</value>
</greater-than>
<greater-than>
<property>position/altitude-ft</property>
<value>19000</value>
</greater-than>
<less-than>
<property>environment/temperature-degc</property>
<value>-30</value>
</less-than>
<equals>
<property>engines/engine[1]/state</property>
<value>3</value>
</equals>
</and>
</condition> </condition>
<overlay> <overlay>
<params> <params>
@ -71,7 +54,7 @@
<!-- Takeoff/Landing Engine Moisture --> <!-- Takeoff/Landing Engine Moisture -->
<model> <model>
<path>Aircraft/A320-family/Models/Effects/Moisture.xml</path> <path>Aircraft/A320-family/Models/Effects/Moisture-neo.xml</path>
<name>moisture</name> <name>moisture</name>
<condition> <condition>
<and> <and>
@ -98,7 +81,7 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>-0.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>0</z-m>
<pitch-deg>0</pitch-deg> <pitch-deg>0</pitch-deg>
@ -173,9 +156,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>1.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>-1</z-m> <z-m>0</z-m>
</offsets> </offsets>
</model> </model>

View file

@ -40,24 +40,7 @@
<path>Aircraft/A320-family/Models/Effects/contrail.xml</path> <path>Aircraft/A320-family/Models/Effects/contrail.xml</path>
<name>contrail</name> <name>contrail</name>
<condition> <condition>
<and> <property>environment/contrail</property>
<greater-than>
<property>engines/engine[0]/n2-actual</property>
<value>50</value>
</greater-than>
<greater-than>
<property>position/altitude-ft</property>
<value>19000</value>
</greater-than>
<less-than>
<property>environment/temperature-degc</property>
<value>-30</value>
</less-than>
<equals>
<property>engines/engine[0]/state</property>
<value>3</value>
</equals>
</and>
</condition> </condition>
<overlay> <overlay>
<params> <params>
@ -100,9 +83,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>-0.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>0.3</z-m>
<pitch-deg>0</pitch-deg> <pitch-deg>0</pitch-deg>
</offsets> </offsets>
</model> </model>
@ -175,9 +158,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>0.875</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>-2.5</z-m> <z-m>0</z-m>
</offsets> </offsets>
</model> </model>

View file

@ -40,24 +40,7 @@
<name>contrail</name> <name>contrail</name>
<path>Aircraft/A320-family/Models/Effects/contrail.xml</path> <path>Aircraft/A320-family/Models/Effects/contrail.xml</path>
<condition> <condition>
<and> <property>environment/contrail</property>
<greater-than>
<property>engines/engine[1]/n2-actual</property>
<value>50</value>
</greater-than>
<greater-than>
<property>position/altitude-ft</property>
<value>19000</value>
</greater-than>
<less-than>
<property>environment/temperature-degc</property>
<value>-30</value>
</less-than>
<equals>
<property>engines/engine[1]/state</property>
<value>3</value>
</equals>
</and>
</condition> </condition>
<overlay> <overlay>
<params> <params>
@ -100,9 +83,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>-0.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>0.3</z-m>
<pitch-deg>0</pitch-deg> <pitch-deg>0</pitch-deg>
</offsets> </offsets>
</model> </model>
@ -175,9 +158,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>0.875</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>-2.5</z-m> <z-m>0</z-m>
</offsets> </offsets>
</model> </model>

View file

@ -37,24 +37,7 @@
<path>Aircraft/A320-family/Models/Effects/contrail.xml</path> <path>Aircraft/A320-family/Models/Effects/contrail.xml</path>
<name>contrail</name> <name>contrail</name>
<condition> <condition>
<and> <property>environment/contrail</property>
<greater-than>
<property>engines/engine[0]/n2-actual</property>
<value>50</value>
</greater-than>
<greater-than>
<property>position/altitude-ft</property>
<value>19000</value>
</greater-than>
<less-than>
<property>environment/temperature-degc</property>
<value>-30</value>
</less-than>
<equals>
<property>engines/engine[0]/state</property>
<value>3</value>
</equals>
</and>
</condition> </condition>
<overlay> <overlay>
<params> <params>
@ -97,9 +80,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>-0.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>0.5</z-m>
<pitch-deg>0</pitch-deg> <pitch-deg>0</pitch-deg>
</offsets> </offsets>
</model> </model>
@ -172,9 +155,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>0.875</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>-2.5</z-m> <z-m>0</z-m>
</offsets> </offsets>
</model> </model>

View file

@ -37,24 +37,7 @@
<path>Aircraft/A320-family/Models/Effects/contrail.xml</path> <path>Aircraft/A320-family/Models/Effects/contrail.xml</path>
<name>contrail</name> <name>contrail</name>
<condition> <condition>
<and> <property>environment/contrail</property>
<greater-than>
<property>engines/engine[1]/n2-actual</property>
<value>50</value>
</greater-than>
<greater-than>
<property>position/altitude-ft</property>
<value>19000</value>
</greater-than>
<less-than>
<property>environment/temperature-degc</property>
<value>-30</value>
</less-than>
<equals>
<property>engines/engine[1]/state</property>
<value>3</value>
</equals>
</and>
</condition> </condition>
<overlay> <overlay>
<params> <params>
@ -97,9 +80,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>-0.5</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>0</z-m> <z-m>0.5</z-m>
<pitch-deg>0</pitch-deg> <pitch-deg>0</pitch-deg>
</offsets> </offsets>
</model> </model>
@ -172,9 +155,9 @@
</and> </and>
</condition> </condition>
<offsets> <offsets>
<x-m>0.875</x-m> <x-m>0</x-m>
<y-m>0</y-m> <y-m>0</y-m>
<z-m>-2.5</z-m> <z-m>0</z-m>
</offsets> </offsets>
</model> </model>

Binary file not shown.