foxBMS - Unit Tests  1.6.0
The foxBMS Unit Tests API Documentation
state_estimation.h
Go to the documentation of this file.
1 /**
2  *
3  * @copyright © 2010 - 2023, Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V.
4  * All rights reserved.
5  *
6  * SPDX-License-Identifier: BSD-3-Clause
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright notice, this
12  * list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright notice,
15  * this list of conditions and the following disclaimer in the documentation
16  * and/or other materials provided with the distribution.
17  *
18  * 3. Neither the name of the copyright holder nor the names of its
19  * contributors may be used to endorse or promote products derived from
20  * this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
23  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
28  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  *
33  * We kindly request you to use one or more of the following phrases to refer to
34  * foxBMS in your hardware, software, documentation or advertising materials:
35  *
36  * - ″This product uses parts of foxBMS®″
37  * - ″This product includes parts of foxBMS®″
38  * - ″This product is derived from foxBMS®″
39  *
40  */
41 
42 /**
43  * @file state_estimation.h
44  * @author foxBMS Team
45  * @date 2020-10-14 (date of creation)
46  * @updated 2023-10-12 (date of last update)
47  * @version v1.6.0
48  * @ingroup APPLICATION
49  * @prefix SE
50  *
51  * @brief Header for state-estimation module responsible for the estimation
52  * of state-of-charge (SOC), state-of-energy (SOE) and state-of-health
53  * (SOH). Functions as a wrapper for the individual state-estimation
54  * algorithms.
55  *
56  */
57 
58 #ifndef FOXBMS__STATE_ESTIMATION_H_
59 #define FOXBMS__STATE_ESTIMATION_H_
60 
61 /*========== Includes =======================================================*/
62 
63 #include "database.h"
64 
65 #include <math.h>
66 #include <stdbool.h>
67 #include <stdint.h>
68 
69 /*========== Macros and Definitions =========================================*/
70 
71 /*========== Extern Constant and Variable Declarations ======================*/
72 
73 /*========== Extern Function Prototypes =====================================*/
74 /**
75  * @brief Wrapper for algorithm specific SOC initialization
76  * @param[in] ccPresent true if current sensor present, false otherwise
77  * @param[in] stringNumber string addressed
78  */
79 extern void SE_InitializeSoc(bool ccPresent, uint8_t stringNumber);
80 
81 /**
82  * @brief Wrapper for algorithm specific SOE initialization
83  * @param[in] ec_present true if current sensor present, false otherwise
84  * @param[in] stringNumber string addressed
85  */
86 extern void SE_InitializeSoe(bool ec_present, uint8_t stringNumber);
87 
88 /**
89  * @brief Wrapper for algorithm specific SOH initialization
90  * @param[in] stringNumber string addressed
91  */
92 extern void SE_InitializeSoh(uint8_t stringNumber);
93 
94 /**
95  * @brief Main function to perform state estimations
96  */
97 extern void SE_RunStateEstimations(void);
98 
99 /** \defgroup state-estimation-api State Estimation API
100  * @details This API is implemented by the state estimation functions and
101  * called by the state estimation module.
102  * @{
103  * INCLUDE MARKER FOR THE DOCUMENTATION; DO NOT MOVE se-state-estimation-api-start-include */
104 /**
105  * @brief initializes startup SOC-related values like lookup from nonvolatile
106  * ram at startup
107  * @param[out] pSocValues pointer to SOC database entry
108  * @param[in] ccPresent true if current sensor present, false otherwise
109  * @param[in] stringNumber string addressed
110  */
111 extern void SE_InitializeStateOfCharge(DATA_BLOCK_SOC_s *pSocValues, bool ccPresent, uint8_t stringNumber);
112 
113 /**
114  * @brief periodically called algorithm to calculate state-of-charge (SOC)
115  * @param[out] pSocValues pointer to SOC values
116  */
117 extern void SE_CalculateStateOfCharge(DATA_BLOCK_SOC_s *pSocValues);
118 
119 /**
120  * @brief look-up table for SOC initialization
121  * @param[in] voltage_mV voltage in mV of battery cell
122  * @return returns SOC value in percentage from 0.0% to 100.0%
123  */
124 extern float_t SE_GetStateOfChargeFromVoltage(int16_t voltage_mV);
125 
126 /**
127  * @brief initializes startup state-of-energy (SOE) related values
128  * @param[out] pSoeValues pointer to SOE database entry
129  * @param[in] ec_present true if current sensor EC message received, false otherwise
130  * @param[in] stringNumber string addressed
131  */
132 extern void SE_InitializeStateOfEnergy(DATA_BLOCK_SOE_s *pSoeValues, bool ec_present, uint8_t stringNumber);
133 
134 /**
135  * @brief periodically called algorithm to calculate state-of-energy (SOE)
136  * @param[out] pSoeValues pointer to SOE database entry
137  */
138 extern void SE_CalculateStateOfEnergy(DATA_BLOCK_SOE_s *pSoeValues);
139 
140 /**
141  * @brief initializes startup state-of-health related values
142  * @param[out] pSohValues pointer to SOH database entry
143  * @param[in] stringNumber string addressed
144  */
145 extern void SE_InitializeStateOfHealth(DATA_BLOCK_SOH_s *pSohValues, uint8_t stringNumber);
146 
147 /**
148  * @brief calculates state-of-health (SOH)
149  * @param[out] pSohValues pointer to SOH database entry
150  */
151 extern void SE_CalculateStateOfHealth(DATA_BLOCK_SOH_s *pSohValues);
152 
153 /** INCLUDE MARKER FOR THE DOCUMENTATION; DO NOT MOVE se-state-estimation-api-stop-include
154  * @}
155  */
156 
157 /*========== Externalized Static Functions Prototypes (Unit Test) ===========*/
158 #ifdef UNITY_UNIT_TEST
159 #endif
160 
161 #endif /* FOXBMS__STATE_ESTIMATION_H_ */
Database module header.
void SE_CalculateStateOfCharge(DATA_BLOCK_SOC_s *pSocValues)
periodically called algorithm to calculate state-of-charge (SOC)
Definition: soc_counting.c:287
void SE_InitializeStateOfCharge(DATA_BLOCK_SOC_s *pSocValues, bool ccPresent, uint8_t stringNumber)
initializes startup SOC-related values like lookup from nonvolatile ram at startup
Definition: soc_counting.c:245
void SE_CalculateStateOfHealth(DATA_BLOCK_SOH_s *pSohValues)
calculates state-of-health (SOH)
Definition: soh_debug.c:81
float_t SE_GetStateOfChargeFromVoltage(int16_t voltage_mV)
look-up table for SOC initialization
Definition: soc_counting.c:366
void SE_InitializeStateOfHealth(DATA_BLOCK_SOH_s *pSohValues, uint8_t stringNumber)
initializes startup state-of-health related values
Definition: soh_debug.c:71
void SE_InitializeStateOfEnergy(DATA_BLOCK_SOE_s *pSoeValues, bool ec_present, uint8_t stringNumber)
initializes startup state-of-energy (SOE) related values
Definition: soe_counting.c:315
void SE_CalculateStateOfEnergy(DATA_BLOCK_SOE_s *pSoeValues)
periodically called algorithm to calculate state-of-energy (SOE)
Definition: soe_counting.c:359
void SE_InitializeSoe(bool ec_present, uint8_t stringNumber)
Wrapper for algorithm specific SOE initialization.
void SE_InitializeSoc(bool ccPresent, uint8_t stringNumber)
Wrapper for algorithm specific SOC initialization.
void SE_InitializeSoh(uint8_t stringNumber)
Wrapper for algorithm specific SOH initialization.
void SE_RunStateEstimations(void)
Main function to perform state estimations.