mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
|
Implements a general integrator controller.
document the math for the G.I.
document the filter coefficients, etc.
_realT | is the floating point type for all calculations. |
Definition at line 38 of file generalIntegrator.hpp.
#include <ao/sim/generalIntegrator.hpp>
Public Types | |
typedef _realT | realT |
The real data type. | |
typedef std::complex< realT > | complexT |
The real data type. | |
typedef wfMeasurement< realT > | commandT |
The wavefront data type. | |
typedef Eigen::Array< realT, Eigen::Dynamic, Eigen::Dynamic > | imageT |
The image type, used here as a general storage array. | |
Public Member Functions | |
generalIntegrator () | |
Default c'tor. | |
int | initialize (int nModes) |
Allocate and initialize all state. | |
int | nModes () |
Get the number of modes. | |
int | openLoop (bool ol) |
Set the m_openLoop flag. | |
bool | openLoop () |
Get the value of the m_openLoop flag. | |
int | openLoopDelay (int cr) |
Set the open loop delay. | |
int | openLoopDelay () |
Get the value of the m_openLoopDelay. | |
int | closingRamp (int cr) |
Set the closing ramp. | |
int | closingRamp () |
Get the value of the m_closingRamp. | |
int | closingDelay (int cd) |
Set the closing delay. | |
int | closingDelay () |
Get the value of the m_closingDelay. | |
int | closingGains (const std::vector< realT > &gains) |
Set the simple integrator gains to use during closing. | |
int | closingGains (realT g) |
Set the simple integrator gain to use for all modes during closing. | |
int | lowOrders (int lo) |
Set m_lowOrders. | |
int | lowOrders () |
Get the value of the m_lowOrders. | |
int | setASize (int n) |
Set the size of the IIR vector (the a coefficients) | |
int | setA (int i, const imageT &a) |
Set the IIR coefficients for one mode. | |
int | setBSize (int n) |
Set the size of the FIR vector (the b coefficients) | |
int | setB (int i, const imageT &b) |
Set the FIR coefficients for one mode. | |
realT | gain (int i) |
Get the gain for a single mode. | |
int | gain (int i, realT g) |
Set the gain for a single mode. | |
int | gains (realT g) |
Set the gain for all modes to a single value. | |
int | gains (const std::vector< realT > &gains) |
Set the gains for all modes, using a vector to specify each gain. | |
int | gains (const std::string &ogainf) |
Set the gains for all modes, using a file to specify each gain. | |
int | initMeasurements (commandT &filtAmps, commandT &rawAmps) |
Allocate the provided command structures. | |
Protected Attributes | |
int | m_nModes { 0 } |
The number of modes being filtered. | |
bool | m_openLoop { false } |
If true, then commands are not integrated. Default is false. | |
int | m_openLoopDelay { 0 } |
If > 0, then the loop is open for this time in time steps. Default is 0. | |
int | m_closingRamp { 0 } |
int | m_closingDelay { 0 } |
imageT | m_closingGains |
Column-vector of gains used for loop closing as simple integrator. | |
int | m_lowOrders { 0 } |
imageT | m_gains |
Column-vector of gains. | |
typedef wfMeasurement<realT> mx::AO::sim::generalIntegrator< _realT >::commandT |
typedef std::complex<realT> mx::AO::sim::generalIntegrator< _realT >::complexT |
The real data type.
Definition at line 46 of file generalIntegrator.hpp.
typedef Eigen::Array<realT, Eigen::Dynamic, Eigen::Dynamic> mx::AO::sim::generalIntegrator< _realT >::imageT |
The image type, used here as a general storage array.
Definition at line 55 of file generalIntegrator.hpp.
typedef _realT mx::AO::sim::generalIntegrator< _realT >::realT |
The real data type.
Definition at line 43 of file generalIntegrator.hpp.
mx::AO::sim::generalIntegrator< realT >::generalIntegrator | ( | ) |
Default c'tor.
Definition at line 262 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::closingDelay | ( | ) |
Get the value of the m_closingDelay.
Definition at line 362 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::closingDelay | ( | int | cd | ) |
Set the closing delay.
If m_closingDelay > 0, then the simple integragor is used until this timestep.
[in] | cd | The new value of m_closingDelay |
Definition at line 354 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::closingGains | ( | const std::vector< realT > & | gains | ) |
Set the simple integrator gains to use during closing.
-1 | on vector size mismatch |
[in] | gains | vector of gains. |
Definition at line 368 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::closingGains | ( | realT | g | ) |
Set the simple integrator gain to use for all modes during closing.
Definition at line 386 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::closingRamp | ( | ) |
Get the value of the m_closingRamp.
Definition at line 348 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::closingRamp | ( | int | cr | ) |
Set the closing ramp.
If m_closingRamp > 0, then the gains are ramped linearly up to m_closingGains over this timer interval in timesteps. Requires m_closingDelay > 0.
[in] | cr | The new value of m_closingRamp |
Definition at line 340 of file generalIntegrator.hpp.
realT mx::AO::sim::generalIntegrator< realT >::gain | ( | int | i | ) |
Get the gain for a single mode.
0 | if the mode doesn't exist. |
i | The mode number |
Definition at line 471 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::gain | ( | int | i, |
realT | g | ||
) |
Set the gain for a single mode.
0 | if the mode doesn't exist. |
i | The mode number |
g | The new gain value |
Definition at line 483 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::gains | ( | const std::string & | ogainf | ) |
Set the gains for all modes, using a file to specify each gain.
The file format is a simple ASCII single column, with 1 gain per line. Must be exactly as long as m_nModes.
-1 | if file open fails |
[in] | ogainf | the name of the file, full path |
Definition at line 526 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::gains | ( | const std::vector< realT > & | gains | ) |
Set the gains for all modes, using a vector to specify each gain.
The vector must be exactly as long as m_nModes.
-1 | on vector size mismatch |
[in] | gains | vector of gains. |
Definition at line 508 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::gains | ( | realT | g | ) |
Set the gain for all modes to a single value.
g | The new gain value |
Definition at line 497 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::initialize | ( | int | nModes | ) |
Allocate and initialize all state.
[in] | nModes | the number of modes to be filtered |
Definition at line 267 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::initMeasurements | ( | commandT & | filtAmps, |
commandT & | rawAmps | ||
) |
Allocate the provided command structures.
Used by the calling system to allocate the commands being passed between components.
filtAmps | The structure to contain the filtered commands |
rawAmps | The structure to contain the raw commands |
Definition at line 550 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::lowOrders | ( | ) |
Get the value of the m_lowOrders.
Definition at line 405 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::lowOrders | ( | int | lo | ) |
Set m_lowOrders.
If m_lowOrders > 0, then this sets the maximum mode number which is filtered. All remaining modes are set to 0.
[in] | lo | The new value of m_lowOrders |
Definition at line 397 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::nModes | ( | ) |
Get the number of modes.
nModes is only set by calling initialize.
Definition at line 307 of file generalIntegrator.hpp.
bool mx::AO::sim::generalIntegrator< realT >::openLoop | ( | ) |
Get the value of the m_openLoop flag.
Definition at line 320 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::openLoop | ( | bool | ol | ) |
Set the m_openLoop flag.
If m_openLoop is true, then commands are not filtered.
[in] | ol | the new value of m_openLoop |
Definition at line 313 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::openLoopDelay | ( | ) |
Get the value of the m_openLoopDelay.
Definition at line 334 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::openLoopDelay | ( | int | cr | ) |
Set the open loop delay.
If m_openLoopDelay > 0, then the loop is open for this period in time-steps Requires m_closingDelay > 0.
[in] | cr | The new value of m_openLoopDelay |
Definition at line 326 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::setA | ( | int | i, |
const imageT & | a | ||
) |
Set the IIR coefficients for one mode.
[in] | i | the mode number |
[in] | a | the IIR coefficients for this mode |
Definition at line 433 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::setASize | ( | int | n | ) |
Set the size of the IIR vector (the a coefficients)
This allocates m_a to be m_nModes X n in size.
[in] | n | the number of IIR coefficients |
Definition at line 411 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::setB | ( | int | i, |
const imageT & | b | ||
) |
Set the FIR coefficients for one mode.
[in] | i | the mode number |
[in] | b | the IIR coefficients for this mode |
Definition at line 463 of file generalIntegrator.hpp.
int mx::AO::sim::generalIntegrator< realT >::setBSize | ( | int | n | ) |
Set the size of the FIR vector (the b coefficients)
This allocates m_b to be m_nModes X n in size.
[in] | n | the number of FIR coefficients |
Definition at line 441 of file generalIntegrator.hpp.
|
protected |
If > 0, then the simple integrator,with m_closingGains is used up to this timestep. This is relative m_openLoopDelay. Default = 0.
Definition at line 70 of file generalIntegrator.hpp.
|
protected |
Column-vector of gains used for loop closing as simple integrator.
Definition at line 73 of file generalIntegrator.hpp.
|
protected |
If > 0, then gains are famped linearly up to m_closingGains over this interval in time steps. Default is 0. This is relative m_openLoopDelay.
Definition at line 67 of file generalIntegrator.hpp.
|
protected |
Column-vector of gains.
Definition at line 84 of file generalIntegrator.hpp.
|
protected |
If > 0, then this sets the maximum mode number which is filtered. All remaining modes are set to 0. Default = 0.
Definition at line 75 of file generalIntegrator.hpp.
|
protected |
The number of modes being filtered.
Definition at line 61 of file generalIntegrator.hpp.
|
protected |
If true, then commands are not integrated. Default is false.
Definition at line 63 of file generalIntegrator.hpp.
|
protected |
If > 0, then the loop is open for this time in time steps. Default is 0.
Definition at line 65 of file generalIntegrator.hpp.