Class PhysicalModel

  • All Implemented Interfaces:
    javax.measure.unit.Dimension.Model
    Direct Known Subclasses:
    HighEnergyModel, NaturalModel, QuantumModel, RelativisticModel, StandardModel

    public abstract class PhysicalModel
    extends java.lang.Object
    implements javax.measure.unit.Dimension.Model

    This abstract class represents a physical model. Instances of this class determinate the current quantities dimensions.

    To select a model, one needs only to call the model select static method. For example:[code] public static void main(String[] args) { // Global (LocalContext should be used for thread-local settings). RelativisticModel.select(); ... [/code]

    Selecting a predefined model automatically sets the dimension of the base units.

    Version:
    3.1, April 22, 2006
    Author:
    Jean-Marie Dautelle
    • Field Summary

      • Fields inherited from interface javax.measure.unit.Dimension.Model

        STANDARD
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static PhysicalModel current()
      Returns the current physical model (default: instance of StandardModel).
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface javax.measure.unit.Dimension.Model

        getDimension, getTransform
    • Method Detail

      • current

        public static final PhysicalModel current()
        Returns the current physical model (default: instance of StandardModel).
        Returns:
        the context-local physical model.