public class Energy extends TypedDoubleScalarRel<EnergyUnit,Energy>
DoubleScalar.Rel<EnergyUnit> value = new DoubleScalar.Rel<EnergyUnit>(100.0, EnergyUnit.SI);we can now write:
Energy value = new Energy(100.0, EnergyUnit.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 Energy |
ZERO
constant with value zero.
|
si| Constructor and Description |
|---|
Energy(double value,
EnergyUnit unit)
Construct Energy scalar.
|
Energy(Energy value)
Construct Energy scalar.
|
| Modifier and Type | Method and Description |
|---|---|
Power |
divideBy(Duration v)
Calculate the division of Energy and Duration, which results in a Power scalar.
|
Dimensionless |
divideBy(Energy v)
Calculate the division of Energy and Energy, which results in a Dimensionless scalar.
|
Length |
divideBy(Force v)
Calculate the division of Energy and Force, which results in a Length scalar.
|
Force |
divideBy(Length v)
Calculate the division of Energy and Length, which results in a Force scalar.
|
Duration |
divideBy(Power v)
Calculate the division of Energy and Power, which results in a Duration scalar.
|
Pressure |
divideBy(Volume v)
Calculate the division of Energy and Volume, which results in a Pressure scalar.
|
protected Energy |
instantiateTypeRel(double value,
EnergyUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
static Energy |
interpolate(Energy zero,
Energy one,
double ratio)
Interpolate between two values.
|
static Energy |
max(Energy r1,
Energy r2)
Return the maximum value of two relative scalars.
|
static Energy |
max(Energy r1,
Energy r2,
Energy... rn)
Return the maximum value of more than two relative scalars.
|
static Energy |
min(Energy r1,
Energy r2)
Return the minimum value of two relative scalars.
|
static Energy |
min(Energy r1,
Energy r2,
Energy... rn)
Return the minimum value of more than two relative scalars.
|
Power |
multiplyBy(Frequency v)
Calculate the multiplication of Energy and Frequency, which results in a Power scalar.
|
Force |
multiplyBy(LinearDensity v)
Calculate the multiplication of Energy and LinearDensity, which results in a Force scalar.
|
Money |
multiplyBy(MoneyPerEnergy v)
Calculate the multiplication of Energy and MoneyPerEnergy, which results in a Money 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 Energy ZERO
public Energy(double value,
EnergyUnit unit)
value - double valueunit - unit for the double valuepublic Energy(Energy value)
value - Scalar from which to construct this instanceprotected final Energy instantiateTypeRel(double value, EnergyUnit unit)
instantiateTypeRel in class TypedDoubleScalarRel<EnergyUnit,Energy>value - the double valueunit - the unitpublic static Energy interpolate(Energy zero, Energy one, double ratio)
zero - the low valueone - the high valueratio - the ratio between 0 and 1, inclusivepublic static Energy max(Energy r1, Energy r2)
r1 - the first scalarr2 - the second scalarpublic static Energy max(Energy r1, Energy r2, Energy... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic static Energy min(Energy r1, Energy r2)
r1 - the first scalarr2 - the second scalarpublic static Energy min(Energy r1, Energy r2, Energy... rn)
r1 - the first scalarr2 - the second scalarrn - the other scalarspublic final Dimensionless divideBy(Energy v)
v - Energy scalarpublic final Length divideBy(Force v)
v - Energy scalarpublic final Force divideBy(Length v)
v - Energy scalarpublic final Force multiplyBy(LinearDensity v)
v - Energy scalarpublic final Power divideBy(Duration v)
v - Energy scalarpublic final Duration divideBy(Power v)
v - Energy scalarpublic final Pressure divideBy(Volume v)
v - Energy scalarpublic final Power multiplyBy(Frequency v)
v - Energy scalarpublic final Money multiplyBy(MoneyPerEnergy v)
v - Energy scalarCopyright © 2015–2016 Delft University of Technology. All rights reserved.