New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

air-vapour-pressure-dynamics

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

air-vapour-pressure-dynamics

air_vapour_pressure_dynamics:

  • 1.8.10
  • PyPI
  • Socket score

Maintainers
1

Air Vapour Pressure Dynamics

Repository with the basic functions related with the temperature, relative humidity, absolute humidity and entalpy of the air.

How it work:

  1. Create en python environent and install the package using de command:

    pip install air_vapour_pressure_dynamics
    
  2. Once you get installed the package you can import the packahe in the python module by:

    from air_vapour_pressure_dynamics import vapourpressure, absolutehumidity_kg_air,....
    

    or

    import air_vapour_pressure_dynamics
    

Setters:

  1. put or remove argument validation::
    setArgumentCheck(bool)
    
  2. Put or remove Units to results of validation::
    setApplyUnits(bool)
    

Examples:

Basic Example::

from air_vapour_pressure_dynamics import absolutehumidity_kg_air
temp = 25.5
rh = 86.8
absolutehumidity_kg_air(temp, rh)

17.83208626438017

Get units of calculation::

from air_vapour_pressure_dynamics import absolutehumidity_kg_air
temp = 25.5
rh = 86.8
ab_hu = absolutehumidity_kg_air(temp, rh)
ab_hu.units

'g/Kg'

Compatibility:

  • Numpy
  • Sympy

But it is not neccesary to install those packages if you are going to use it only with generic integers or float numbers

Content:

  • Functions:

    • vapourpressure(temp)
    • density_air(temp, rh)
    • absolutehumidity_kg_air(temp, rh)
    • absolutehumidity_m3_air(temp, rh)
    • entalpie_kg_air(temp, rh)
    • entalpie_m3_air(temp, rh)
    • moisuredeficit_kg_air(temp, rh)
    • moisuredeficit_m3_air(temp, rh)
    • dew_point_factor(temp, rh)
    • dew_point_temperature(temp, rh)
  • Setters:

    • setApplyUnits(bool)
    • setArgumentCheck(bool)

And that it!!

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc