Skip to main content

Implement parasol LCA database

Project description

Parasol LCA

Overview

Parasol LCA is a Life Cycle Assessment (LCA) parametrized model of crystalline silicon-based photovoltaic (PV) systems. It relies on the parametrization of existing life cycle inventory (LCI) data to better account for the progress already accomplished by the PV industry.

It was developed by Romain BESSEAU in 2019 for his PhD Thesis. The first publication of this model as a Jupyter Notebook and the results of the corresponding study can be found in the article by Besseau et al. (2023).

Its development is based on the Brightway2 and lca_algebraic libraries.

This python package makes Parasol LCA available as a ready-to-use module.

Installation

Parasol LCA has been deployed to the pypi index and can be installed using the following command:

pip install parasol-lca

The module adds all the dependencies required to run the parameterized model.

How to use Parasol LCA

The parameterized LCA model enables the assessment of the life cycle environmental impacts of a crystalline silicon-based PV system defined according to 35 input parameters.

To use the parameterized model, you may use the following code. Note that the input_parameters are meant to be changed depending on the parameters of the PV system to be evaluated. If no parameters are added to input_parameters, the model will use the default values.

NOTE: Parasol LCA is compatible with the background database Ecoinvent 3.7, and has also been tested with Ecoinvent 3.9. Results are, however, not the same for both database versions. The results shown in the Parasol LCA article were produced with Ecoinvent 3.7.

import brightway2 as bw
import parasol_lca
import lca_algebraic as agb

bw.projects.set_current("parasol-project")

import bw2io
bw2io.ecoinvent.import_ecoinvent_release("3.7", "cutoff", "your_ecoinvent_username", "your_ecoinvent_password")
#choose the corresponding ecoinvent release

MYDB = "parasol"
agb.resetDb(MYDB)
agb.resetParams(MYDB)
agb.setForeground(MYDB)

parasol_lca.create({
    "target_database": MYDB,
    "version":"3.7",
    "biosphere":"ecoinvent-3.7-biosphere",
    "technosphere":"ecoinvent-3.7-cutoff"
})


# Select impact/activity
activity = agb.findActivity('[parasol] PV impact per kWh', db_name=MYDB, single=True)

# NOTE: LCA results can also be evaluated per kWp :
# activity = agb.findActivity('[parasol] PV impact per kWp', db_name=MYDB, single=True)

# Default parameters
input_parameters = dict(
    # Installation
     Normalised_annual_PV_production_kWh_per_kWp=1300,  # kWh/kWp
     Power_plant_capacity=100,  # kWp
     PV_module_efficiency=0.22,  #
     Bifaciale_modules=0, # 0 = False, 1 = True
     Aluminium_frame_surfacic_weight=1.5,  # kg/m²
     Power_plant_lifetime=30,  # years
     Electrical_installation_specific_weight=3,  # kg/kWp
     # Inverter
     Inverter_weight_per_kW=2,  # kg/kWp
     Inverter_lifetime=15,  # years
     # Manufacturing
     Manufacturing_electricity_mix="World",
     ## Options: 'FR', 'EU', 'US', 'CN', 'World', 'PV', 'Nuclear','Coal','CO2_content'
     Electricity_mix_CO2_content=0.5,  # fraction
     Manufacturing_efficiency_gains=0,  # fraction
     Kerf_loss=0.3,  # fraction
     Wafer_thickness=160,  # µm
     Silver_content=9.6,  # g/m²
     Silicon_production_electricity_intensity=30,  # kWh/kg
     Silicon_production_heat_intensity=185,  # MJ/kg
     Silicon_casting_electricity_intensity=15,  # kWh/kg
     SiC_recycled_share=0,  # fraction
     Diamond_wiring_cutting=1,  # 0 = False, 1 = True
     Glass_thickness=4,  # mm
     # Mounting system
     roof_vs_ground_ratio=1,  # Proportion of roof installations.
     # 1 = all rooftop. 0 = all ground.
     Mounting_system_weight_alu=1.5,  # kg/m²
     Mounting_system_weight_total=5,  # kg/m²
     Mounting_system_weight_wood=0,  # kg/m²
     Ground_coverage_ratio=0.4,  # fraction
     # Transport
     Transport_distance_lorry=1000,  # km
     Transport_distance_train=500,  # km
     Transport_distance_boat=5000,  # km
     # Recycling
     Recycling_rate=0.9,  # fraction
     Recycling_rate_Al=0.96,  # fraction
     Recycling_rate_Cu=0.75,  # fraction
     Recycling_rate_glass=0.9,  # fraction
     Electricity_consumption_for_recycling=50,  # kWh/t
     Heat_consumption_for_recycling=76,  # MJ/t
)

# Choose the LCIA methods from list(bw.methods) that you wish to evaluate
# In the original article, the LCIA methods used were ILCD 2018
# ILCD now recommends using the Environmental Footprint (EF) methods

# Example: 3 impact categories with ecoinvent 3.7
methods = [('EF2.0 midpoint', 'climate change', 'climate change total'),
	   ('EF2.0 midpoint', 'resources', 'minerals and metals'),
           ('EF2.0 midpoint', 'resources', 'land use')]

data = agb.compute_impacts(models = { activity: 1.0 }, methods=methods, **input_parameters)
#print data to show the LCA results
data.T

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

parasol_lca-1.0.2.tar.gz (22.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

parasol_lca-1.0.2-py3-none-any.whl (21.5 kB view details)

Uploaded Python 3

File details

Details for the file parasol_lca-1.0.2.tar.gz.

File metadata

  • Download URL: parasol_lca-1.0.2.tar.gz
  • Upload date:
  • Size: 22.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for parasol_lca-1.0.2.tar.gz
Algorithm Hash digest
SHA256 93c8f6e19a8779d62d199cc88d82c1540bbd9e3d3b2e8dadbdb8aed0292653e5
MD5 55fc5d7ac55f065beb1ce2628f8824ed
BLAKE2b-256 fcf00994c7b13d3efed49272ba831b29255fba2f33ccf14daffbb11dde2ad8be

See more details on using hashes here.

File details

Details for the file parasol_lca-1.0.2-py3-none-any.whl.

File metadata

  • Download URL: parasol_lca-1.0.2-py3-none-any.whl
  • Upload date:
  • Size: 21.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.2

File hashes

Hashes for parasol_lca-1.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 86d575419f6bbb7b5e32df430a2851a3831df992d5afc886b67dd6462a8bf210
MD5 6e1e3c777b1edba0467321c8a47c83b1
BLAKE2b-256 978fbc512f75dbabe4bb9c8bee511d614f0f71f04281ec5e9da300aaf5306628

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page