| 查看: 2300 | 回复: 2 | ||
datou_nono银虫 (小有名气)
|
[求助]
NASA battery capacity data set 分析
|
|
有没有使用过NASA battery capacity data set的啊,如下给出Li-ion batteries (# 5, 6, 7 and 18)的数据及测试条件。对于这样的mat文件,怎么得到横轴为充放电次数,纵轴为电池容量的数据呢? 谢谢大家的帮助啊! Data Description: A set of four Li-ion batteries (# 5, 6, 7 and 18) were run through 3 different operational profiles (charge, discharge and impedance) at room temperature. Charging was carried out in a constant current (CC) mode at 1.5A until the battery voltage reached 4.2V and then continued in a constant voltage (CV) mode until the charge current dropped to 20mA. Discharge was carried out at a constant current (CC) level of 2A until the battery voltage fell to 2.7V, 2.5V, 2.2V and 2.5V for batteries 5 6 7 and 18 respectively. Impedance measurement was carried out through an electrochemical impedance spectroscopy (EIS) frequency sweep from 0.1Hz to 5kHz. Repeated charge and discharge cycles result in accelerated aging of the batteries while impedance measurements provide insight into the internal battery parameters that change as aging progresses. The experiments were stopped when the batteries reached end-of-life (EOL) criteria, which was a 30% fade in rated capacity (from 2Ahr to 1.4Ahr). This dataset can be used for the prediction of both remaining charge (for a given discharge cycle) and remaining useful life (RUL). Files: B0005.mat Data for Battery #5 B0006.mat Data for Battery #6 B0007.mat Data for Battery #7 B0018.mat Data for Battery #18 Data Structure: cycle: top level structure array containing the charge, discharge and impedance operations type: operation type, can be charge, discharge or impedance ambient_temperature: ambient temperature (degree C) time: the date and time of the start of the cycle, in MATLAB date vector format data: data structure containing the measurements for charge the fields are: Voltage_measured: Battery terminal voltage (Volts) Current_measured: Battery output current (Amps) Temperature_measured: Battery temperature (degree C) Current_charge: Current measured at charger (Amps) Voltage_charge: Voltage measured at charger (Volts) Time: Time vector for the cycle (secs) for discharge the fields are: Voltage_measured: Battery terminal voltage (Volts) Current_measured: Battery output current (Amps) Temperature_measured: Battery temperature (degree C) Current_charge: Current measured at load (Amps) Voltage_charge: Voltage measured at load (Volts) Time: Time vector for the cycle (secs) Capacity: Battery capacity (Ahr) for discharge till 2.7V for impedance the fields are: Sense_current: Current in sense branch (Amps) Battery_current: Current in battery branch (Amps) Current_ratio: Ratio of the above currents Battery_impedance: Battery impedance (Ohms) computed from raw data Rectified_impedance: Calibrated and smoothed battery impedance (Ohms) Re: Estimated electrolyte resistance (Ohms) Rct: Estimated charge transfer resistance (Ohms) |
» 猜你喜欢
醋酸盐体系溶胶凝胶法合成富锂锰基正极
已经有1人回复
牛磺酸钠
已经有1人回复
分析化学论文润色/翻译怎么收费?
已经有253人回复
Renlab@monash全奖博士机会,最后三天!
已经有0人回复
今年面上没有消息,想来是没了,散个金攒攒人品,为明年祈福
已经有582人回复
合肥工业大学854仪器技术综合专业课考研
已经有0人回复
27年电化学博士毕业,想找海外QS前50的高校读博后求推荐
已经有3人回复
27年电池/材料类博士申请
已经有1人回复
2027年博士申请或转博科研助理 求推荐
已经有1人回复
请问谁有2025最新影响因子Excel表?金币求助!
已经有17人回复
» 本主题相关价值贴推荐,对您同样有帮助:
2楼2019-02-27 16:19:04
皮肤嘿嘿
金虫 (小有名气)
- 应助: 0 (幼儿园)
- 金币: 1187.6
- 散金: 276
- 帖子: 206
- 在线: 87.5小时
- 虫号: 2414304
- 注册: 2013-04-12
- 性别: GG
- 专业: 机械测试理论与技术
|
%使用MATLAB导入电池数据,在cycle中筛选要计算的目标,容量在discharge中提取,那么放电一次就充放电一次,提取多少Capacit%y就循环多少次,也可以对应时间轴,不过时间轴作用不大,因为长时间的涓流充电意义不大。给你部分MATLAB代码吧: clear clc load B0005 load B0006 load B0007 load B0018 j=1; type_name='discharge'; for i=1:length(B0005.cycle) % 5、6、7号电池数据长度相同 cycle_05=B0005.cycle(i); cycle_06=B0006.cycle(i); cycle_07=B0007.cycle(i); if strcmp(cycle_05.type,type_name)==0 continue else cap_05(j, =cycle_05.data.Capacity;end |
3楼2021-02-19 22:46:40










回复此楼
=cycle_05.data.Capacity;