View Javadoc
1   package org.opentrafficsim.core.unit.unitsystem;
2   
3   /**
4    * The centimeter-gram-second system.
5    * <p>
6    * Copyright (c) 2014 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
7    * BSD-style license. See <a href="http://opentrafficsim.org/node/13">OpenTrafficSim License</a>.
8    * <p>
9    * @version Jun 6, 2014 <br>
10   * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a>
11   */
12  public class CGS extends UnitSystem
13  {
14      /** */
15      private static final long serialVersionUID = 20140606L;
16  
17      /**
18       * protected constructor to avoid creating other (false) unit systems.
19       * @param abbreviationKey the abbreviation of the unit system, such as SI
20       * @param nameKey the name of the unit system, such as SI Base
21       */
22      protected CGS(final String abbreviationKey, final String nameKey)
23      {
24          super(abbreviationKey, nameKey);
25      }
26  
27  }