|
|
@@ -46,6 +46,20 @@ typedef struct tagConvertResist
|
|
|
time_t tmEnd = 0; //结束波动时间 单位秒
|
|
|
}CONVERT_RESIST;
|
|
|
|
|
|
+typedef struct tagFrictionResist
|
|
|
+{
|
|
|
+ int show_val = 0; //稳态值
|
|
|
+ int show_time = 0; //稳态时间
|
|
|
+ int peak_val = 0; //峰值
|
|
|
+ int peak_time = 0; //峰值时间
|
|
|
+
|
|
|
+ time_t tmStart = 0; //开始波动的时间 单位秒
|
|
|
+ time_t tmEnd = 0; //结束波动时间 单位秒
|
|
|
+
|
|
|
+ string t;
|
|
|
+
|
|
|
+}FRICTION_RESIST;
|
|
|
+
|
|
|
//过车信息
|
|
|
typedef struct tagPassResist
|
|
|
{
|