#include <FGSummer.h>
Inherits FGFCSComponent.
<summer name="{string}"> <input> {string} </input> <input> {string} </input> <bias> {number} </bias> <clipto> <min> {number} </min> <max> {number} </max> </clipto> <output> {string} </output> </summer>
Note that in the case of an input property the property name may be immediately preceded by a minus sign. Here's an example of a summer component specification:
<summer name="Roll A/P Error summer">
<input> velocities/p-rad_sec </input>
<input> -fcs/roll-ap-wing-leveler </input>
<input> fcs/roll-ap-error-integrator </input>
<clipto>
<min> -1 </min>
<max> 1 </max>
</clipto>
</summer>
Notes:
There can be only one BIAS statement per component.
There may be any number of inputs.
Definition at line 116 of file FGSummer.h.
Public Member Functions | |
| FGSummer (FGFCS *fcs, Element *element) | |
| Constructor. | |
| bool | Run (void) |
| The execution method for this FCS component. | |
| ~FGSummer () | |
| Destructor. | |
| fcs | a pointer to the parent FGFCS object. | |
| element | a pointer to the configuration file node. |
Definition at line 51 of file FGSummer.cpp.
1.5.5