web/Zend/Measure/Viscosity/Kinematic.php
changeset 0 4eba9c11703f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/web/Zend/Measure/Viscosity/Kinematic.php	Mon Dec 13 18:29:26 2010 +0100
@@ -0,0 +1,106 @@
+<?php
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category  Zend
+ * @package   Zend_Measure
+ * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license   http://framework.zend.com/license/new-bsd     New BSD License
+ * @version   $Id: Kinematic.php 20096 2010-01-06 02:05:09Z bkarwin $
+ */
+
+/**
+ * Implement needed classes
+ */
+require_once 'Zend/Measure/Abstract.php';
+require_once 'Zend/Locale.php';
+
+/**
+ * Class for handling acceleration conversions
+ *
+ * @category   Zend
+ * @package    Zend_Measure
+ * @subpackage Zend_Measure_Viscosity_Kinematic
+ * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ */
+class Zend_Measure_Viscosity_Kinematic extends Zend_Measure_Abstract
+{
+    const STANDARD = 'SQUARE_METER_PER_SECOND';
+
+    const CENTISTOKES                     = 'CENTISTOKES';
+    const LENTOR                          = 'LENTOR';
+    const LITER_PER_CENTIMETER_DAY        = 'LITER_PER_CENTIMETER_DAY';
+    const LITER_PER_CENTIMETER_HOUR       = 'LITER_PER_CENTIMETER_HOUR';
+    const LITER_PER_CENTIMETER_MINUTE     = 'LITER_PER_CENTIMETER_MINUTE';
+    const LITER_PER_CENTIMETER_SECOND     = 'LITER_PER_CENTIMETER_SECOND';
+    const POISE_CUBIC_CENTIMETER_PER_GRAM = 'POISE_CUBIC_CENTIMETER_PER_GRAM';
+    const SQUARE_CENTIMETER_PER_DAY       = 'SQUARE_CENTIMETER_PER_DAY';
+    const SQUARE_CENTIMETER_PER_HOUR      = 'SQUARE_CENTIMETER_PER_HOUR';
+    const SQUARE_CENTIMETER_PER_MINUTE    = 'SQUARE_CENTIMETER_PER_MINUTE';
+    const SQUARE_CENTIMETER_PER_SECOND    = 'SQUARE_CENTIMETER_PER_SECOND';
+    const SQUARE_FOOT_PER_DAY             = 'SQUARE_FOOT_PER_DAY';
+    const SQUARE_FOOT_PER_HOUR            = 'SQUARE_FOOT_PER_HOUR';
+    const SQUARE_FOOT_PER_MINUTE          = 'SQUARE_FOOT_PER_MINUTE';
+    const SQUARE_FOOT_PER_SECOND          = 'SQUARE_FOOT_PER_SECOND';
+    const SQUARE_INCH_PER_DAY             = 'SQUARE_INCH_PER_DAY';
+    const SQUARE_INCH_PER_HOUR            = 'SQUARE_INCH_PER_HOUR';
+    const SQUARE_INCH_PER_MINUTE          = 'SQUARE_INCH_PER_MINUTE';
+    const SQUARE_INCH_PER_SECOND          = 'SQUARE_INCH_PER_SECOND';
+    const SQUARE_METER_PER_DAY            = 'SQUARE_METER_PER_DAY';
+    const SQUARE_METER_PER_HOUR           = 'SQUARE_METER_PER_HOUR';
+    const SQUARE_METER_PER_MINUTE         = 'SQUARE_METER_PER_MINUTE';
+    const SQUARE_METER_PER_SECOND         = 'SQUARE_METER_PER_SECOND';
+    const SQUARE_MILLIMETER_PER_DAY       = 'SQUARE_MILLIMETER_PER_DAY';
+    const SQUARE_MILLIMETER_PER_HOUR      = 'SQUARE_MILLIMETER_PER_HOUR';
+    const SQUARE_MILLIMETER_PER_MINUTE    = 'SQUARE_MILLIMETER_PER_MINUTE';
+    const SQUARE_MILLIMETER_PER_SECOND    = 'SQUARE_MILLIMETER_PER_SECOND';
+    const STOKES                          = 'STOKES';
+
+    /**
+     * Calculations for all kinematic viscosity units
+     *
+     * @var array
+     */
+    protected $_units = array(
+        'CENTISTOKES'                  => array('0.000001',        'cSt'),
+        'LENTOR'                       => array('0.0001',          'lentor'),
+        'LITER_PER_CENTIMETER_DAY'     => array(array('' => '1', '/' => '864000'), 'l/cm day'),
+        'LITER_PER_CENTIMETER_HOUR'    => array(array('' => '1', '/' => '36000'),  'l/cm h'),
+        'LITER_PER_CENTIMETER_MINUTE'  => array(array('' => '1', '/' => '600'),    'l/cm m'),
+        'LITER_PER_CENTIMETER_SECOND'  => array('0.1',             'l/cm s'),
+        'POISE_CUBIC_CENTIMETER_PER_GRAM' => array('0.0001',       'P cm³/g'),
+        'SQUARE_CENTIMETER_PER_DAY'    => array(array('' => '1', '/' => '864000000'),'cm²/day'),
+        'SQUARE_CENTIMETER_PER_HOUR'   => array(array('' => '1', '/' => '36000000'),'cm²/h'),
+        'SQUARE_CENTIMETER_PER_MINUTE' => array(array('' => '1', '/' => '600000'),'cm²/m'),
+        'SQUARE_CENTIMETER_PER_SECOND' => array('0.0001',          'cm²/s'),
+        'SQUARE_FOOT_PER_DAY'          => array('0.0000010752667', 'ft²/day'),
+        'SQUARE_FOOT_PER_HOUR'         => array('0.0000258064',    'ft²/h'),
+        'SQUARE_FOOT_PER_MINUTE'       => array('0.001548384048',  'ft²/m'),
+        'SQUARE_FOOT_PER_SECOND'       => array('0.09290304',      'ft²/s'),
+        'SQUARE_INCH_PER_DAY'          => array('7.4671296e-9',    'in²/day'),
+        'SQUARE_INCH_PER_HOUR'         => array('0.00000017921111', 'in²/h'),
+        'SQUARE_INCH_PER_MINUTE'       => array('0.000010752667',  'in²/m'),
+        'SQUARE_INCH_PER_SECOND'       => array('0.00064516',      'in²/s'),
+        'SQUARE_METER_PER_DAY'         => array(array('' => '1', '/' => '86400'), 'm²/day'),
+        'SQUARE_METER_PER_HOUR'        => array(array('' => '1', '/' => '3600'),  'm²/h'),
+        'SQUARE_METER_PER_MINUTE'      => array(array('' => '1', '/' => '60'),    'm²/m'),
+        'SQUARE_METER_PER_SECOND'      => array('1',               'm²/s'),
+        'SQUARE_MILLIMETER_PER_DAY'    => array(array('' => '1', '/' => '86400000000'), 'mm²/day'),
+        'SQUARE_MILLIMETER_PER_HOUR'   => array(array('' => '1', '/' => '3600000000'),  'mm²/h'),
+        'SQUARE_MILLIMETER_PER_MINUTE' => array(array('' => '1', '/' => '60000000'),    'mm²/m'),
+        'SQUARE_MILLIMETER_PER_SECOND' => array('0.000001',        'mm²/s'),
+        'STOKES'                       => array('0.0001',          'St'),
+        'STANDARD'                     => 'SQUARE_METER_PER_SECOND'
+    );
+}