Metadata-Version: 2.1
Name: lcoe
Version: 0.3.2
Summary: Micro-package to calculate the levelised cost of electricity
Home-page: https://github.com/willu47/lcoe
Author: Will Usher
Author-email: wusher@kth.se
License: mit
Project-URL: Source, https://github.com/willu47/lcoe
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python
Description-Content-Type: text/x-rst; charset=UTF-8
Provides-Extra: testing
License-File: LICENSE.txt
License-File: AUTHORS.rst

====
lcoe
====

A command line tool and Python package to calculate levelised cost of electricity

Description
===========

Calculate levelised cost of electricity on the command line with the ``lcoe`` command::

    $ lcoe 500000000 2000000000 25000000 0.07 20
    LCOE is 0.03455442190262982

Use the lcoe library in your Python code::

    from lcoe.lcoe import lcoe

    operating_cost = 25000000  #$million/year
    capital_cost = 500000000  # $million
    discount_rate = 0.07  # %
    lifetime = 20
    annual_output = 2000000000  # kWh

    lcoe(annual_output, capital_cost, operating_cost, discount_rate, lifetime)
