-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
21 changed files
with
2,024 additions
and
223 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
syntax = "proto3"; | ||
|
||
package city.person.v2; | ||
|
||
// 车辆瞬时碳排放信息 | ||
// Vehicle instantaneous carbon emission information | ||
message VehicleCarbon { | ||
// ID | ||
int32 id = 1; | ||
// delta distance (m) | ||
double ds = 2; | ||
// vehicle speed (m/s) | ||
double v = 3; | ||
// vehicle acceleration (m/s^2) | ||
double a = 4; | ||
// energy for acceleration (J) | ||
double u_acc = 5; | ||
// energy for rolling resistance (J) | ||
double u_roll = 6; | ||
// energy for air resistance (J) | ||
double u_aero = 7; | ||
// C_D: drag coefficient | ||
double c_d = 8; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.