JRCSTU / CO2MPAS-TA

EU's Type-Approving vehicle simulator predicting NEDC CO2 emissions from WLTP
https://co2mpas.readthedocs.io/
European Union Public License 1.1
23 stars 13 forks source link

Bi fuel vehicles and CO2MPAS - DICE procedure #29

Open dimitriskomnos opened 6 years ago

dimitriskomnos commented 6 years ago

Dear CO2MPAS users,

Regarding Bi fuel vehicles

We propose that the dice is run only once in the case of an interpolation family consisting of

If the vehicle is selected for a random test, the test should be performed with the fuel for which the CO2 emission value is taken for the CO2 monitoring in accordance with the table below (taken from the monitoring guidelines for Member States see full document on the following link: https://circabc.europa.eu/sd/a/015f736b-e2d1-42d0-ac9d-e98ae45b2617/MS%20Guidelines%202016%20data%20FINAL.pdf

"The following table specifies the entries for fuel type and fuel mode for each fuel combination. For the fuel mode the permitted entries are:

image

Multi-fuel vehicles are capable of running on various combinations of the above fuel types. The lower CO2 figures between all possible combinations of two fuels should be taken. For example for a vehicle capable of running on petrol / LPG / ethanol (E85) the possible combinations are: petrol, petrol-LPG, petrol-E85. The lowest CO2 value between petrol (combined entry) and LPG should be reported and this vehicle should be treated as a petrol-LPG bi-fuel vehicle. Other examples are given below:

dimitriskomnos commented 6 years ago

Example case:

Vehicles are tested with LPG and gasoline.

A regular workflow for this would be:

  1. You run CO2MPAS two times, one for every fuel with its respective data.
    1. After running the 2 Input files, you import in the DICE project the 2 different inputs and outputs. Here, an example:
      > co2dice project init IP-10-AAA-2017-0000
      ...
      Project(IP-10-AAA-2017-0000: empty)
      > co2dice project append -i input_gasoline.xlsx -i input_lpg.xlsx
      ...
      > co2dice project ls . 
      * IP-10-AAA-2017-0000: wltp_inp
      > co2dice project append -o output_gasoline.xlsx -o output_lpg.xlsx 
      ...
      > co2dice project ls . 
      * IP-10-AAA-2017-0000: wltp_iof
      > co2dice project report
      ...

      This will generate a DICE report consisting from the 2 output CO2MPAS reports. Then, you may continue with the regular workflow (stamp, parse...) and as explained in the comment above

ankostis commented 6 years ago

Better group the files that are related:

> co2dice project append -  i input_gasoline.xlsx   -o output_gasoline.xlsx 
> co2dice project append   -i input_lpg.xlsx   -o output_lpg.xlsx   --force
ankostis commented 6 years ago

Notice that since adding 4 files is not the regular workflow, you need to add the --force flag the 2nd time you run the append command (i had forgotten that in my previous message).