Ver código fonte

Upload files to 'Nasal'

Vibration changes -  Flight vibration increases from 120 kts progressivly  the VNE at 140 kts. If you can hang on to it  beyond that, good luck.
StuartC 1 ano atrás
pai
commit
ae588cb29f
1 arquivos alterados com 2 adições e 2 exclusões
  1. 2 2
      Nasal/bo105.nas

+ 2 - 2
Nasal/bo105.nas

@@ -605,9 +605,9 @@ var vibration = { # and noise ...
 	},
 	update: func(dt) {
 		var airspeed = me.airspeedN.getValue();
-		if (airspeed > 130) { # overspeed vibration
+		if (airspeed > 120) { # overspeed vibration
 			var frequency = 2000 + 500 * rand();
-			var v = 0.49 + 0.5 * normatan(airspeed - 130, 10);
+			var v = 0.49 + 0.5 * normatan(airspeed - 140, 10);
 			var intensity = v;
 			var noise = v * internal;