Midnight Sun Firmware
Loading...
Searching...
No Matches
state_of_charge.h
1#pragma once
2
3/************************************************************************************************
4 * @file state_of_charge.h
5 *
6 * @brief Header file for State of Charge
7 *
8 * @date 2025-02-06
9 * @author Midnight Sun Team #24 - MSXVI
10 ************************************************************************************************/
11
12/* Standard library Headers */
13
14/* Inter-component Headers */
15#include "bms_carrier.h"
16#include "bms_carrier_getters.h"
17#include "bms_carrier_setters.h"
18#include "status.h"
19
20/* Intra-component Headers */
21
29#define CELL_INTERNAL_RESISTANCE_mOHMS 22U
31#define PACK_INTERNAL_RESISTANCE_mOHMS (CELL_INTERNAL_RESISTANCE_mOHMS * 9U * 4U) / 8U
33#define VOLTS_TO_mV 1000U
35#define LUT_SIZE 41U
36
41 uint32_t last_time;
42 float i_soc;
43 float v_soc;
45 int32_t last_current;
46};
47
55
61
67
72void ocv_voltage_soc();
73
79
80#ifdef MS_TEST
81
87void ramp_voltage_weight();
88
92void set_last_time(uint32_t last_time);
93
97void set_i_soc(float i_soc);
98
102void set_v_soc(float v_soc);
103
107void set_averaged_soc(float averaged_soc);
108
112void set_last_current(int32_t last_current);
113
117uint32_t get_last_time(void);
118
122float get_i_soc(void);
123
127float get_v_soc(void);
128
132float get_averaged_soc(void);
133
137int32_t get_last_current(void);
138
142float get_voltage_weight(void);
143
144#endif
145
StatusCode
StatusCodes for various errors.
Definition: status.h:27
float perdict_ocv_voltage()
Perdicts the open-circuit voltage.
StatusCode update_state_of_chrage()
Updates the state of charge value.
Definition: state_of_charge.c:107
void ocv_voltage_soc()
Open circuit voltage state of charge.
Definition: state_of_charge.c:71
StatusCode state_of_charge_init(BmsStorage *storage)
Initializes the state of charge.
Definition: state_of_charge.c:119
void coulomb_counting_soc()
Coulomb counting state of charge.
Definition: state_of_charge.c:57
Battery management system storage.
Definition: bms_carrier.h:50
State of charge storage.
Definition: state_of_charge.h:40
float averaged_soc
Definition: state_of_charge.h:44
int32_t last_current
Definition: state_of_charge.h:45
float v_soc
Definition: state_of_charge.h:43
uint32_t last_time
Definition: state_of_charge.h:41
float i_soc
Definition: state_of_charge.h:42