Skip to content

Commit

Permalink
Update to version 0.1.139 [skip-ci]
Browse files Browse the repository at this point in the history
Files changed:
M	Units.md
M	setup.py
M	unitsnet_py/__init__.py
M	unitsnet_py/units/electric_admittance.py
A	unitsnet_py/units/electric_apparent_energy.py
A	unitsnet_py/units/electric_apparent_power.py
A	unitsnet_py/units/electric_capacitance.py
M	unitsnet_py/units/electric_conductance.py
A	unitsnet_py/units/electric_impedance.py
A	unitsnet_py/units/electric_reactance.py
A	unitsnet_py/units/electric_reactive_energy.py
A	unitsnet_py/units/electric_reactive_power.py
M	unitsnet_py/units/electric_resistance.py
A	unitsnet_py/units/electric_susceptance.py
  • Loading branch information
haimkastner committed Dec 28, 2024
1 parent 1eb4acd commit e69b5d7
Show file tree
Hide file tree
Showing 14 changed files with 4,971 additions and 8 deletions.
30 changes: 27 additions & 3 deletions Units.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,16 @@ The package provides support for the following units:
- *The dynamic (shear) viscosity of a fluid expresses its resistance to shearing flows, where adjacent layers move parallel to each other with different speeds*

- **ElectricAdmittance**
- *Electric admittance is a measure of how easily a circuit or device will allow a current to flow. It is defined as the inverse of impedance. The SI unit of admittance is the siemens (symbol S).*
- *Electric admittance is a measure of how easily a circuit or device will allow a current to flow by the combined effect of conductance and susceptance in a circuit. It is defined as the inverse of impedance. The SI unit of admittance is the siemens (symbol S).*

- **ElectricApparentEnergy**
- *A unit for expressing the integral of apparent power over time, equal to the product of 1 volt-ampere and 1 hour, or to 3600 joules.*

- **ElectricApparentPower**
- *Power engineers measure apparent power as the magnitude of the vector sum of active and reactive power. It is the product of the root mean square voltage (in volts) and the root mean square current (in amperes).*

- **ElectricCapacitance**
- *Capacitance is the capacity of a material object or device to store electric charge.*

- **ElectricCharge**
- *Electric charge is the physical property of matter that causes it to experience a force when placed in an electromagnetic field.*
Expand All @@ -70,7 +79,7 @@ The package provides support for the following units:
- *In electromagnetism, charge density is a measure of the amount of electric charge per volume.*

- **ElectricConductance**
- *The electrical conductance of an electrical conductor is a measure of the easeness to pass an electric current through that conductor.*
- *The electrical conductance of an object is a measure of the ease with which an electric current passes. Along with susceptance, it is one of two elements of admittance. Its reciprocal quantity is electrical resistance.*

- **ElectricConductivity**
- *Electrical conductivity or specific conductance is the reciprocal of electrical resistivity, and measures a material's ability to conduct an electric current.*
Expand All @@ -87,6 +96,9 @@ The package provides support for the following units:
- **ElectricField**
- *An electric field is a force field that surrounds electric charges that attracts or repels other electric charges.*

- **ElectricImpedance**
- *Electric impedance is the opposition to alternating current presented by the combined effect of resistance and reactance in a circuit. It is defined as the inverse of admittance. The SI unit of impedance is the ohm (symbol Ω).*

- **ElectricInductance**
- *Inductance is a property of an electrical conductor which opposes a change in current.*

Expand All @@ -102,15 +114,27 @@ The package provides support for the following units:
- **ElectricPotentialDc**
- *The Electric Potential of a system known to use Direct Current.*

- **ElectricReactance**
- *In electrical circuits, reactance is the opposition presented to alternating current by inductance and capacitance. Along with resistance, it is one of two elements of impedance.*

- **ElectricReactiveEnergy**
- *The volt-ampere reactive hour (expressed as varh) is the reactive power of one Volt-ampere reactive produced in one hour.*

- **ElectricReactivePower**
- *In electric power transmission and distribution, volt-ampere reactive (var) is a unit of measurement of reactive power. Reactive power exists in an AC circuit when the current and voltage are not in phase.*

- **ElectricResistance**
- *The electrical resistance of an electrical conductor is the opposition to the passage of an electric current through that conductor.*
- *The electrical resistance of an object is a measure of its opposition to the flow of electric current. Along with reactance, it is one of two elements of impedance. Its reciprocal quantity is electrical conductance.*

- **ElectricResistivity**
- *Electrical resistivity (also known as resistivity, specific electrical resistance, or volume resistivity) is a fundamental property that quantifies how strongly a given material opposes the flow of electric current.*

- **ElectricSurfaceChargeDensity**
- *In electromagnetism, surface charge density is a measure of the amount of electric charge per surface area.*

- **ElectricSusceptance**
- *Electrical susceptance is the imaginary part of admittance, where the real part is conductance.*

- **Energy**
- *The joule, symbol J, is a derived unit of energy, work, or amount of heat in the International System of Units. It is equal to the energy transferred (or work done) when applying a force of one newton through a distance of one metre (1 newton metre or N·m), or in passing an electric current of one ampere through a resistance of one ohm for one second. Many other units of energy are included. Please do not confuse this definition of the calorie with the one colloquially used by the food industry, the large calorie, which is equivalent to 1 kcal. Thermochemical definition of the calorie is used. For BTU, the IT definition is used.*

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@

# The UnitNet definition version that the current package is based on to generate units classes
# see
definition_version = '5.64.0'
definition_version = '5.65.0'

