public class FlowVolume extends TypedDoubleScalarRel<FlowVolumeUnit,FlowVolume>
DoubleScalar.Rel<FlowVolumeUnit> value = new DoubleScalar.Rel<FlowVolumeUnit>(100.0, FlowVolumeUnit.SI);we can now write:
FlowVolume value = new FlowVolume(100.0, FlowVolumeUnit.SI);The compiler will automatically recognize which units belong to which quantity, and whether the quantity type and the unit used are compatible.
Copyright (c) 2013-2016 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See DJUNITS License.
$LastChangedDate: 2016-05-28 14:25:52 +0200 (Sat, 28 May 2016) $, @version $Revision: 202 $, by $Author: averbraeck $,
initial version Sep 5, 2015
DoubleScalar.Abs<U extends Unit<U>>, DoubleScalar.Rel<U extends Unit<U>>| Modifier and Type | Field and Description |
|---|---|
static FlowVolume |
ZERO
constant with value zero.
|
si| Constructor and Description |
|---|
FlowVolume(double value,
FlowVolumeUnit unit)
Construct FlowVolume scalar.
|
FlowVolume(FlowVolume value)
Construct FlowVolume scalar.
|
| Modifier and Type | Method and Description |
|---|---|
Speed |
divideBy(Area v)
Calculate the division of FlowVolume and Area, which results in a Speed scalar.
|
Dimensionless |
divideBy(FlowVolume v)
Calculate the division of FlowVolume and FlowVolume, which results in a Dimensionless scalar.
|
Volume |
divideBy(Frequency v)
Calculate the division of FlowVolume and Frequency, which results in a Volume scalar.
|
Area |
divideBy(Speed v)
Calculate the division of FlowVolume and Speed, which results in a Area scalar.
|
Frequency |
divideBy(Volume v)
Calculate the division of FlowVolume and Volume, which results in a Frequency scalar.
|
protected FlowVolume |
instantiateTypeRel(double value,
FlowVolumeUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
static FlowVolume |
interpolate(FlowVolume zero,
FlowVolume one,
double ratio)
Interpolate between two values.
|
static FlowVolume |
max(FlowVolume r1,
FlowVolume r2)
Return the maximum value of two relative scalars.
|
static FlowVolume |
max(FlowVolume r1,
FlowVolume r2,
FlowVolume... rn)
Return the maximum value of more than two relative scalars.
|
static FlowVolume |
min(FlowVolume r1,
FlowVolume r2)
Return the minimum value of two relative scalars.
|
static FlowVolume |
min(FlowVolume r1,
FlowVolume r2,
FlowVolume... rn)
Return the minimum value of more than two relative scalars.
|
Volume |
multiplyBy(Duration v)
Calculate the multiplication of FlowVolume and Duration, which results in a Volume scalar.
|
abs, ceil, divideBy, floor, minus, multiplyBy, plus, rint, roundcompareTo, eq, ge, getSI, gt, le, lt, minus, ne, plusdivide, divide, doubleValue, equals, floatValue, getInUnit, getInUnit, hashCode, interpolate, interpolate, intValue, longValue, minus, minus, minus, multiply, multiply, plus, plus, plus, toString, toString, toString, toStringexpressAsSIUnit, expressAsSpecifiedUnit, getUnit, isAbsolute, isRelativebyteValue, shortValueclone, finalize, getClass, notify, notifyAll, wait, wait, waitDIV, MULT, POWpublic static final FlowVolume ZERO
public FlowVolume(double value,
FlowVolumeUnit unit)
value - double valueunit - unit for the double valuepublic FlowVolume(FlowVolume value)
value - Scalar from which to construct this instanceprotected final FlowVolume instantiateTypeRel(double value, FlowVolumeUnit unit)
instantiateTypeRel in class TypedDoubleScalarRel<FlowVolumeUnit,FlowVolume>value - the double valueunit - the unitpublic static FlowVolume interpolate(FlowVolume zero, FlowVolume one, double ratio)
zero - the low valueone - the high valueratio - the ratio between 0 and 1, inclusivepublic static FlowVolume max(FlowVolume r1, FlowVolume r2)
r1 - the first scalarr2 - the second scalarpublic static FlowVolume max(FlowVolume r1, FlowVolume r2, FlowVolume... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic static FlowVolume min(FlowVolume r1, FlowVolume r2)
r1 - the first scalarr2 - the second scalarpublic static FlowVolume min(FlowVolume r1, FlowVolume r2, FlowVolume... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic final Dimensionless divideBy(FlowVolume v)
v - FlowVolume scalarpublic final Volume multiplyBy(Duration v)
v - FlowVolume scalarpublic final Volume divideBy(Frequency v)
v - FlowVolume scalarpublic final Frequency divideBy(Volume v)
v - FlowVolume scalarpublic final Speed divideBy(Area v)
v - FlowVolume scalarCopyright © 2015–2016 Delft University of Technology. All rights reserved.