casa::Unit Class Reference
[Quanta]

#include <Unit.h>

Collaboration diagram for casa::Unit:

Collaboration graph
[legend]
List of all members.

Detailed Description

defines physical units

Intended use:

Part of API

Review Status

Reviewed By:
UNKNOWN
Date Reviewed:
before2004/08/25
Test programs:
tUnit

Synopsis

Physical units are basically used as quantities (see the Quantum class), i.e. a value and a dimension. The Unit class, or one of its subsidaries, will in general not be called separately. The only reason to make use of these classes is to generate additional 'tagged' units, i.e. units with a special name, e.g. 'beam' for a telescope beam, or 'JY', a non-SI name for Jy.

Units

A Unit is a String, and can be defined as either a Unit or a String everywhere where a Unit is required.
If defined as a Unit, the format of the string will be checked for a legal definition and its value will be stored. If defined as a String, the checking and determination of the value will be done each time the string is encountered when a Unit is expected.
Tip: The use of a separate Unit variable will give a tremendous speed increase, if compared to using the String representation in e.g. Quantity(5,"deg") Caution: If using an explicit Unit variable (e.g. Unit a("5Bolton/beam")), the check on the legality of the given string, and the conversion to the cached canonical value in the variable 'a', is only done at creation time. This means that if the user changes the value of a unit involved by the putUser() method, the unit using it should be re-created ( a = Unit("5Bolton/beam");). A unit is a string of one or more fields separated by 'space' or '.' (to indicate multiply) or '/' (to indicate divide). Multiple separators are acted upon (i.e. m//s == m.s). Separators are acted upon left-to-right (i.e. m/s/A == (m/s)/A; use () to indicate otherwise (e.g. m/(s/A))).

A field is a name, or a unit enclosed in (), optionally followed by an, optionally signed, decimal constant.

E.g. m.(m/s)-2 == m-1.s2) Tip: A 'space' or '.' before an opening '(' can be omitted. A name can consist of case-sensitive letters, '_', ''', ':', '"' and '0' ('0' not as first character). Digits 1-9 are allowed if preceded with an '_'.

Possible legal names are e.g. Jy, R0, R_1, "_2. Tip:

Caution: The standard naming conventions for SI units are that they are all in lowercase, unless derived from a person's name, when they start with a capital letter. Notable exceptions are some of the astronomical SI related units (e.g. AU). A name can be preceded by a (standard) decimal prefix.

A name must be defined in a Unit map before it can be used.

All SI units and some customary units are part of the classes. User defined names can be added by the UnitMap::putUser() function (see the UnitMap class).

Example: km/s/(Mpc.s)2 is identical to km.s-1.Mpc-2.s-2

There are 5 name lists in the UnitMap, which are searched in reverse order:

  1. Defining units: m, kg, s, A, K, cd, mol, rad, sr, _
  2. SI units: including a.o. g, Jy, AU
  3. Customary units: e.g. lb, hp, ly
  4. User defined units: defined by user (e.g. beam, KPH, KM)
  5. Cached units: for speed in operations
All known names can be viewed by running the tUnit test program, or using the MapUnit::list() routine. They are also (at least the 1999/09/15 values) available in the Quanta module documentation . Caution: There is a difference between units without a dimension (non-dimensioned I will call them), and undimensioned units. Non-dimensioned examples are "", "%"; undimensioned examples: "beam", "pixel".

Unit class

The Unit class is not directly based on the String class, but Strings and Units are interchangeable in all Unit and Quantum related calls. (But notice the earlier note on speed if using explicit Strings often.)

To calculate with Units (or Strings representing units), use the UnitVal class. To use dimensioned values, use the Quantum (cq Quantity) class.

Using Unit i.s.o. String will give an immediate check of the legality of the unit string. In addition the UnitVal class contains a check facility to determine the legality of a unit string:

    Bool UnitVal::check("string");

Example

    \#include <casa/Quanta.h>
    // check if a string is a valid unit
    if ( !UnitVal::check("Km") ) { cout << "Invalid unit string " << "Km" << endl;
    // define some units
    String unit1="km/Mpc";
    Unit unit2="uJy/Mpc";
    // define your own unit name
    UnitMap::putUser("my_univ", UnitVal( C::pi, unit2), "My universe param");
    // use the units in model calculations
    Quantity observed( 8.97, "Mmy_univ/a");
    Quantity theory (3.8e-9, "mmy_univ/s");
    if ( ( observed / theory) < 1.) { cout << "Eureka" << endl;

Motivation

Make basis for all dimensioned values the SI system of units

To Do

Definition at line 187 of file Unit.h.

Public Member Functions

 Unit ()
 Default empty string constructor.
 Unit (const Unit &other)
 Copy constructor.
 ~Unit ()
 Destructor.
Unitoperator= (const Unit &other)
const UnitValgetValue () const
 Get the unit value.
const StringgetName () const
 Get the unit name.
void setValue (const UnitVal &in)
 Set the unit value.
void setName (const String &in)
 Set the unit name.
 Unit (const String &other)
 String based constructors.
 Unit (const Char *other)
 Unit (Char other)
 Unit (const Char *other, Int len)
Bool operator== (const Unit &other) const
 Comparisons.
Bool operator!= (const Unit &other) const
Bool empty () const
 Fast check for "" units.

Private Member Functions

void check ()
 Check format of unit string.

Private Attributes

String uName
UnitVal uVal


Constructor & Destructor Documentation

casa::Unit::Unit (  ) 

Default empty string constructor.

casa::Unit::Unit ( const Unit other  ) 

Copy constructor.

casa::Unit::Unit ( const String other  ) 

String based constructors.

Thrown Exceptions

casa::Unit::Unit ( const Char other  ) 

casa::Unit::Unit ( Char  other  )  [explicit]

casa::Unit::Unit ( const Char other,
Int  len 
)

casa::Unit::~Unit (  ) 

Destructor.


Member Function Documentation

Unit& casa::Unit::operator= ( const Unit other  ) 

Bool casa::Unit::operator== ( const Unit other  )  const

Comparisons.

Comparisons are done on the basis of the inherent units. I.e. m/s are identical to AU/cy.

Bool casa::Unit::operator!= ( const Unit other  )  const

Bool casa::Unit::empty (  )  const

Fast check for "" units.

const UnitVal& casa::Unit::getValue (  )  const

Get the unit value.

const String& casa::Unit::getName (  )  const

Get the unit name.

Referenced by casa::SDTabRecCopier::fieldUnits(), casa::ROScalarQuantColumn< float >::getUnits(), and casa::SDTabRecCopier::tableUnits().

void casa::Unit::setValue ( const UnitVal in  ) 

Set the unit value.

void casa::Unit::setName ( const String in  ) 

Set the unit name.

void casa::Unit::check (  )  [private]

Check format of unit string.

Thrown Exceptions


Member Data Documentation

String casa::Unit::uName [private]

Definition at line 230 of file Unit.h.

UnitVal casa::Unit::uVal [private]

Definition at line 231 of file Unit.h.


The documentation for this class was generated from the following file:
Generated on Mon Sep 1 22:44:20 2008 for NRAOCASA by  doxygen 1.5.1