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
//! Electric charge linear density (base unit coulomb per meter, m⁻¹ · A · s).

quantity! {
    ///Electric charge linear density (base unit coulomb per meter, m⁻¹ · A · s).
    quantity: ElectricChargeLinearDensity; "electric charge linear density";
    /// Dimension of electric charge linear density, L⁻¹TI (base unit coulomb per meter,
    /// m⁻¹ · A · s).
    dimension: ISQ<
        N1,     // length
        Z0,     // mass
        P1,     // time
        P1,     // electric current
        Z0,     // thermodynamic temperature
        Z0,     // amount of substance
        Z0>;    // luminous intensity
        kind: dyn (crate::si::marker::ConstituentConcentrationKind);
    units {
        @coulomb_per_meter: prefix!(none); "C/m", "coulomb per meter", "coulombs per meter";
        @coulomb_per_centimeter: prefix!(none) / prefix!(centi); "C/cm", "coulomb per centimeter",
            "coulombs per centimeter";
    }
}

#[cfg(test)]
mod tests {
    storage_types! {
        use crate::num::One;
        use crate::si::electric_charge as q;
        use crate::si::electric_charge_linear_density as ecld;
        use crate::si::quantities::*;
        use crate::si::length as l;
        use crate::tests::Test;

        #[test]
        fn check_dimension() {
            let _: ElectricChargeLinearDensity<V> = (ElectricCharge::new::<q::coulomb>(V::one())
                / Length::new::<l::meter>(V::one())).into();
        }

        #[test]
        fn check_units() {
            test::<q::coulomb, l::meter, ecld::coulomb_per_meter>();
            test::<q::coulomb, l::centimeter, ecld::coulomb_per_centimeter>();

            fn test<Q: q::Conversion<V>, L: l::Conversion<V>, ECLD: ecld::Conversion<V>>() {
                Test::assert_approx_eq(&ElectricChargeLinearDensity::new::<ECLD>(V::one()),
                    &(ElectricCharge::new::<Q>(V::one()) / Length::new::<L>(V::one())).into());
            }
        }
    }
}