public final class AirDensity extends Density
Modifier and Type | Method and Description |
---|---|
static visad.Data |
create(visad.Data pressure,
visad.Data temperature)
Creates an AirDensity data object from data objects for Pressure,
and temperature
|
static visad.Data |
create(visad.Data pressure,
visad.Data inSituAirTemperature,
visad.Data dewPoint)
Creates an AirDensity data object from data objects for Pressure,
InSituAirTemperature, and DewPoint.
|
static visad.FlatField |
create(visad.FlatField inputField)
Creates an AirPressure -> AirDensity field from an Pressure ->
(InSituAirTemperature, DewPoint) field.
|
static visad.RealTupleType |
getRealTupleType()
Obtains the RealTupleType associated with this class.
|
static visad.RealType |
getRealType()
Obtains the RealType associated with this class.
|
getRealType, getRealType, realType
realTupleType, setRealTupleType
public static visad.RealType getRealType() throws visad.VisADException
visad.VisADException
- Couldn't perform necessary VisAD operation.public static visad.RealTupleType getRealTupleType() throws visad.VisADException
visad.VisADException
- Couldn't perform necessary VisAD operation.public static visad.Data create(visad.Data pressure, visad.Data inSituAirTemperature, visad.Data dewPoint) throws visad.TypeException, visad.UnimplementedException, visad.VisADException, java.rmi.RemoteException
pressure
- A Pressure data object.inSituAirTemperature
- An InSituAirTemperature data object.dewPoint
- A DewPoint data object.visad.TypeException
- At least one argument has wrong type.visad.UnimplementedException
- Necessary operation not yet implemented.visad.VisADException
- Couldn't create necessary VisAD object.java.rmi.RemoteException
- Java RMI failure.VisADMath
public static visad.Data create(visad.Data pressure, visad.Data temperature) throws visad.TypeException, visad.UnimplementedException, visad.VisADException, java.rmi.RemoteException
pressure
- A Pressure data object.temperature
- A temperature data object. If the in-situ
temperature is used, then the returned density
will be that for dry air; if the virtual
temperature is used, then the returned density
will be the actual density.visad.TypeException
- At least one argument has wrong type.visad.UnimplementedException
- Necessary operation not yet implemented.visad.VisADException
- Couldn't create necessary VisAD object.java.rmi.RemoteException
- Java RMI failure.VisADMath
public static visad.FlatField create(visad.FlatField inputField) throws visad.TypeException, visad.UnimplementedException, visad.VisADException, java.rmi.RemoteException
inputField
- An Pressure -> (InSituAirTemperature,
DewPoint) field.visad.TypeException
- At least one argument has wrong type.visad.UnimplementedException
- Necessary operation not yet implemented.visad.VisADException
- Couldn't create necessary VisAD object.java.rmi.RemoteException
- Java RMI failure.