2020-12-03 18:29:28 +01:00
# ifndef FSFW_POWER_FUSE_H_
# define FSFW_POWER_FUSE_H_
2018-07-12 16:29:32 +02:00
2020-08-13 20:53:35 +02:00
# include "PowerComponentIF.h"
# include "PowerSwitchIF.h"
2020-12-03 18:29:28 +01:00
# include "../devicehandlers/HealthDevice.h"
# include "../monitoring/AbsLimitMonitor.h"
2020-08-13 20:53:35 +02:00
# include "../returnvalues/HasReturnvaluesIF.h"
# include "../parameters/ParameterHelper.h"
2018-07-12 16:29:32 +02:00
# include <list>
2020-12-03 18:29:28 +01:00
# include "../datapoollocal/StaticLocalDataSet.h"
2020-04-21 22:28:43 +02:00
namespace Factory {
2018-07-12 16:29:32 +02:00
void setStaticFrameworkObjectIds ( ) ;
}
class Fuse : public SystemObject ,
public HasHealthIF ,
public HasReturnvaluesIF ,
2020-04-21 22:28:43 +02:00
public ReceivesParameterMessagesIF ,
public SerializeIF {
2018-07-12 16:29:32 +02:00
friend void ( Factory : : setStaticFrameworkObjectIds ) ( ) ;
private :
2018-07-13 15:56:37 +02:00
static constexpr float RESIDUAL_POWER = 0.005 * 28.5 ; //!< This is the upper limit of residual power lost by fuses and switches. Worst case is Fuse and one of two switches on. See PCDU ICD 1.9 p29 bottom
2018-07-12 16:29:32 +02:00
public :
struct VariableIds {
2020-12-03 18:29:28 +01:00
gp_id_t pidVoltage ;
gp_id_t pidCurrent ;
gp_id_t pidState ;
gp_id_t poolIdPower ;
2018-07-12 16:29:32 +02:00
} ;
static const uint8_t SUBSYSTEM_ID = SUBSYSTEM_ID : : PCDU_1 ;
2020-12-08 14:43:44 +01:00
static const Event FUSE_CURRENT_HIGH = MAKE_EVENT ( 1 , severity : : LOW ) ; //!< PSS detected that current on a fuse is totally out of bounds.
static const Event FUSE_WENT_OFF = MAKE_EVENT ( 2 , severity : : LOW ) ; //!< PSS detected a fuse that went off.
static const Event POWER_ABOVE_HIGH_LIMIT = MAKE_EVENT ( 4 , severity : : LOW ) ; //!< PSS detected a fuse that violates its limits.
static const Event POWER_BELOW_LOW_LIMIT = MAKE_EVENT ( 5 , severity : : LOW ) ; //!< PSS detected a fuse that violates its limits.
2018-07-12 16:29:32 +02:00
typedef std : : list < PowerComponentIF * > DeviceList ;
2020-12-03 18:29:28 +01:00
Fuse ( object_id_t fuseObjectId , uint8_t fuseId , sid_t variableSet ,
VariableIds ids , float maxCurrent , uint16_t confirmationCount = 2 ) ;
2018-07-12 16:29:32 +02:00
virtual ~ Fuse ( ) ;
2020-04-21 22:28:43 +02:00
void addDevice ( PowerComponentIF * set ) ;
2018-07-12 16:29:32 +02:00
float getPower ( ) ;
bool isPowerValid ( ) ;
ReturnValue_t check ( ) ;
uint8_t getFuseId ( ) const ;
ReturnValue_t initialize ( ) ;
DeviceList devices ;
2020-04-21 22:28:43 +02:00
ReturnValue_t serialize ( uint8_t * * buffer , size_t * size , size_t maxSize ,
SerializeIF : : Endianness streamEndianness ) const override ;
size_t getSerializedSize ( ) const override ;
ReturnValue_t deSerialize ( const uint8_t * * buffer , size_t * size ,
SerializeIF : : Endianness streamEndianness ) override ;
2018-07-12 16:29:32 +02:00
void setAllMonitorsToUnchecked ( ) ;
ReturnValue_t performOperation ( uint8_t opCode ) ;
MessageQueueId_t getCommandQueue ( ) const ;
void setDataPoolEntriesInvalid ( ) ;
ReturnValue_t setHealth ( HealthState health ) ;
HasHealthIF : : HealthState getHealth ( ) ;
ReturnValue_t getParameter ( uint8_t domainId , uint16_t parameterId ,
2020-04-21 22:28:43 +02:00
ParameterWrapper * parameterWrapper ,
const ParameterWrapper * newValues , uint16_t startAtIndex ) ;
2018-07-12 16:29:32 +02:00
private :
uint8_t oldFuseState ;
uint8_t fuseId ;
2020-12-03 18:29:28 +01:00
PowerSwitchIF * powerIF = nullptr ; //could be static in our case.
2018-07-12 16:29:32 +02:00
AbsLimitMonitor < float > currentLimit ;
class PowerMonitor : public MonitorReporter < float > {
public :
template < typename . . . Args >
2020-12-03 18:29:28 +01:00
PowerMonitor ( Args . . . args ) :
2018-07-12 16:29:32 +02:00
MonitorReporter < float > ( std : : forward < Args > ( args ) . . . ) {
}
ReturnValue_t checkPower ( float sample , float lowerLimit ,
float upperLimit ) ;
void sendTransitionEvent ( float currentValue , ReturnValue_t state ) {
}
} ;
PowerMonitor powerMonitor ;
2020-12-03 18:29:28 +01:00
StaticLocalDataSet < 3 > set ;
2020-12-10 16:57:43 +01:00
2020-12-03 18:29:28 +01:00
lp_var_t < float > voltage ;
lp_var_t < float > current ;
lp_var_t < uint8_t > state ;
lp_var_t < float > power ;
MessageQueueIF * commandQueue = nullptr ;
2018-07-12 16:29:32 +02:00
ParameterHelper parameterHelper ;
HealthHelper healthHelper ;
static object_id_t powerSwitchId ;
2020-04-21 22:28:43 +02:00
void calculatePowerLimits ( float * low , float * high ) ;
2018-07-12 16:29:32 +02:00
void calculateFusePower ( ) ;
void checkFuseState ( ) ;
void reportEvents ( Event event ) ;
void checkCommandQueue ( ) ;
bool areSwitchesOfComponentOn ( DeviceList : : iterator iter ) ;
} ;
2020-12-03 18:29:28 +01:00
# endif /* FSFW_POWER_FUSE_H_ */