diff --git a/Docs/README.systems b/Docs/README.systems
index 879823649..95c11b29b 100644
--- a/Docs/README.systems
+++ b/Docs/README.systems
@@ -16,7 +16,7 @@ In your aircraft -set file add the path to the system.xml file:
....
Aircraft/aircraft-name/Systems/systems.xml
....
-
+
....
@@ -27,6 +27,7 @@ In your systems.xml, you should already have
pitot
0
+ 60 # optionnal, default to 60 degrees
and you need to add for a pitot system with index 1:
@@ -34,9 +35,10 @@ and you need to add for a pitot system with index 1:
pitot
1
+ 60 #optionnal
-For the any pitot system except for the first (with index 0)
+For the any pitot system except for the first (with index 0)
add in the aircraft -set file (below for index 1):
@@ -55,6 +57,8 @@ Absolutely analog with the pitot system. So add in systems.xml:
static
1
1
+ 0 #optionnal: 0,1 or 2 default is 0
+ 0.5 #optionnal see below default = 0
and in the aircraft -set file:
@@ -63,8 +67,68 @@ and in the aircraft -set file:
1
-
+
Now you can source your instrumentation relying on static and pitot
-pressure (airspeed, altimeter, vertical speed indicator) from different
+pressure (airspeed, altimeter, vertical speed indicator) from different
and independent systems
+
+
+** The PITOT System
+
+The pitot system measures impact pressure and is basically a tube pointing forward.
+Small aircraft have one, small IFR aircraft have one or two (of which at least
+one is heated) and larger commercial aircraft have three or even more. In those large
+aircraft the left pitot serves the pilot instruments, the right the co-pilot and
+the third system the back-up instruments. This might be different for each type
+of aircraft of course.
+In Flightgear the pitot system outputs the total pressure to the following property:
+/systems/pitot[n]/total-pressure-inhg and
+/systems/pitot[n]/measured-total-pressure-inhg
+which are the same except at supersonic speeds. For supersonic aircraft use the "measured"
+property. See also the README.airspeed-indicator.
+However it is advised for every aircraft to use the measured property. In future
+this will be the property where all the measurement faults are reflected.
+the following "measurement failures" are currently applied:
+1) decrease of total and measured pressure due to side-slip and angle of attack
+2) at 60 deg the pitot tube will stall and the value will fall back to static pressure
+3) for the "measured" property only: at Mach>1, a shock wave is assumed in front of the
+ pitot tube, decreasing the total pressure.
+
+The stall angle may be (optionally) set to any angle between 0 and 90 deg
+(default = 60 deg) like so:
+
+ pitot
+ 0
+ 45
+
+
+Both the decrease of the pitot pressure and the default stall angle are based on a measurement
+on an AN5812 pitot tube.
+
+
+** The STATIC system
+
+The static system measures the static pressure. So all influences of airspeed are eliminated.
+In real life this is however not always easy. Effects from angle of attack, side-slip, flap defection,
+gear extension, engine power setting and airspeed are present and for the aircraft
+designer it is not alway easy to find a good position for the static port.
+Usually the number of static systems are equal to the number of pitot systems.
+In Flightgear there are 3 types of static systems modelled.
+Type 0 (default): the perfect sensor. No measurement failures.
+Type 1: Dual static ports on the fuselage sides. Side-slip angle influence only. this model the whole pair.
+Type 2: Static port on the pitot tube. Both angle of attack and side-slip influence.
+If you want to use type 1 or 2:
+
+ static
+ 0
+ 0.1
+ 1
+ 0.5
+
+The output property /systems/static[n]/pressure-inhg is filtered. Therefore, if you want to see
+the effect of the measurement failure, "tau" should be 0.1 or smaller.
+The "error-factor" should be between 0.2 and 0.7. Setting it to 0 equals a "perfect sensor".
+A setting of 1 means the whole (projected on static port face) impact pressure is applied.
+This is not realistic as usually there are more than one static pick-up points
+and so the pressure increase gets "flattened".