setup_kwargs = {
'name': 'unitsnet-py',
'version': '0.1.138',
'version': '0.1.139',
'license': 'MIT',
'keywords': 'conversion, units-of-measure, units, quantities, unit-converter, converter, unit, measure, measures, measurement, measurements',
'description': 'A better way to hold unit variables and easily convert to the destination unit',
Expand Down
16 changes: 16 additions & 0 deletions unitsnet_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
from .units.duration import Duration, DurationUnits, DurationDto
from .units.dynamic_viscosity import DynamicViscosity, DynamicViscosityUnits, DynamicViscosityDto
from .units.electric_admittance import ElectricAdmittance, ElectricAdmittanceUnits, ElectricAdmittanceDto
from .units.electric_apparent_energy import ElectricApparentEnergy, ElectricApparentEnergyUnits, ElectricApparentEnergyDto
from .units.electric_apparent_power import ElectricApparentPower, ElectricApparentPowerUnits, ElectricApparentPowerDto
from .units.electric_capacitance import ElectricCapacitance, ElectricCapacitanceUnits, ElectricCapacitanceDto
from .units.electric_charge import ElectricCharge, ElectricChargeUnits, ElectricChargeDto
from .units.electric_charge_density import ElectricChargeDensity, ElectricChargeDensityUnits, ElectricChargeDensityDto
from .units.electric_conductance import ElectricConductance, ElectricConductanceUnits, ElectricConductanceDto
Expand All @@ -26,14 +29,19 @@
from .units.electric_current_density import ElectricCurrentDensity, ElectricCurrentDensityUnits, ElectricCurrentDensityDto
from .units.electric_current_gradient import ElectricCurrentGradient, ElectricCurrentGradientUnits, ElectricCurrentGradientDto
from .units.electric_field import ElectricField, ElectricFieldUnits, ElectricFieldDto
from .units.electric_impedance import ElectricImpedance, ElectricImpedanceUnits, ElectricImpedanceDto
from .units.electric_inductance import ElectricInductance, ElectricInductanceUnits, ElectricInductanceDto
from .units.electric_potential import ElectricPotential, ElectricPotentialUnits, ElectricPotentialDto
from .units.electric_potential_ac import ElectricPotentialAc, ElectricPotentialAcUnits, ElectricPotentialAcDto
from .units.electric_potential_change_rate import ElectricPotentialChangeRate, ElectricPotentialChangeRateUnits, ElectricPotentialChangeRateDto
from .units.electric_potential_dc import ElectricPotentialDc, ElectricPotentialDcUnits, ElectricPotentialDcDto
from .units.electric_reactance import ElectricReactance, ElectricReactanceUnits, ElectricReactanceDto
from .units.electric_reactive_energy import ElectricReactiveEnergy, ElectricReactiveEnergyUnits, ElectricReactiveEnergyDto
from .units.electric_reactive_power import ElectricReactivePower, ElectricReactivePowerUnits, ElectricReactivePowerDto
from .units.electric_resistance import ElectricResistance, ElectricResistanceUnits, ElectricResistanceDto
from .units.electric_resistivity import ElectricResistivity, ElectricResistivityUnits, ElectricResistivityDto
from .units.electric_surface_charge_density import ElectricSurfaceChargeDensity, ElectricSurfaceChargeDensityUnits, ElectricSurfaceChargeDensityDto
from .units.electric_susceptance import ElectricSusceptance, ElectricSusceptanceUnits, ElectricSusceptanceDto
from .units.energy import Energy, EnergyUnits, EnergyDto
from .units.energy_density import EnergyDensity, EnergyDensityUnits, EnergyDensityDto
from .units.entropy import Entropy, EntropyUnits, EntropyDto
Expand Down Expand Up @@ -147,6 +155,9 @@
'Duration', 'DurationUnits', 'DurationDto',
'DynamicViscosity', 'DynamicViscosityUnits', 'DynamicViscosityDto',
'ElectricAdmittance', 'ElectricAdmittanceUnits', 'ElectricAdmittanceDto',
'ElectricApparentEnergy', 'ElectricApparentEnergyUnits', 'ElectricApparentEnergyDto',
'ElectricApparentPower', 'ElectricApparentPowerUnits', 'ElectricApparentPowerDto',
'ElectricCapacitance', 'ElectricCapacitanceUnits', 'ElectricCapacitanceDto',
'ElectricCharge', 'ElectricChargeUnits', 'ElectricChargeDto',
'ElectricChargeDensity', 'ElectricChargeDensityUnits', 'ElectricChargeDensityDto',
'ElectricConductance', 'ElectricConductanceUnits', 'ElectricConductanceDto',
Expand All @@ -155,14 +166,19 @@
'ElectricCurrentDensity', 'ElectricCurrentDensityUnits', 'ElectricCurrentDensityDto',
'ElectricCurrentGradient', 'ElectricCurrentGradientUnits', 'ElectricCurrentGradientDto',
'ElectricField', 'ElectricFieldUnits', 'ElectricFieldDto',
'ElectricImpedance', 'ElectricImpedanceUnits', 'ElectricImpedanceDto',
'ElectricInductance', 'ElectricInductanceUnits', 'ElectricInductanceDto',
'ElectricPotential', 'ElectricPotentialUnits', 'ElectricPotentialDto',
'ElectricPotentialAc', 'ElectricPotentialAcUnits', 'ElectricPotentialAcDto',
'ElectricPotentialChangeRate', 'ElectricPotentialChangeRateUnits', 'ElectricPotentialChangeRateDto',
'ElectricPotentialDc', 'ElectricPotentialDcUnits', 'ElectricPotentialDcDto',
'ElectricReactance', 'ElectricReactanceUnits', 'ElectricReactanceDto',
'ElectricReactiveEnergy', 'ElectricReactiveEnergyUnits', 'ElectricReactiveEnergyDto',
'ElectricReactivePower', 'ElectricReactivePowerUnits', 'ElectricReactivePowerDto',
'ElectricResistance', 'ElectricResistanceUnits', 'ElectricResistanceDto',
'ElectricResistivity', 'ElectricResistivityUnits', 'ElectricResistivityDto',
'ElectricSurfaceChargeDensity', 'ElectricSurfaceChargeDensityUnits', 'ElectricSurfaceChargeDensityDto',
'ElectricSusceptance', 'ElectricSusceptanceUnits', 'ElectricSusceptanceDto',
'Energy', 'EnergyUnits', 'EnergyDto',
'EnergyDensity', 'EnergyDensityUnits', 'EnergyDensityDto',
'Entropy', 'EntropyUnits', 'EntropyDto',
Expand Down
Loading

0 comments on commit e69b5d7

Please sign in to comment.