""" 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 Material: """ LCA Material class """ def __init__(self, material_name, material_id, type, density, density_unit, embodied_carbon, embodied_carbon_unit, recycling_ratio, onsite_recycling_ratio, company_recycling_ratio, landfilling_ratio, cost, cost_unit): self._material_name = material_name self._material_id = material_id self._type = type self._density = density self._density_unit = density_unit self._embodied_carbon = embodied_carbon self._embodied_carbon_unit = embodied_carbon_unit self._recycling_ratio = recycling_ratio self._onsite_recycling_ratio = onsite_recycling_ratio self._company_recycling_ratio = company_recycling_ratio self._landfilling_ratio = landfilling_ratio self._cost = cost self._cost_unit = cost_unit @property def material_name(self): """ Get material name """ return self._material_name @property def id(self): """ Get material id """ return self._material_id @property def type(self): """ Get material type """ return self._type @property def density(self): """ Get material density """ return self._density @property def density_unit(self): """ Get material density unit """ return self._density_unit @property def embodied_carbon(self): """ Get material embodied carbon """ return self._embodied_carbon @property def embodied_carbon_unit(self): """ Get material embodied carbon unit """ return self._embodied_carbon_unit @property def recycling_ratio(self): """ Get material recycling ratio """ return self._recycling_ratio @property def onsite_recycling_ratio(self): """ Get material onsite recycling ratio """ return self._onsite_recycling_ratio @property def company_recycling_ratio(self): """ Get material company recycling ratio """ return self._company_recycling_ratio @property def landfilling_ratio(self): """ Get material landfilling ratio """ return self._landfilling_ratio @property def cost(self): """ Get material cost """ return self._cost @property def cost_unit(self): """ Get material cost unit """ return self._cost_unit