123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- #include "PIM.h"
- #define pimd_L_rls 51
- void PIM_Init(void)
- {
- pimd_flg_firstRun = true;
- }
- void PIM(void)
- {
- static uint8_T pimn_st_workStat_Delay;
- uint16_T i;
- uint16_T j;
- static uint16_T pimn_V_volt[pimd_L_rls];
- static int16_T pimn_I_curr[pimd_L_rls];
- static real_T pimn_V_ocv;
- static real_T pimn_R_ohm;
- static real_T pimn_R_polar;
- static real_T pimn_F_polar;
-
- static uint16_T pimn_N_ctn;
- static real_T pimn_M_P[4][4];
- static real_T theta[4];
- real_T P[4][4];
- real_T A[4];
- real_T K[4];
- real_T temp;
-
- //重置
- if (pimn_st_workStat_Delay != 1 && ihd_st_workStat == 1)
- {
- pimd_flg_firstRun = true;
- }
-
- //初值
- if (pimd_flg_firstRun)
- {
- pimn_M_P[0][0] = 10; pimn_M_P[0][1] = 0; pimn_M_P[0][2] = 0; pimn_M_P[0][3] = 0;
- pimn_M_P[1][0] = 0; pimn_M_P[1][1] = 10; pimn_M_P[1][2] = 0; pimn_M_P[1][3] = 0;
- pimn_M_P[2][0] = 0; pimn_M_P[2][1] = 0; pimn_M_P[2][2] = 10; pimn_M_P[2][3] = 0;
- pimn_M_P[3][0] = 0; pimn_M_P[3][1] = 0; pimn_M_P[3][2] = 0; pimn_M_P[3][3] = 10;
-
- pimn_V_ocv = (real_T)look1_u16tu16(socd_pct_battSoc, cmnm_pct_soc, cmnm_V_ocv, 13) * 0.001;
- pimn_R_ohm = (real_T)look1_u16tu16(socd_pct_battSoc, cmnm_pct_soc, cmnm_R_ohm, 13) * 0.001 * 0.001;
- pimn_R_polar = 0.001;
- pimn_F_polar = 0;
- pimn_N_ctn = 0;
- pimn_st_workStat_Delay = 0;
- }
- //限定记忆长度
- if (pimd_flg_firstRun)
- {
- for (i = 0; i < pimd_L_rls; i++)
- {
- pimn_V_volt[i] = sfmv_V_cellU[0];
- pimn_I_curr[i] = sfmd_I_curr;
- }
- }
- else
- {
- for (i = 0; i < pimd_L_rls - 1; i++)
- {
- pimn_V_volt[i] = pimn_V_volt[i+1];
- pimn_I_curr[i] = pimn_I_curr[i+1];
- }
- pimn_V_volt[i] = sfmv_V_cellU[0];
- pimn_I_curr[i] = sfmd_I_curr;
- }
- //
- if(pimn_st_workStat_Delay == 1)
- {
- pimn_N_ctn = pimn_N_ctn + 1;
- //输入
- A[0] = (real_T)pimn_V_volt[pimd_L_rls - 2] * 0.001;
- A[1] = (real_T)pimn_I_curr[pimd_L_rls - 1] * 0.1;
- A[2] =-(real_T)pimn_I_curr[pimd_L_rls - 2] * 0.1;
- A[3] = 1;
- //参数形变
-
- theta[0] = exp(-1/pimn_F_polar);
- theta[1] = pimn_R_ohm;
- theta[2] = pimn_R_ohm * exp(-1/pimn_F_polar) -pimn_R_polar * (1-exp(-1/pimn_F_polar));
- theta[3] = (1 -theta[0]) * pimn_V_ocv;
- //增益矩阵
- temp = (A[0] * pimn_M_P[0][0] +A[1] * pimn_M_P[1][0] + A[2] * pimn_M_P[2][0] + A[3] * pimn_M_P[3][0]) * A[0] +
- (A[0] * pimn_M_P[0][1] +A[1] * pimn_M_P[1][1] + A[2] * pimn_M_P[2][1] + A[3] * pimn_M_P[3][1]) * A[1] +
- (A[0] * pimn_M_P[0][2] +A[1] * pimn_M_P[1][2] + A[2] * pimn_M_P[2][2] + A[3] * pimn_M_P[3][2]) * A[2] +
- (A[0] * pimn_M_P[0][3] +A[1] * pimn_M_P[1][3] + A[2] * pimn_M_P[2][3] + A[3] * pimn_M_P[3][3]) * A[3];
- for(i = 0;i < 4;i++)
- {
- K[i] = (pimn_M_P[i][0] * A[0] + pimn_M_P[i][1] * A[1] + pimn_M_P[i][2] * A[2] + pimn_M_P[i][3] * A[3])/(1 + temp);
- }
- //参数更新
- temp = (real_T)pimn_V_volt[pimd_L_rls - 1] * 0.001 - (theta[0] * A[0] + theta[1] * A[1] + theta[2] * A[2] + theta[3] * A[3]);
- for(i = 0;i < 4;i++)
- {
- theta[i] = theta[i] + K[i] * temp;
- }
- //协方差更新
- for(i = 0;i < 4;i++)
- {
- for(j = 0;j < 4;j++)
- {
- P[i][j] = pimn_M_P[i][j] - K[i] * (A[0] * pimn_M_P[0][j] + A[1] * pimn_M_P[1][j] + A[2] * pimn_M_P[2][j] + A[3] * pimn_M_P[3][j]);
- }
- }
-
- //传递下循环
- for(i = 0;i < 4;i++)
- {
- for(j = 0;j < 4;j++)
- {
- pimn_M_P[i][j] = P[i][j];
- }
-
- }
-
- //=======================================================================
- if(pimn_N_ctn > pimd_L_rls)
- {
- //输入
- A[0] = (real_T)pimn_V_volt[0] * 0.001;
- A[1] = (real_T)pimn_I_curr[1] * 0.1;
- A[2] =-(real_T)pimn_I_curr[0] * 0.1;
- A[3] = 1;
- //增益矩阵
- temp = (A[0] * pimn_M_P[0][0] +A[1] * pimn_M_P[1][0] + A[2] * pimn_M_P[2][0] + A[3] * pimn_M_P[3][0]) * A[0] +
- (A[0] * pimn_M_P[0][1] +A[1] * pimn_M_P[1][1] + A[2] * pimn_M_P[2][1] + A[3] * pimn_M_P[3][1]) * A[1] +
- (A[0] * pimn_M_P[0][2] +A[1] * pimn_M_P[1][2] + A[2] * pimn_M_P[2][2] + A[3] * pimn_M_P[3][2]) * A[2] +
- (A[0] * pimn_M_P[0][3] +A[1] * pimn_M_P[1][3] + A[2] * pimn_M_P[2][3] + A[3] * pimn_M_P[3][3]) * A[3];
- for(i = 0;i <4;i++)
- {
- K[i] = (pimn_M_P[i][0] * A[0] + pimn_M_P[i][1] * A[1] + pimn_M_P[i][2] * A[2] + pimn_M_P[i][3] * A[3])/(1 + temp);
- }
- //协方差更新
- for(i = 0;i < 4;i++)
- {
- for(j = 0;j < 4;j++)
- {
- P[i][j] = pimn_M_P[i][j] + K[i] * (A[0] * pimn_M_P[0][j] + A[1] * pimn_M_P[1][j] + A[2] * pimn_M_P[2][j] + A[3] * pimn_M_P[3][j]);
- }
- }
- //传递下一循环
- for(i = 0;i < 4;i++)
- {
- for(j = 0;j < 4;j++)
- {
- pimn_M_P[i][j] = P[i][j];
- }
-
- }
- }
- //参数求解
- pimn_V_ocv = theta[3]/(1 - theta[0]);
- pimn_R_ohm = theta[1];
- pimn_R_polar = (theta[0] * theta[1] -theta[2])/(1 -theta[0]);
- pimn_F_polar = -1/log(theta[0]);
- pimn_V_ocv = Saturation_r(pimn_V_ocv,3.2, 4.4);
- pimn_R_ohm = Saturation_r(pimn_V_ocv,0.001, 1);
- pimn_R_polar = Saturation_r(pimn_V_ocv,0.0002, 1);
- pimn_F_polar = Saturation_r(pimn_V_ocv,0, 200);
-
- pimd_V_ocv = (uint16_T)(pimn_V_ocv * 1000);
- pimd_R_ohm = (uint16_T)(pimn_R_ohm * 1000 * 1000);
- pimd_R_polar = (uint16_T)(pimn_R_polar * 1000 * 1000);
- pimd_F_polar = (uint16_T)(pimn_F_polar * 1000);
- }
- else
- {
- pimd_V_ocv = 0;
- pimd_R_ohm = 0;
- pimd_R_polar = 0;
- pimd_F_polar = 0;
- }
- //
- pimn_st_workStat_Delay = ihd_st_workStat;
- pimd_flg_firstRun = false;
- }
|