1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395
//! [International System of Units][si] (SI) and [International System of Quantities][isq] (ISQ)
//! implementations.
//!
//! [si]: https://jcgm.bipm.org/vim/en/1.16.html
//! [isq]: https://jcgm.bipm.org/vim/en/1.6.html
#[macro_use]
mod prefix;
system! {
/// [International System of Quantities](https://jcgm.bipm.org/vim/en/1.6.html) (ISQ).
///
/// ## Generic Parameters
/// * `L`: Length dimension.
/// * `M`: Mass dimension.
/// * `T`: Time dimension.
/// * `I`: Electric current dimension.
/// * `Th`: Thermodynamic temperature dimension.
/// * `N`: Amount of substance dimension.
/// * `J`: Luminous intensity dimension.
/// * `K`: Kind.
quantities: ISQ {
/// Length, one of the base quantities in the ISQ, denoted by the symbol L. The base unit
/// for length is meter in the SI.
length: meter, L;
/// Mass, one of the base quantities in the ISQ, denoted by the symbol M. The base unit
/// for mass is kilogram in the SI.
mass: kilogram, M;
/// Time, one of the base quantities in the ISQ, denoted by the symbol T. The base unit
/// for time is second in the SI.
time: second, T;
/// Electric current, one of the base quantities in the ISQ, denoted by the symbol I. The
/// base unit for electric current is ampere in the SI.
electric_current: ampere, I;
/// Thermodynamic temperature, one of the base quantities in the ISQ, denoted by the symbol
/// Th (Θ). The base unit for thermodynamic temperature is kelvin in the SI.
thermodynamic_temperature: kelvin, Th;
/// Amount of substance, one of the base quantities in the ISQ, denoted by the symbol N.
/// The base unit for amount of substance is mole in the SI.
amount_of_substance: mole, N;
/// Luminous intensity, one of the base quantities in the ISQ, denoted by the symbol J. The
/// base unit for luminous intensity is candela in the SI.
luminous_intensity: candela, J;
}
/// [International System of Units](https://jcgm.bipm.org/vim/en/1.16.html) (SI).
units: SI {
absement::Absement,
acceleration::Acceleration,
action::Action,
amount_of_substance::AmountOfSubstance,
angle::Angle,
angular_absement::AngularAbsement,
angular_acceleration::AngularAcceleration,
angular_jerk::AngularJerk,
angular_velocity::AngularVelocity,
area::Area,
areal_density_of_states::ArealDensityOfStates,
areal_heat_capacity::ArealHeatCapacity,
areal_mass_density::ArealMassDensity,
areal_number_density::ArealNumberDensity,
areal_number_rate::ArealNumberRate,
available_energy::AvailableEnergy,
capacitance::Capacitance,
catalytic_activity::CatalyticActivity,
catalytic_activity_concentration::CatalyticActivityConcentration,
curvature::Curvature,
diffusion_coefficient::DiffusionCoefficient,
dynamic_viscosity::DynamicViscosity,
electric_charge::ElectricCharge,
electric_charge_areal_density::ElectricChargeArealDensity,
electric_charge_linear_density::ElectricChargeLinearDensity,
electric_charge_volumetric_density::ElectricChargeVolumetricDensity,
electric_current::ElectricCurrent,
electric_current_density::ElectricCurrentDensity,
electric_dipole_moment::ElectricDipoleMoment,
electric_displacement_field::ElectricDisplacementField,
electric_field::ElectricField,
electric_flux::ElectricFlux,
electric_permittivity::ElectricPermittivity,
electric_potential::ElectricPotential,
electric_quadrupole_moment::ElectricQuadrupoleMoment,
electrical_conductance::ElectricalConductance,
electrical_conductivity::ElectricalConductivity,
electrical_mobility::ElectricalMobility,
electrical_resistance::ElectricalResistance,
electrical_resistivity::ElectricalResistivity,
energy::Energy,
force::Force,
frequency::Frequency,
frequency_drift::FrequencyDrift,
heat_capacity::HeatCapacity,
heat_flux_density::HeatFluxDensity,
heat_transfer::HeatTransfer,
inductance::Inductance,
information::Information,
information_rate::InformationRate,
inverse_velocity::InverseVelocity,
jerk::Jerk,
length::Length,
linear_density_of_states::LinearDensityOfStates,
linear_mass_density::LinearMassDensity,
linear_number_density::LinearNumberDensity,
linear_number_rate::LinearNumberRate,
linear_power_density::LinearPowerDensity,
luminance::Luminance,
luminous_intensity::LuminousIntensity,
magnetic_field_strength::MagneticFieldStrength,
magnetic_flux::MagneticFlux,
magnetic_flux_density::MagneticFluxDensity,
magnetic_moment::MagneticMoment,
magnetic_permeability::MagneticPermeability,
mass::Mass,
mass_concentration::MassConcentration,
mass_density::MassDensity,
mass_flux::MassFlux,
mass_per_energy::MassPerEnergy,
mass_rate::MassRate,
molality::Molality,
molar_concentration::MolarConcentration,
molar_energy::MolarEnergy,
molar_flux::MolarFlux,
molar_heat_capacity::MolarHeatCapacity,
molar_mass::MolarMass,
molar_radioactivity::MolarRadioactivity,
molar_volume::MolarVolume,
moment_of_inertia::MomentOfInertia,
momentum::Momentum,
power::Power,
power_rate::PowerRate,
pressure::Pressure,
radiant_exposure::RadiantExposure,
radioactivity::Radioactivity,
ratio::Ratio,
reciprocal_length::ReciprocalLength,
solid_angle::SolidAngle,
specific_area::SpecificArea,
specific_heat_capacity::SpecificHeatCapacity,
specific_power::SpecificPower,
specific_radioactivity::SpecificRadioactivity,
specific_volume::SpecificVolume,
surface_electric_current_density::SurfaceElectricCurrentDensity,
temperature_coefficient::TemperatureCoefficient,
temperature_gradient::TemperatureGradient,
temperature_interval::TemperatureInterval,
thermal_conductance::ThermalConductance,
thermal_conductivity::ThermalConductivity,
thermal_resistance::ThermalResistance,
thermodynamic_temperature::ThermodynamicTemperature,
time::Time,
torque::Torque,
velocity::Velocity,
volume::Volume,
volume_rate::VolumeRate,
volumetric_density_of_states::VolumetricDensityOfStates,
volumetric_heat_capacity::VolumetricHeatCapacity,
volumetric_number_density::VolumetricNumberDensity,
volumetric_number_rate::VolumetricNumberRate,
volumetric_power_density::VolumetricPowerDensity,
}
}
/// [`Quantity`](struct.Quantity.html) type aliases using the default base units and parameterized
/// on the underlying storage type.
pub mod quantities {
ISQ!(crate::si);
}
storage_types! {
/// [`Quantity`](struct.Quantity.html) type aliases using the default base units.
pub types: All;
ISQ!(crate::si, V);
}
/// Primitive traits and types representing basic properties of types specific to the SI.
pub mod marker {
use super::{Dimension, Quantity, Units};
use crate::Kind;
/// `AngleKind` is a `Kind` for separating angular quantities from their identically dimensioned
/// non-angular quantity counterparts. Conversions to and from `AngleKind` quantities are
/// supported through implementations of the `From` trait.
///
#[cfg_attr(feature = "f32", doc = " ```rust")]
#[cfg_attr(not(feature = "f32"), doc = " ```rust,ignore")]
/// # use uom::si::f32::*;
/// # use uom::si::angle::radian;
/// let a: Angle = Angle::new::<radian>(1.0);
/// let r: Ratio = a.into();
/// ```
pub trait AngleKind: Kind {}
/// `SolidAngleKind` is a `Kind` for separating quantities of solid angles from other
/// identically dimensioned quantities. Conversions to and from `SolidAngleKind` quantities are
/// supported through implementations of the `From` trait.
///
#[cfg_attr(feature = "f32", doc = " ```rust")]
#[cfg_attr(not(feature = "f32"), doc = " ```rust,ignore")]
/// # use uom::si::f32::*;
/// # use uom::si::solid_angle::steradian;
/// let a: SolidAngle = SolidAngle::new::<steradian>(1.0);
/// let r: Ratio = a.into();
/// ```
pub trait SolidAngleKind: Kind {}
/// `InformationKind` is a `Kind` for separating information quantities from their identically
/// dimensioned non-information quantity counterparts. Conversions to and from `InformationKind`
/// quantities are supported through implementations of the `From` trait.
///
#[cfg_attr(feature = "f32", doc = " ```rust")]
#[cfg_attr(not(feature = "f32"), doc = " ```rust,ignore")]
/// # use uom::si::f32::*;
/// # use uom::si::information::kilobyte;
/// let i: Information = Information::new::<kilobyte>(1.0);
/// let r: Ratio = i.into();
/// ```
pub trait InformationKind: Kind {}
/// Kind of thermodynamic temperature.
pub trait TemperatureKind:
crate::marker::Mul
+ crate::marker::MulAssign
+ crate::marker::Div
+ crate::marker::DivAssign
+ crate::marker::Rem
+ crate::marker::RemAssign
{
}
/// Kind of constituent concentration in chemical mixtures, which separates mass concentration
/// from mass density. This `Kind` is also applied to molar concentration and to catalytic
/// activity concentration.
pub trait ConstituentConcentrationKind: Kind {}
/// `impl_from` generates generic inter-Kind implementations of `From`.
#[cfg(feature = "autoconvert")]
#[macro_export]
macro_rules! impl_from {
($a:ident, $b:ident) => {
impl<L, M, T, I, Th, N, J, Ul, Ur, V>
From<
Quantity<
dyn Dimension<
L = L,
M = M,
T = T,
I = I,
Th = Th,
N = N,
J = J,
Kind = dyn $a,
>,
Ur,
V,
>,
>
for Quantity<
dyn Dimension<L = L, M = M, T = T, I = I, Th = Th, N = N, J = J, Kind = dyn $b>,
Ul,
V,
>
where
L: $crate::typenum::Integer,
M: $crate::typenum::Integer,
T: $crate::typenum::Integer,
I: $crate::typenum::Integer,
Th: $crate::typenum::Integer,
N: $crate::typenum::Integer,
J: $crate::typenum::Integer,
Ul: Units<V> + ?Sized,
Ur: Units<V> + ?Sized,
V: $crate::num_traits::Num + $crate::Conversion<V>,
{
fn from(
val: Quantity<
dyn Dimension<
L = L,
M = M,
T = T,
I = I,
Th = Th,
N = N,
J = J,
Kind = dyn $a,
>,
Ur,
V,
>,
) -> Quantity<
dyn Dimension<L = L, M = M, T = T, I = I, Th = Th, N = N, J = J, Kind = dyn $b>,
Ul,
V,
> {
Self {
dimension: $crate::lib::marker::PhantomData,
units: $crate::lib::marker::PhantomData,
value: super::change_base::<
dyn Dimension<
L = L,
M = M,
T = T,
I = I,
Th = Th,
N = N,
J = J,
Kind = dyn $b,
>,
Ul,
Ur,
V,
>(&val.value),
}
}
}
};
}
/// `impl_from` generates generic inter-Kind implementations of `From`.
#[cfg(not(feature = "autoconvert"))]
#[macro_export]
macro_rules! impl_from {
($a:ident, $b:ident) => {
impl<L, M, T, I, Th, N, J, U, V>
From<
Quantity<
dyn Dimension<
L = L,
M = M,
T = T,
I = I,
Th = Th,
N = N,
J = J,
Kind = dyn $a,
>,
U,
V,
>,
>
for Quantity<
dyn Dimension<L = L, M = M, T = T, I = I, Th = Th, N = N, J = J, Kind = dyn $b>,
U,
V,
>
where
L: $crate::typenum::Integer,
M: $crate::typenum::Integer,
T: $crate::typenum::Integer,
I: $crate::typenum::Integer,
Th: $crate::typenum::Integer,
N: $crate::typenum::Integer,
J: $crate::typenum::Integer,
U: Units<V> + ?Sized,
V: $crate::num_traits::Num + $crate::Conversion<V>,
{
fn from(
val: Quantity<
dyn Dimension<
L = L,
M = M,
T = T,
I = I,
Th = Th,
N = N,
J = J,
Kind = dyn $a,
>,
U,
V,
>,
) -> Quantity<
dyn Dimension<L = L, M = M, T = T, I = I, Th = Th, N = N, J = J, Kind = dyn $b>,
U,
V,
> {
Self {
dimension: $crate::lib::marker::PhantomData,
units: $crate::lib::marker::PhantomData,
value: val.value,
}
}
}
};
}
impl_from!(AngleKind, Kind);
impl_from!(Kind, AngleKind);
impl_from!(SolidAngleKind, Kind);
impl_from!(Kind, SolidAngleKind);
impl_from!(InformationKind, Kind);
impl_from!(Kind, InformationKind);
impl_from!(ConstituentConcentrationKind, Kind);
impl_from!(Kind, ConstituentConcentrationKind);
}