lcoe


Namelcoe JSON
Version 0.3.2 PyPI version JSON
download
home_pagehttps://github.com/willu47/lcoe
SummaryMicro-package to calculate the levelised cost of electricity
upload_time2022-09-30 12:23:52
maintainer
docs_urlNone
authorWill Usher
requires_python
licensemit
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage
            ====
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)

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/willu47/lcoe",
    "name": "lcoe",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Will Usher",
    "author_email": "wusher@kth.se",
    "download_url": "https://files.pythonhosted.org/packages/94/10/bdd1421a5630cc09f0c1bfd165f2d5888c25ae090c49be948fda748e3ba3/lcoe-0.3.2.tar.gz",
    "platform": "any",
    "description": "====\nlcoe\n====\n\nA command line tool and Python package to calculate levelised cost of electricity\n\nDescription\n===========\n\nCalculate levelised cost of electricity on the command line with the ``lcoe`` command::\n\n    $ lcoe 500000000 2000000000 25000000 0.07 20\n    LCOE is 0.03455442190262982\n\nUse the lcoe library in your Python code::\n\n    from lcoe.lcoe import lcoe\n\n    operating_cost = 25000000  #$million/year\n    capital_cost = 500000000  # $million\n    discount_rate = 0.07  # %\n    lifetime = 20\n    annual_output = 2000000000  # kWh\n\n    lcoe(annual_output, capital_cost, operating_cost, discount_rate, lifetime)\n",
    "bugtrack_url": null,
    "license": "mit",
    "summary": "Micro-package to calculate the levelised cost of electricity",
    "version": "0.3.2",
    "project_urls": {
        "Homepage": "https://github.com/willu47/lcoe",
        "Source": "https://github.com/willu47/lcoe"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a6b99e2d82b0813ce2d1cc9d684fd4d24d85514ef2a73cd2f335b7fe270faad",
                "md5": "def91210ac0c0c9a1b997d7f32c8b0a6",
                "sha256": "bd5571ce9b411cc451468286cf5cea736160b3977ec247fe39cbf8a9254264fe"
            },
            "downloads": -1,
            "filename": "lcoe-0.3.2-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "def91210ac0c0c9a1b997d7f32c8b0a6",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": null,
            "size": 4299,
            "upload_time": "2022-09-30T12:23:51",
            "upload_time_iso_8601": "2022-09-30T12:23:51.610428Z",
            "url": "https://files.pythonhosted.org/packages/4a/6b/99e2d82b0813ce2d1cc9d684fd4d24d85514ef2a73cd2f335b7fe270faad/lcoe-0.3.2-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9410bdd1421a5630cc09f0c1bfd165f2d5888c25ae090c49be948fda748e3ba3",
                "md5": "9435ecff438c0bb72a4e144f86c94b18",
                "sha256": "a20bb3265ef4fb033cd1d43951ec16f318295717c8f47d18832d1de063e8d98b"
            },
            "downloads": -1,
            "filename": "lcoe-0.3.2.tar.gz",
            "has_sig": false,
            "md5_digest": "9435ecff438c0bb72a4e144f86c94b18",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 18366,
            "upload_time": "2022-09-30T12:23:52",
            "upload_time_iso_8601": "2022-09-30T12:23:52.847387Z",
            "url": "https://files.pythonhosted.org/packages/94/10/bdd1421a5630cc09f0c1bfd165f2d5888c25ae090c49be948fda748e3ba3/lcoe-0.3.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-09-30 12:23:52",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "willu47",
    "github_project": "lcoe",
    "travis_ci": false,
    "coveralls": true,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "lcoe"
}
        
Elapsed time: 0.14607s