foxBMS-UnitTests
1.0.0
The foxBMS Unit Tests API Documentation
|
SOC module responsible for calculation of state-of-charge (SOC) More...
#include "soc_debug.h"
Go to the source code of this file.
Functions | |
void | SOC_Init (bool cc_present, uint8_t stringNumber) |
initializes startup SOC-related values like lookup from nonvolatile ram at startup More... | |
void | SOC_Calculation (void) |
integrates current over time to calculate SOC. More... | |
float | SOC_GetFromVoltage (int16_t voltage_mV) |
look-up table for SOC initialization (average, min and max). More... | |
SOC module responsible for calculation of state-of-charge (SOC)
BSD 3-Clause License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
We kindly request you to use one or more of the following phrases to refer to foxBMS in your hardware, software, documentation or advertising materials:
″This product uses parts of foxBMS®″
″This product includes parts of foxBMS®″
″This product is derived from foxBMS®″
Definition in file soc_debug.c.
void SOC_Calculation | ( | void | ) |
integrates current over time to calculate SOC.
Definition at line 71 of file soc_debug.c.
float SOC_GetFromVoltage | ( | int16_t | voltage_mV | ) |
look-up table for SOC initialization (average, min and max).
[in] | voltage_mV | voltage of battery cell |
Definition at line 74 of file soc_debug.c.
void SOC_Init | ( | bool | cc_present, |
uint8_t | stringNumber | ||
) |
initializes startup SOC-related values like lookup from nonvolatile ram at startup
[in] | cc_present | true if current sensor present, false otherwise |
[in] | stringNumber | string addressed |
Definition at line 68 of file soc_debug.c.