Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Capacitance.php
Go to the documentation of this file.
1 <?php
25 #require_once 'Zend/Measure/Abstract.php';
26 #require_once 'Zend/Locale.php';
27 
38 {
39  const STANDARD = 'FARAD';
40 
41  const ABFARAD = 'ABFARAD';
42  const AMPERE_PER_SECOND_VOLT = 'AMPERE_PER_SECOND_VOLT';
43  const CENTIFARAD = 'CENTIFARAD';
44  const COULOMB_PER_VOLT = 'COULOMB_PER_VOLT';
45  const DECIFARAD = 'DECIFARAD';
46  const DEKAFARAD = 'DEKAFARAD';
47  const ELECTROMAGNETIC_UNIT = 'ELECTROMAGNETIC_UNIT';
48  const ELECTROSTATIC_UNIT = 'ELECTROSTATIC_UNIT';
49  const FARAD = 'FARAD';
50  const FARAD_INTERNATIONAL = 'FARAD_INTERNATIONAL';
51  const GAUSSIAN = 'GAUSSIAN';
52  const GIGAFARAD = 'GIGAFARAD';
53  const HECTOFARAD = 'HECTOFARAD';
54  const JAR = 'JAR';
55  const KILOFARAD = 'KILOFARAD';
56  const MEGAFARAD = 'MEGAFARAD';
57  const MICROFARAD = 'MICROFARAD';
58  const MILLIFARAD = 'MILLIFARAD';
59  const NANOFARAD = 'NANOFARAD';
60  const PICOFARAD = 'PICOFARAD';
61  const PUFF = 'PUFF';
62  const SECOND_PER_OHM = 'SECOND_PER_OHM';
63  const STATFARAD = 'STATFARAD';
64  const TERAFARAD = 'TERAFARAD';
65 
71  protected $_units = array(
72  'ABFARAD' => array('1.0e+9', 'abfarad'),
73  'AMPERE_PER_SECOND_VOLT' => array('1', 'A/sV'),
74  'CENTIFARAD' => array('0.01', 'cF'),
75  'COULOMB_PER_VOLT' => array('1', 'C/V'),
76  'DECIFARAD' => array('0.1', 'dF'),
77  'DEKAFARAD' => array('10', 'daF'),
78  'ELECTROMAGNETIC_UNIT' => array('1.0e+9', 'capacity emu'),
79  'ELECTROSTATIC_UNIT' => array('1.11265e-12', 'capacity esu'),
80  'FARAD' => array('1', 'F'),
81  'FARAD_INTERNATIONAL' => array('0.99951', 'F'),
82  'GAUSSIAN' => array('1.11265e-12', 'G'),
83  'GIGAFARAD' => array('1.0e+9', 'GF'),
84  'HECTOFARAD' => array('100', 'hF'),
85  'JAR' => array('1.11265e-9', 'jar'),
86  'KILOFARAD' => array('1000', 'kF'),
87  'MEGAFARAD' => array('1000000', 'MF'),
88  'MICROFARAD' => array('0.000001', 'µF'),
89  'MILLIFARAD' => array('0.001', 'mF'),
90  'NANOFARAD' => array('1.0e-9', 'nF'),
91  'PICOFARAD' => array('1.0e-12', 'pF'),
92  'PUFF' => array('1.0e-12', 'pF'),
93  'SECOND_PER_OHM' => array('1', 's/Ohm'),
94  'STATFARAD' => array('1.11265e-12', 'statfarad'),
95  'TERAFARAD' => array('1.0e+12', 'TF'),
96  'STANDARD' => 'FARAD'
97  );
98 }