15#include "bms_carrier.h"
16#include "bms_carrier_getters.h"
17#include "bms_carrier_setters.h"
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
87void ramp_voltage_weight();
92void set_last_time(uint32_t last_time);
97void set_i_soc(
float i_soc);
102void set_v_soc(
float v_soc);
107void set_averaged_soc(
float averaged_soc);
112void set_last_current(int32_t last_current);
117uint32_t get_last_time(
void);
122float get_i_soc(
void);
127float get_v_soc(
void);
132float get_averaged_soc(
void);
137int32_t get_last_current(
void);
142float get_voltage_weight(
void);
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