Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add action quantity with corresponding units and tests. #325

Merged
merged 1 commit into from
Oct 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions src/si/action.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
//! Action (base unit joule second, kg ⋅ m² ⋅ s⁻¹).
quantity! {
/// Action (base unit joule second, kg ⋅ m² ⋅ s⁻¹).
quantity: Action; "action";
/// Dimension of action, L²MT⁻¹ (base unit joule second, kg ⋅ m² ⋅ s⁻¹).
dimension: ISQ<
P2, // length
P1, // mass
N1, // time
Z0, // electric current
Z0, // thermodynamic temperature
Z0, // amount of substance
Z0>; // luminous intensity
units {
@joule_second: prefix!(none); "J · s", "joule second", "joule seconds";

/// Reduced Planck constant ħ.
@atomic_unit_of_action: 1.054_571_817_E-34; "ħ", "atomic unit of action",
"atomic units of action";
@reduced_planck_constant: 1.054_571_817_E-34; "ħ", "reduced planck constant",
"reduced planck constants";
@planck_constant: 6.626_070_15_E-34; "h", "planck constant", "planck constants";
@erg_second: 1.0_E-7; "erg · s", "erg second", "erg seconds";
@electronvolt_second: 1.602_176_634_E-19; "eV · s", "electronvolt second",
"electronvolt seconds";
}
}

#[cfg(test)]
mod test {
storage_types! {
use crate::num::One;
use crate::si::quantities::*;
use crate::si::time as t;
use crate::si::energy as e;
use crate::si::action as act;
use crate::tests::Test;

#[test]
fn check_dimension() {
let _: Action<V> = Energy::new::<e::joule>(V::one())
* Time::new::<t::second>(V::one());
}

#[test]
fn check_units() {
test::<e::joule, t::second, act::joule_second>();
test::<e::erg, t::second, act::erg_second>();
test::<e::electronvolt, t::second, act::electronvolt_second>();

fn test<E: e::Conversion<V>, T: t::Conversion<V>, ACT: act::Conversion<V>>() {
Test::assert_approx_eq(&Action::new::<ACT>(V::one()),
&(Energy::new::<E>(V::one()) * Time::new::<T>(V::one())));
}
}
}
}
1 change: 1 addition & 0 deletions src/si/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ system! {
units: SI {
absement::Absement,
acceleration::Acceleration,
action::Action,
amount_of_substance::AmountOfSubstance,
angle::Angle,
angular_acceleration::AngularAcceleration,
Expand Down