ACTF:

Path: Common/Control

% Generic sensor or actuator model.

 The model is

    x              exp(-delay*s)
    -  = -----------------------------------
    u    (s^2 + 2*zeta*w + w^2)*(tau*s + 1 )


 Any term may be omitted. Uses a 2nd order delay model.
--------------------------------------------------------------------------
   Form:
   g = ACTF( e )
--------------------------------------------------------------------------

   ------
   Inputs
   ------
   e           (n)   Sensor data structure
                     .delay
                     .tau
                     .zeta
                     .w
                     .name   Name of the device

   -------
   Outputs
   -------
   g           (:)   Sensor state space model of type statespace

--------------------------------------------------------------------------