Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Calculation of Fuel Consumption #1

Closed
Robotoks opened this issue Oct 9, 2019 · 7 comments
Closed

Calculation of Fuel Consumption #1

Robotoks opened this issue Oct 9, 2019 · 7 comments

Comments

@Robotoks
Copy link

Robotoks commented Oct 9, 2019

Thank you for your contribution. It really helps.
However, few data are available for the Fuel Rate attribute.
Almost all records has no fuel rate value.

@gsoh
Copy link
Owner

gsoh commented Oct 9, 2019

Hi,

Fuel consumptions are obtained through 3 different ways as described in our VED paper (Algorithm 1), using three attributes of the data "Mass-air flow" and/or "Absolute Load" and/or "Fuel Rate".

Note, the data attribute "Fuel Rate" should not be confused with the availability of the fuel consumption information. In this sense, the populated percentage of the attribute "Fuel rate" in the Table 2 does not represent the availability of "fuel consumption rate" or "fuel consumption". Because, for most vehicles, the estimation of fuel consumption & fuel consumption rate is obtained through "Mass-air flow" and/or "Absolute Load".

Please refer to the paper for the details.

@Robotoks
Copy link
Author

Robotoks commented Oct 10, 2019 via email

@gsoh
Copy link
Owner

gsoh commented Oct 10, 2019

Hi,

You could "approximate" fuel consumption using speed based on a set of assumptions about the vehicle types, powertrains, mass in a specific scenario. However, since the approximation involves simplications, you would not obtain as accurate fuel consumption as you would when you use MAF/AbsLoad/RPM with correction factors.

One of the motivations behind making this dataset public is to share accurate fuel-consumption big-data. In this sense, we recommend using Algorithm 1 of our paper to compute fuel consumption as accurately as possible.

Thanks!

@Robotoks
Copy link
Author

Robotoks commented Oct 16, 2019 via email

@Robotoks
Copy link
Author

Robotoks commented Nov 1, 2019 via email

@gsoh
Copy link
Owner

gsoh commented Nov 2, 2019

Hello,

While we appreciate your questions, you will be able to find answers for the questions.

  1. Please refer to the paper for brief explanations on STFT and LTFT. It's up to you which one to use.
  2. You should not take the absolute value of STFT. You should just use STFT.
  3. The "engine configuration & displacement" attribute of VED_Static_Data_ICE&HEV.xlsx and/or VED_Static_Data_PHEV&EV.xlsx files. The paper also mentions it.
  4. You are correct that STFT and LTFT are not always available when MAF is available. One way (but not the only way) to compute the correction term is as follows:

flag = 0
if STFT1 and LTFT1 are available, flag = 1
if STFT2 and LTFT2 are available, flag += 2
if flag == 1:
correction = (1+0.01STFT1+0.01LTFT1)/AFR
elif flag == 2:
correction = (1+0.01STFT2+0.01LTFT2)/AFR
elif flag == 3:
correction = (1+0.005STFT1+0.005LTFT1+0.005STFT2+0.005LTFT2)/AFR
elif flag == 0:
correction = 1

Even though we used the above algorithm to obtain the results presented in the paper, we did not describe the algorithm in the paper simply because we wanted the algorithm to be general, since there are other ways to compute the correction terms.

Thanks.

@gsoh gsoh closed this as completed Nov 26, 2019
@gsoh gsoh changed the title Missing Data Calculation of Fuel Consumption Nov 26, 2019
@Robotoks
Copy link
Author

Robotoks commented Dec 11, 2019 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants