Giter Club home page Giter Club logo

pylinerating's Introduction

Line rating calculation for Python

This package contains functions to calculate the rating according to IEEE-738 or CIGRE-601.

What is implemented?

  • Steady state calculation of rating (ampacity)

What is missing

  • Dynamic calculation
  • Line temperature calculation

Installation

  1. Clone the repository
  2. Make a virtual environment
  3. cd to the downloaded repository
  4. install: pip install .

Usage

from pylinerating import thermal_rating,

ambient_temperature = 40.0
wind_speed = 0.61
angle_of_attack = 90
solar_irradiation = 1000
conductor_temperature = 85.0
horizontal_angle = 0
elevation = 0.0

ieee = thermal_rating(
    ambient_temperature,
    wind_speed,
    angle_of_attack,
    solar_irradiation,
    conductor.drake_constants,
    conductor_temperature,
    horizontal_angle,
    elevation,
    standard="ieee"
)

cigre = thermal_rating(
    ambient_temperature,
    wind_speed,
    angle_of_attack,
    solar_irradiation,
    conductor.drake_constants,
    conductor_temperature,
    horizontal_angle,
    elevation=elevation,
    standard="cigre"
)

The module pylinerating.conductor contains conductor definition from the example in the standard.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.