]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/JSBSim/models/flight_control/FGActuator.h
Merge branch 'next' of git://gitorious.org/fg/flightgear into next
[flightgear.git] / src / FDM / JSBSim / models / flight_control / FGActuator.h
old mode 100755 (executable)
new mode 100644 (file)
index a420cbe..7a7866e
@@ -4,7 +4,7 @@
  Author:       Jon Berndt
  Date started: 21 February 2007
 
- ------------- Copyright (C) 2006 Jon S. Berndt (jsb@hal-pc.org) -------------
+ ------------- Copyright (C) 2006 Jon S. Berndt (jon@jsbsim.org) -------------
 
  This program is free software; you can redistribute it and/or modify it under
  the terms of the GNU Lesser General Public License as published by the Free Software
@@ -38,13 +38,13 @@ INCLUDES
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
 
 #include "FGFCSComponent.h"
-#include <input_output/FGXMLElement.h>
+#include "input_output/FGXMLElement.h"
 
 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 DEFINITIONS
 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
 
-#define ID_ACTUATOR "$Id$"
+#define ID_ACTUATOR "$Id: FGActuator.h,v 1.11 2009/10/02 10:30:09 jberndt Exp $"
 
 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
 FORWARD DECLARATIONS
@@ -65,12 +65,12 @@ CLASS DOCUMENTATION
     applied to the actuator. In order of application to the input signal,
     these are:
     
-    -System lag (input lag, really)
-    -Rate limiting
-    -Deadband
-    -Hysteresis (mechanical hysteresis)
-    -Bias (mechanical bias)
-    -Position limiting ("hard stops")
+    - System lag (input lag, really)
+    - Rate limiting
+    - Deadband
+    - Hysteresis (mechanical hysteresis)
+    - Bias (mechanical bias)
+    - Position limiting ("hard stops")
     
     There are also several malfunctions that can be applied to the actuator
     by setting a property to true or false (or 1 or 0).
@@ -78,7 +78,7 @@ CLASS DOCUMENTATION
 Syntax:
 
 @code
-<actuator name=\94name\94>
+<actuator name="name">
   <input> {[-]property} </input>
   <lag> number </lag>
   <rate_limit> number <rate_limit>
@@ -96,7 +96,7 @@ Syntax:
 Example:
 
 @code
-<actuator name=\94fcs/gimbal_pitch_position\94>
+<actuator name="fcs/gimbal_pitch_position">
   <input> fcs/gimbal_pitch_command </input>
   <lag> 60 </lag>
   <rate_limit> 0.085 <rate_limit> <!-- 5 degrees/sec -->
@@ -111,7 +111,7 @@ Example:
 @endcode
 
 @author Jon S. Berndt
-@version $Revision$
+@version $Revision: 1.11 $
 */
 
 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -144,7 +144,6 @@ public:
   inline bool GetFailStuck(void) const {return fail_stuck;}
   
 private:
-  double dt;
   double span;
   double bias;
   double rate_limit;