Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
Capacitance.cs
1using System.Collections.Generic;
3
5{
10 {
14 public Capacitance()
15 {
16 }
17
21 public string Name => "Capacitance";
22
26 public Unit Reference => reference;
27
28 private static readonly Unit reference = new Unit(new AtomicUnit("F"));
29
33 public KeyValuePair<string, PhysicalQuantity>[] DerivedUnits
34 {
35 get
36 {
37 return new KeyValuePair<string, PhysicalQuantity>[]
38 {
39 new KeyValuePair<string, PhysicalQuantity>("F", new PhysicalQuantity(1, new Unit(Prefix.Milli,
40 new KeyValuePair<AtomicUnit, int>[]
41 {
42 new KeyValuePair<AtomicUnit, int>(new AtomicUnit("m"), -2),
43 new KeyValuePair<AtomicUnit, int>(new AtomicUnit("g"), -1),
44 new KeyValuePair<AtomicUnit, int>(new AtomicUnit("s"), 4),
45 new KeyValuePair<AtomicUnit, int>(new AtomicUnit("A"), 2)
46 })))
47 };
48 }
49 }
50 }
51}
Represents an atomic unit.
Definition: AtomicUnit.cs:7
KeyValuePair< string, PhysicalQuantity >[] DerivedUnits
Derived Units supported.
Definition: Capacitance.cs:34
Unit Reference
Reference unit of category.
Definition: Capacitance.cs:26
string Name
Name of derived quantity.
Definition: Capacitance.cs:21
Represents a unit.
Definition: Unit.cs:15
Interface for derived quantities
Prefix
SI prefixes. http://physics.nist.gov/cuu/Units/prefixes.html
Definition: Prefixes.cs:11