package com.whyc.bts;
|
|
|
public class BTS_BattData {
|
|
public int dataType; //测试类型
|
public BTS_TestTime testTime = new BTS_TestTime(); //测试时长
|
public int monCount = 1; //单体数量
|
|
public float onlineVol; //在线电压
|
public float groupVol; //组端电压
|
public int battState; //充放电状态 3 5 9
|
public float battCurr; //电池组电流
|
public float battCap; //电池组容量
|
public float battTemp; //电池组温度
|
public int monMAX_num; //最大单体编号
|
public int monMIN_num; //最低按单体编号
|
public float monvolMAX; //最大单体电压
|
public float monvolMIN; //最低单体电压
|
|
public float[] monVol; //单体电压
|
|
|
public BTS_BattData(int monCount){
|
monVol = new float[monCount];
|
this.monCount = monCount;
|
}
|
}
|