Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
new-socketemulator
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
李远洪
new-socketemulator
Commits
0add8537
Commit
0add8537
authored
Oct 10, 2020
by
liyuanhong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
车安优模拟器仪表里程渝总里程保持一致
parent
4cdf08f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
5 deletions
+7
-5
lib/socket/service/MessageSimulaterService.py
lib/socket/service/MessageSimulaterService.py
+7
-5
No files found.
lib/socket/service/MessageSimulaterService.py
View file @
0add8537
...
@@ -332,9 +332,10 @@ class MessageSimulaterService():
...
@@ -332,9 +332,10 @@ class MessageSimulaterService():
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"6709"
]
=
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"6709"
]
+
self
.
sendDur
# 总运行时间
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"6709"
]
=
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"6709"
]
+
self
.
sendDur
# 总运行时间
plusMilleage
=
plusMilleage
+
int
(
self
.
sendDur
*
(
speed
*
1000
/
3600
))
plusMilleage
=
plusMilleage
+
int
(
self
.
sendDur
*
(
speed
*
1000
/
3600
))
plusMilleage2
=
int
(
self
.
sendDur
*
(
speed
*
1000
/
3600
))
plusMilleage2
=
int
(
self
.
sendDur
*
(
speed
*
1000
/
3600
))
self
.
OBDdata
[
"extraInfo"
][
"01"
][
"extra_01"
]
=
self
.
OBDdata
[
"extraInfo"
][
"01"
][
"extra_01"
]
+
int
(
plusMilleage
/
100
)
# 总里程
self
.
OBDdata
[
"extraInfo"
][
"01"
][
"extra_01"
]
=
self
.
OBDdata
[
"extraInfo"
][
"01"
][
"extra_01"
]
+
int
(
plusMilleage
/
100
)
# 总里程(附加信息)
# OBD 累计里程,如果有该字段,则里程的计算方式使用该字段,如果没有,里程计算方式使用的是总里程字段
# OBD 累计里程,如果有该字段,则里程的计算方式使用该字段,如果没有,里程计算方式使用的是附加信息里得到总里程字段
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
=
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
+
int
(
plusMilleage2
)
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
=
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
+
int
(
plusMilleage2
)
# 总里程(OBD信息,默认使用)
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"6708"
]
=
int
((
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
+
int
(
plusMilleage2
))
/
1000
)
# 仪表里程
plusMilleage
=
plusMilleage
-
int
(
plusMilleage
/
100
)
*
100
plusMilleage
=
plusMilleage
-
int
(
plusMilleage
/
100
)
*
100
obdObj
=
Location_msg
()
obdObj
=
Location_msg
()
obdMsg
=
obdObj
.
generateMsg_GUI
(
self
.
OBDdata
)
obdMsg
=
obdObj
.
generateMsg_GUI
(
self
.
OBDdata
)
...
@@ -396,8 +397,9 @@ class MessageSimulaterService():
...
@@ -396,8 +397,9 @@ class MessageSimulaterService():
plusMilleage
=
plusMilleage
+
int
(
self
.
sendDur
*
(
speed
*
1000
/
3600
))
plusMilleage
=
plusMilleage
+
int
(
self
.
sendDur
*
(
speed
*
1000
/
3600
))
plusMilleage2
=
int
(
self
.
sendDur
*
(
speed
*
1000
/
3600
))
plusMilleage2
=
int
(
self
.
sendDur
*
(
speed
*
1000
/
3600
))
self
.
OBDdata
[
"extraInfo"
][
"01"
][
"extra_01"
]
=
self
.
OBDdata
[
"extraInfo"
][
"01"
][
"extra_01"
]
+
int
(
plusMilleage
/
100
)
# 总里程
self
.
OBDdata
[
"extraInfo"
][
"01"
][
"extra_01"
]
=
self
.
OBDdata
[
"extraInfo"
][
"01"
][
"extra_01"
]
+
int
(
plusMilleage
/
100
)
# 总里程
# OBD 累计里程,如果有该字段,则里程的计算方式使用该字段,如果没有,里程计算方式使用的是总里程字段
# OBD 累计里程,如果有该字段,则里程的计算方式使用该字段,如果没有,里程计算方式使用的是附加信息里得到总里程字段
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
=
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
+
int
(
plusMilleage2
)
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
=
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
+
int
(
plusMilleage2
)
# 总里程(OBD信息,默认使用)
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"6708"
]
=
int
((
self
.
OBDdata
[
"extraInfo"
][
"EB"
][
"670b"
]
+
int
(
plusMilleage2
))
/
1000
)
# 仪表里程
plusMilleage
=
plusMilleage
-
int
(
plusMilleage
/
100
)
*
100
plusMilleage
=
plusMilleage
-
int
(
plusMilleage
/
100
)
*
100
obdObj
=
Location_msg
()
obdObj
=
Location_msg
()
obdMsg
=
obdObj
.
generateMsg_GUI
(
self
.
OBDdata
)
obdMsg
=
obdObj
.
generateMsg_GUI
(
self
.
OBDdata
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment