alterwl

Results 7 comments of alterwl

我认为应该是这样,运行没问题: ```python Length = ds.length D = Length // 2 while D > 0: c = 0 while c < D: i = c + D while i < Length:...

改了一下,这样对吗? ```python Length = ds.length col_num = Length // 2 # 初始列数 while col_num > 0: # 逐渐减少列数,最后减少到1列 for cp in range(col_num,Length): tmp = ds.data[cp] j=cp while j>=col_num and ds.data[j-col_num]>tmp:...

又试了一下,发现如果直接删去点,会导致 main.py 运行出错。所以我觉得这样可以兼顾。 将 ```python from .data import DataSeq ``` 改为 ```python if __name__ == "__main__": from data import DataSeq else: from .data import DataSeq ```

BBDST工况模块中的电流数据来自50AH容量电池的测试实验,而EKF_UKF_Thev中设置的电池容量为1.5AH,这里做了一个换算。 ![图片](https://user-images.githubusercontent.com/39755481/181246344-00616477-660f-4e21-9704-5c058f2c47f4.png) ![图片](https://user-images.githubusercontent.com/39755481/181246039-096a9c44-50af-4163-ad3e-2d3f8522ea4b.png)

Actually I foregt a lot about this project. I may need to review the project, but not for a while. So, I'm sorry to say I can't solve your problem...

The 2RC equivalent circuit model contains another RC component than the Thevenin model. So I think you need an extra pair of RC parameters with its process noise, and to...