foxBMS - Unit Tests
1.3.0
The foxBMS Unit Tests API Documentation
|
Functions | |
void | SOC_Init (DATA_BLOCK_SOX_s *pSocValues, bool ccPresent, uint8_t stringNumber) |
initializes startup SOC-related values like lookup from nonvolatile ram at startup More... | |
void | SOC_Calculation (DATA_BLOCK_SOX_s *pSocValues) |
periodically called algorithm to calculate state-of-charge (SOC) More... | |
float | SOC_GetFromVoltage (int16_t voltage_mV) |
look-up table for SOC initialization More... | |
void | SOE_Init (DATA_BLOCK_SOX_s *pSoeValues, bool ec_present, uint8_t stringNumber) |
initializes startup state-of-energy (SOE) related values More... | |
void | SOE_Calculation (DATA_BLOCK_SOX_s *pSoeValues) |
periodically called algorithm to calculate state-of-energy (SOE) More... | |
void | SOH_Init (DATA_BLOCK_SOX_s *pSohValues, uint8_t stringNumber) |
initializes startup state-of-health related values More... | |
void | SOH_Calculation (DATA_BLOCK_SOX_s *pSohValues) |
calculates state-of-health (SOH) More... | |
This API is implemented by the state estimation functions and called by the state estimation module.
INCLUDE MARKER FOR THE DOCUMENTATION; DO NOT MOVE se-state-estimation-api-start-include
void SOC_Calculation | ( | DATA_BLOCK_SOX_s * | pSocValues | ) |
periodically called algorithm to calculate state-of-charge (SOC)
[out] | pSocValues | pointer to SOC values |
Definition at line 280 of file soc_counting.c.
float SOC_GetFromVoltage | ( | int16_t | voltage_mV | ) |
look-up table for SOC initialization
[in] | voltage_mV | voltage in mV of battery cell |
Definition at line 360 of file soc_counting.c.
void SOC_Init | ( | DATA_BLOCK_SOX_s * | pSocValues, |
bool | ccPresent, | ||
uint8_t | stringNumber | ||
) |
initializes startup SOC-related values like lookup from nonvolatile ram at startup
[out] | pSocValues | pointer to SOC database entry |
[in] | ccPresent | true if current sensor present, false otherwise |
[in] | stringNumber | string addressed |
Definition at line 237 of file soc_counting.c.
void SOE_Calculation | ( | DATA_BLOCK_SOX_s * | pSoeValues | ) |
periodically called algorithm to calculate state-of-energy (SOE)
[out] | pSoeValues | pointer to SOE database entry |
Definition at line 356 of file soe_counting.c.
void SOE_Init | ( | DATA_BLOCK_SOX_s * | pSoeValues, |
bool | ec_present, | ||
uint8_t | stringNumber | ||
) |
initializes startup state-of-energy (SOE) related values
[out] | pSoeValues | pointer to SOE database entry |
[in] | ec_present | true if current sensor EC message received, false otherwise |
[in] | stringNumber | string addressed |
Definition at line 312 of file soe_counting.c.
void SOH_Calculation | ( | DATA_BLOCK_SOX_s * | pSohValues | ) |
calculates state-of-health (SOH)
[out] | pSohValues | pointer to SOH database entry |
Definition at line 79 of file soh_debug.c.
void SOH_Init | ( | DATA_BLOCK_SOX_s * | pSohValues, |
uint8_t | stringNumber | ||
) |
initializes startup state-of-health related values
[out] | pSohValues | pointer to SOH database entry |
[in] | stringNumber | string addressed |
Definition at line 69 of file soh_debug.c.