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

Adding transport phase in impacts object #72

Open
da-ekchajzer opened this issue Apr 1, 2022 · 0 comments
Open

Adding transport phase in impacts object #72

da-ekchajzer opened this issue Apr 1, 2022 · 0 comments

Comments

@da-ekchajzer
Copy link
Collaborator

da-ekchajzer commented Apr 1, 2022

Problem

Today, only Manufacture and Usage impacts are implemented. We could add the impacts of device transportation.

Solution

We should consider two transportation phases :

  • inter-state : mostly done by boat, plane and/or train
  • intra-state : mostly done by trucks and trains

The functional unit should be kg per km.

"model":{
   "weight": 35,
    ...
},
"transport":{
   "interstate-km": 20204,
   "intrastate-km": 1000,
   "interstate-mode": "plane",
   "intrastate-mode": "truck"
}

interstate_impact = weight * interstate_km * allocation_factor(interstate_impact)
intrastate_impact = weight * intrastate_km * allocation_factor(intrastate_mode)

Default values

  • A default weight should be provided per type of devices
  • A default transport object should be provided :
    • default interstate should be China-Europe by plane (to maximize)
    • default intrastate should be set at 1000 km by trucks (ADEME/ARCEP approach + maximizing)

Additional context or elements

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

No branches or pull requests

1 participant