org.spase.parser200
Enum EnumMixedQuantity

java.lang.Object
  extended by java.lang.Enum<EnumMixedQuantity>
      extended by org.spase.parser200.EnumMixedQuantity
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<EnumMixedQuantity>

public enum EnumMixedQuantity
extends java.lang.Enum<EnumMixedQuantity>

Java class for enumMixedQuantity.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="enumMixedQuantity">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="AkasofuEpsilon"/>
     <enumeration value="AlfvenMachNumber"/>
     <enumeration value="AlfvenVelocity"/>
     <enumeration value="FrequencyToGyrofrequencyRat"/>
     <enumeration value="MagnetosonicMachNumber"/>
     <enumeration value="Other"/>
     <enumeration value="PlasmaBeta"/>
     <enumeration value="TotalPressure"/>
     <enumeration value="VCrossB"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
AKASOFU_EPSILON
          A measure of the magnetopause energy flux and an indicator of the solar wind power available for subsequent magnetospheric energization.
ALFVEN_MACH_NUMBER
          The ratio of the bulk flow speed to the Alfven speed.
ALFVEN_VELOCITY
          Phase velocity of the Alfven wave; In SI units it is the velocity of the magnetic field divided by the square root of the mass density times the permeability of free space (mu).
FREQUENCY_TO_GYROFREQUENCY_RAT
           
MAGNETOSONIC_MACH_NUMBER
          The ratio of the velocity of fast mode waves to the Alfven velocity.
OTHER
          Not classified with more specific terms.
PLASMA_BETA
          The ratio of thermal pressure to magnetic pressure in plasma.
TOTAL_PRESSURE
          In an MHD fluid it is the number density (N) times Boltzmann constant times the temperature in Kelvin.
V_CROSS_B
          The cross product of the charge velocity (V) and the magnetic field (B).
 
Method Summary
static EnumMixedQuantity fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumMixedQuantity valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumMixedQuantity[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AKASOFU_EPSILON

public static final EnumMixedQuantity AKASOFU_EPSILON
A measure of the magnetopause energy flux and an indicator of the solar wind power available for subsequent magnetospheric energization. Defined as: V*B^2*l^2sin(theta/2)^4 where B is the IMF, l is an empirical scaling parameter equal to 7 RE, and theta = tan(BY /BZ)^-1 the IMF clock angle.


ALFVEN_MACH_NUMBER

public static final EnumMixedQuantity ALFVEN_MACH_NUMBER
The ratio of the bulk flow speed to the Alfven speed.


ALFVEN_VELOCITY

public static final EnumMixedQuantity ALFVEN_VELOCITY
Phase velocity of the Alfven wave; In SI units it is the velocity of the magnetic field divided by the square root of the mass density times the permeability of free space (mu).


FREQUENCY_TO_GYROFREQUENCY_RAT

public static final EnumMixedQuantity FREQUENCY_TO_GYROFREQUENCY_RAT

MAGNETOSONIC_MACH_NUMBER

public static final EnumMixedQuantity MAGNETOSONIC_MACH_NUMBER
The ratio of the velocity of fast mode waves to the Alfven velocity.


OTHER

public static final EnumMixedQuantity OTHER
Not classified with more specific terms. The context of its usage may be described in related text.


PLASMA_BETA

public static final EnumMixedQuantity PLASMA_BETA
The ratio of thermal pressure to magnetic pressure in plasma.


TOTAL_PRESSURE

public static final EnumMixedQuantity TOTAL_PRESSURE
In an MHD fluid it is the number density (N) times Boltzmann constant times the temperature in Kelvin.


V_CROSS_B

public static final EnumMixedQuantity V_CROSS_B
The cross product of the charge velocity (V) and the magnetic field (B). It is the electric field exerted on a point charge by a magnetic field.

Method Detail

values

public static final EnumMixedQuantity[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(EnumMixedQuantity c : EnumMixedQuantity.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static EnumMixedQuantity valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

value

public java.lang.String value()

fromValue

public static EnumMixedQuantity fromValue(java.lang.String v)