org.spase.parser122
Enum EnumParticleQuantity

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

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

Java class for enumParticleQuantity.

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

 <simpleType name="enumParticleQuantity">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="AlfvenMachNumber"/>
     <enumeration value="AverageChargeState"/>
     <enumeration value="Counts"/>
     <enumeration value="Energy"/>
     <enumeration value="EnergyDensity"/>
     <enumeration value="EnergyFlux"/>
     <enumeration value="FlowSpeed"/>
     <enumeration value="Gyrofrequency"/>
     <enumeration value="HeatFlux"/>
     <enumeration value="Mass"/>
     <enumeration value="MassDensity"/>
     <enumeration value="NumberDensity"/>
     <enumeration value="NumberFlux"/>
     <enumeration value="PhaseSpaceDensity"/>
     <enumeration value="PlasmaBeta"/>
     <enumeration value="PlasmaFrequency"/>
     <enumeration value="Pressure"/>
     <enumeration value="SonicMachNumber"/>
     <enumeration value="Temperature"/>
     <enumeration value="ThermalSpeed"/>
     <enumeration value="Velocity"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ALFVEN_MACH_NUMBER
          The ratio of the bulk flow speed to the Alfven speed.
AVERAGE_CHARGE_STATE
          A measure of the composite deficit (positive) or excess (negative) of electrons with respect to protons.
COUNTS
          An enumeration of the number of detection events occurring in a particle detector per unit time or over detector accumulation times.
ENERGY
          The capacity for doing work as measured by the capability of doing work (potential energy) or the conversion of this capability to motion (kinetic energy)
ENERGY_DENSITY
          The amount of energy per unit volume.
ENERGY_FLUX
          The amount of energy passing through a unit area in a unit time.
FLOW_SPEED
          The rate at which particles or energy is passing through a unit area in a unit time.
GYROFREQUENCY
          The frequency with which a charged particle (as an electron) executes spiral gyrations in moving obliquely across a magnetic field
HEAT_FLUX
          Flow of thermal energy through a gas or plasma; typically computed as third moment of a distribution function.
MASS
          The measure of inertia (mass) of individual objects (e.g., aerosols).
MASS_DENSITY
          The mass of particles per unit volume.
NUMBER_DENSITY
          The number of particles per unit volume.
NUMBER_FLUX
          The number of particles passing through a unit area in a unit time.
PHASE_SPACE_DENSITY
          The number of particles per unit volume in the six-dimensional space of position and velocity.
PLASMA_BETA
          The ratio of the plasma pressure to the magnetic pressure.
PLASMA_FREQUENCY
          The frequency with which a plasma oscillates.
PRESSURE
          The force per unit area exerted by a particle distribution or field.
SONIC_MACH_NUMBER
          The ratio of the bulk flow speed to the speed of sound in the medium.
TEMPERATURE
          A measure of the kinetic energy of random motion with respect to the average.
THERMAL_SPEED
          For a Maxwellian distribution, the difference between the mean speed and the speed within which ~69% (one sigma) of all the members of the speed distribution occur.
VELOCITY
          Rate of change of position.
 
Method Summary
static EnumParticleQuantity fromValue(java.lang.String v)
           
 java.lang.String value()
           
static EnumParticleQuantity valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static EnumParticleQuantity[] 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

ALFVEN_MACH_NUMBER

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


AVERAGE_CHARGE_STATE

public static final EnumParticleQuantity AVERAGE_CHARGE_STATE
A measure of the composite deficit (positive) or excess (negative) of electrons with respect to protons.


COUNTS

public static final EnumParticleQuantity COUNTS
An enumeration of the number of detection events occurring in a particle detector per unit time or over detector accumulation times.


ENERGY

public static final EnumParticleQuantity ENERGY
The capacity for doing work as measured by the capability of doing work (potential energy) or the conversion of this capability to motion (kinetic energy)


ENERGY_DENSITY

public static final EnumParticleQuantity ENERGY_DENSITY
The amount of energy per unit volume.


ENERGY_FLUX

public static final EnumParticleQuantity ENERGY_FLUX
The amount of energy passing through a unit area in a unit time.


FLOW_SPEED

public static final EnumParticleQuantity FLOW_SPEED
The rate at which particles or energy is passing through a unit area in a unit time.


GYROFREQUENCY

public static final EnumParticleQuantity GYROFREQUENCY
The frequency with which a charged particle (as an electron) executes spiral gyrations in moving obliquely across a magnetic field


HEAT_FLUX

public static final EnumParticleQuantity HEAT_FLUX
Flow of thermal energy through a gas or plasma; typically computed as third moment of a distribution function.


MASS

public static final EnumParticleQuantity MASS
The measure of inertia (mass) of individual objects (e.g., aerosols).


MASS_DENSITY

public static final EnumParticleQuantity MASS_DENSITY
The mass of particles per unit volume.


NUMBER_DENSITY

public static final EnumParticleQuantity NUMBER_DENSITY
The number of particles per unit volume.


NUMBER_FLUX

public static final EnumParticleQuantity NUMBER_FLUX
The number of particles passing through a unit area in a unit time.


PHASE_SPACE_DENSITY

public static final EnumParticleQuantity PHASE_SPACE_DENSITY
The number of particles per unit volume in the six-dimensional space of position and velocity.


PLASMA_BETA

public static final EnumParticleQuantity PLASMA_BETA
The ratio of the plasma pressure to the magnetic pressure.


PLASMA_FREQUENCY

public static final EnumParticleQuantity PLASMA_FREQUENCY
The frequency with which a plasma oscillates.


PRESSURE

public static final EnumParticleQuantity PRESSURE
The force per unit area exerted by a particle distribution or field.


SONIC_MACH_NUMBER

public static final EnumParticleQuantity SONIC_MACH_NUMBER
The ratio of the bulk flow speed to the speed of sound in the medium.


TEMPERATURE

public static final EnumParticleQuantity TEMPERATURE
A measure of the kinetic energy of random motion with respect to the average. Temperature is properly defined only for an equilibrium particle distribution (Maxwellian distribution).


THERMAL_SPEED

public static final EnumParticleQuantity THERMAL_SPEED
For a Maxwellian distribution, the difference between the mean speed and the speed within which ~69% (one sigma) of all the members of the speed distribution occur.


VELOCITY

public static final EnumParticleQuantity VELOCITY
Rate of change of position. Also used for the average velocity of a collection of particles, also referred to as "bulk velocity".

Method Detail

values

public static final EnumParticleQuantity[] 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(EnumParticleQuantity c : EnumParticleQuantity.values())
        System.out.println(c);

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

valueOf

public static EnumParticleQuantity 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 EnumParticleQuantity fromValue(java.lang.String v)