JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGJSBBase::Filter Class Reference

Detailed Description

First order, (low pass / lag) filter.

Definition at line 126 of file FGJSBBase.h.

#include <FGJSBBase.h>

Public Member Functions

 Filter (double coeff, double dt)
 
double execute (double in)
 

Constructor & Destructor Documentation

◆ Filter() [1/2]

Filter ( void  )
inline

Definition at line 132 of file FGJSBBase.h.

132{}

◆ Filter() [2/2]

Filter ( double  coeff,
double  dt 
)
inline

Definition at line 133 of file FGJSBBase.h.

133 {
134 prev_in = prev_out = 0.0;
135 double denom = 2.0 + coeff*dt;
136 ca = coeff*dt/denom;
137 cb = (2.0 - coeff*dt)/denom;
138 }

Member Function Documentation

◆ execute()

double execute ( double  in)
inline

Definition at line 139 of file FGJSBBase.h.

139 {
140 double out = (in + prev_in)*ca + prev_out*cb;
141 prev_in = in;
142 prev_out = out;
143 return out;
144 }

The documentation for this class was generated from the following file: