8#ifndef __generalIntegrator_hpp__
9#define __generalIntegrator_hpp__
18template <
typename _realT>
26 typedef std::vector<realT> commandT;
37template <
typename _realT>
55 typedef Eigen::Array<realT, Eigen::Dynamic, Eigen::Dynamic>
imageT;
247 int gains(
const std::string &ogainf );
261template <
typename realT>
266template <
typename realT>
275 m_a.resize( m_nModes, n );
279 m_commandsOut.resize( m_nModes, n );
280 m_commandsOut.setZero();
287 m_b.resize( m_nModes, n );
291 m_commandsIn.resize( m_nModes, n );
292 m_commandsIn.setZero();
295 m_closingGains.resize( 1, m_nModes );
297 m_closingGains.setZero();
299 m_gains.resize( 1, m_nModes );
306template <
typename realT>
312template <
typename realT>
319template <
typename realT>
325template <
typename realT>
328 m_openLoopDelay = old;
333template <
typename realT>
336 return m_openLoopDelay;
339template <
typename realT>
347template <
typename realT>
350 return m_closingRamp;
353template <
typename realT>
361template <
typename realT>
364 return m_closingDelay;
367template <
typename realT>
371 if( gains.size() != (
size_t)m_closingGains.cols() )
373 mxError(
"generalIntegrator::closingGains", MXE_SIZEERR,
"input gain vector not same size as number of modes" );
377 for(
int i = 0; i < m_closingGains.cols(); ++i )
379 m_closingGains( 0, i ) = gains[i];
385template <
typename realT>
388 for(
int i = 0; i < m_closingGains.cols(); ++i )
390 m_closingGains( 0, i ) = g;
396template <
typename realT>
404template <
typename realT>
410template <
typename realT>
416 m_a.resize( m_nModes, n );
417 m_commandsOut.resize( m_nModes, n );
422 m_commandsOut.resize( 1, n );
427 m_commandsOut.setZero();
432template <
typename realT>
440template <
typename realT>
446 m_b.resize( m_nModes, n );
447 m_commandsIn.resize( m_nModes, n );
452 m_commandsIn.resize( 1, n );
457 m_commandsIn.setZero();
462template <
typename realT>
470template <
class realT>
473 if( i < 0 || i >= m_nModes )
475 mxError(
"generalIntegrator::gain", MXE_INVALIDARG,
"mode index out of range" );
482template <
typename realT>
485 if( i < 0 || i >= m_nModes )
487 mxError(
"generalIntegrator::gain", MXE_INVALIDARG,
"mode index out of range" );
496template <
typename realT>
499 for(
int i = 0; i < m_gains.cols(); ++i )
507template <
typename realT>
511 if( gains.size() != (
size_t)m_gains.cols() )
513 mxError(
"generalIntegrator::gains", MXE_SIZEERR,
"input gain vector not same size as number of modes" );
517 for(
int i = 0; i < m_gains.cols(); ++i )
519 m_gains( 0, i ) = gains[i];
525template <
typename realT>
533 mxError(
"generalIntegrator::gains", MXE_FILEOERR,
"could not open gan file" );
539 for(
int i = 0; i < m_gains.cols(); ++i )
542 g = ioutils::convertFromString<realT>( tmpstr );
549template <
class realT>
552 filtAmps.measurement.resize( m_nModes );
553 for(
size_t n = 0; n < m_nModes; ++n )
554 filtAmps.measurement[n] = 0;
557 rawAmps.measurement.resize( m_nModes );
558 for(
size_t n = 0; n < m_nModes; ++n )
559 rawAmps.measurement[n] = 0;
566template <
typename realT>
569 filtAmps.iterNo = rawAmps.iterNo;
571 if( m_openLoop || iterNo < m_openLoopDelay )
573 for(
size_t n = 0; n < m_nModes; ++n )
574 filtAmps.measurement[n] = 0;
581 if( iterNo - m_openLoopDelay < m_closingDelay )
585 for(
int i = 0; i < m_nModes; ++i )
589 if( std::isnan( rawAmps.measurement[i] ) || !std::isfinite( rawAmps.measurement[i] ) )
590 rawAmps.measurement[i] = 0.0;
593 m_commandsIn( i, m_currB ) = rawAmps.measurement[i];
595 aTot = m_commandsOut( i, m_currA );
598 int cA = m_currA + 1;
599 if( cA >= m_a.cols() )
604 if( iterNo - m_openLoopDelay < m_closingRamp )
605 gf = ( (realT)iterNo - m_openLoopDelay ) / m_closingRamp;
608 m_commandsOut( i, cA ) = aTot + gf * m_closingGains( i ) * rawAmps.measurement[i];
612 if( i <= m_lowOrders || m_lowOrders <= 0 )
614 filtAmps.measurement[i] = m_commandsOut( i, cA );
618 filtAmps.measurement[i] = 0;
623 if( m_currB >= m_b.cols() )
627 if( m_currA >= m_a.cols() )
633 for(
int i = 0; i < m_nModes; ++i )
635 if( m_gains( i ) == 0 )
638 filtAmps.measurement[i] = 0;
644 if( std::isnan( rawAmps.measurement[i] ) || !std::isfinite( rawAmps.measurement[i] ) )
645 rawAmps.measurement[i] = 0.0;
648 for(
int j = 0; j < m_a.cols(); ++j )
653 aTot += m_a( i, j ) * m_commandsOut( i, k );
656 m_commandsIn( i, m_currB ) = rawAmps.measurement[i];
659 for(
int j = 0; j < m_b.cols(); ++j )
665 bTot += m_b( i, j ) * m_commandsIn( i, k );
668 int cA = m_currA + 1;
669 if( cA >= m_a.cols() )
672 m_commandsOut( i, cA ) = aTot + m_gains( i ) * bTot;
674 filtAmps.measurement[i] = m_commandsOut( i, cA );
678 if( m_currB >= m_b.cols() )
682 if( m_currA >= m_a.cols() )
Implements a general integrator controller.
imageT m_closingGains
Column-vector of gains used for loop closing as simple integrator.
int nModes()
Get the number of modes.
generalIntegrator()
Default c'tor.
int m_openLoopDelay
If > 0, then the loop is open for this time in time steps. Default is 0.
int closingDelay()
Get the value of the m_closingDelay.
int setA(int i, const imageT &a)
Set the IIR coefficients for one mode.
bool openLoop()
Get the value of the m_openLoop flag.
wfMeasurement< realT > commandT
The wavefront data type.
bool m_openLoop
If true, then commands are not integrated. Default is false.
int gains(realT g)
Set the gain for all modes to a single value.
int closingGains(const std::vector< realT > &gains)
Set the simple integrator gains to use during closing.
int openLoopDelay()
Get the value of the m_openLoopDelay.
std::complex< realT > complexT
The real data type.
int setB(int i, const imageT &b)
Set the FIR coefficients for one mode.
int initialize(int nModes)
Allocate and initialize all state.
Eigen::Array< realT, Eigen::Dynamic, Eigen::Dynamic > imageT
The image type, used here as a general storage array.
int initMeasurements(commandT &filtAmps, commandT &rawAmps)
Allocate the provided command structures.
_realT realT
The real data type.
int lowOrders()
Get the value of the m_lowOrders.
int setBSize(int n)
Set the size of the FIR vector (the b coefficients)
int setASize(int n)
Set the size of the IIR vector (the a coefficients)
realT gain(int i)
Get the gain for a single mode.
int closingRamp()
Get the value of the m_closingRamp.
imageT m_gains
Column-vector of gains.
int m_nModes
The number of modes being filtered.
constexpr units::realT k()
Boltzmann Constant.