2021-11-13 00:55:04 -05:00
|
|
|
"""
|
|
|
|
LifeCycleAssessment retrieve the specific Life Cycle Assessment module for the given region
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2020 Project Author Atiya
|
|
|
|
"""
|
|
|
|
|
|
|
|
class Vehicle:
|
|
|
|
"""
|
|
|
|
Vehicle class
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, vehicle_id, name, fuel_consumption_rate, fuel_consumption_unit, carbon_emission_factor, carbon_emission_factor_unit):
|
|
|
|
self._vehicle_id = vehicle_id
|
|
|
|
self._name = name
|
|
|
|
self._fuel_consumption_rate = fuel_consumption_rate
|
|
|
|
self._fuel_consumption_unit = fuel_consumption_unit
|
|
|
|
self._carbon_emission_factor = carbon_emission_factor
|
|
|
|
self._carbon_emission_factor_unit = carbon_emission_factor_unit
|
|
|
|
|
|
|
|
@property
|
2021-11-15 10:35:31 -05:00
|
|
|
def id(self) -> int:
|
2021-11-13 00:55:04 -05:00
|
|
|
"""
|
|
|
|
Get vehicle id
|
|
|
|
"""
|
|
|
|
return self._vehicle_id
|
|
|
|
|
|
|
|
@property
|
2021-11-15 10:35:31 -05:00
|
|
|
def name(self) -> str:
|
2021-11-13 00:55:04 -05:00
|
|
|
"""
|
|
|
|
Get vehicle name
|
|
|
|
"""
|
|
|
|
return self._name
|
|
|
|
|
|
|
|
@property
|
2021-11-15 10:35:31 -05:00
|
|
|
def fuel_consumption_rate(self) -> float:
|
2021-11-13 00:55:04 -05:00
|
|
|
"""
|
|
|
|
Get vehicle fuel consumption rate
|
|
|
|
"""
|
|
|
|
return self._fuel_consumption_rate
|
|
|
|
|
|
|
|
@property
|
2021-11-15 10:35:31 -05:00
|
|
|
def fuel_consumption_unit(self) -> str:
|
2021-11-13 00:55:04 -05:00
|
|
|
"""
|
|
|
|
Get fuel consumption unit
|
|
|
|
"""
|
|
|
|
return self._fuel_consumption_unit
|
|
|
|
|
|
|
|
@property
|
2021-11-15 10:35:31 -05:00
|
|
|
def carbon_emission_factor(self) -> float:
|
2021-11-13 00:55:04 -05:00
|
|
|
"""
|
|
|
|
Get vehicle carbon emission factor
|
|
|
|
"""
|
|
|
|
return self._carbon_emission_factor
|
|
|
|
|
|
|
|
@property
|
2021-11-15 10:35:31 -05:00
|
|
|
def carbon_emission_unit(self) -> str:
|
2021-11-13 00:55:04 -05:00
|
|
|
"""
|
|
|
|
Get carbon emission units
|
|
|
|
"""
|
|
|
|
return self._carbon_emission_unit
|
|
|
|
|