Package | Description |
---|---|
org.djunits.value.vdouble.matrix |
Double Matrix storage and calculations with units, absolute/relative, sparse/dense.
|
org.djunits.value.vdouble.scalar |
Double Scalar storage and calculations with units, absolute/relative.
|
org.djunits.value.vdouble.vector |
Double Vector storage and calculations with units, absolute/relative, sparse/dense.
|
Modifier and Type | Method and Description |
---|---|
protected Area |
MutableAreaMatrix.instantiateScalar(double value,
AreaUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
protected Area |
AreaMatrix.instantiateScalar(double value,
AreaUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
Constructor and Description |
---|
AreaMatrix(Area[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AreaMatrix.
|
MutableAreaMatrix(Area[][] values,
StorageType storageType)
Construct a new Relative Immutable Double AreaMatrix.
|
Modifier and Type | Field and Description |
---|---|
static Area |
Area.NaN
constant with value NaN.
|
static Area |
Area.NEG_MAXVALUE
constant with value -MAX_VALUE.
|
static Area |
Area.NEGATIVE_INFINITY
constant with value NEGATIVE_INFINITY.
|
static Area |
Area.POS_MAXVALUE
constant with value MAX_VALUE.
|
static Area |
Area.POSITIVE_INFINITY
constant with value POSITIVE_INFINITY.
|
static Area |
Area.ZERO
constant with value zero.
|
Modifier and Type | Method and Description |
---|---|
static Area |
Area.createSI(double value)
Construct Area scalar.
|
Area |
Volume.divideBy(Length v)
Calculate the division of Volume and Length, which results in a Area scalar.
|
Area |
Length.divideBy(LinearDensity v)
Calculate the division of Length and LinearDensity, which results in a Area scalar.
|
Area |
Force.divideBy(Pressure v)
Calculate the division of Force and Pressure, which results in a Area scalar.
|
Area |
FlowVolume.divideBy(Speed v)
Calculate the division of FlowVolume and Speed, which results in a Area scalar.
|
Area |
Area.instantiateRel(double value,
AreaUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
static Area |
Area.interpolate(Area zero,
Area one,
double ratio)
Interpolate between two values.
|
static Area |
Area.max(Area r1,
Area r2)
Return the maximum value of two relative scalars.
|
static Area |
Area.max(Area r1,
Area r2,
Area... rn)
Return the maximum value of more than two relative scalars.
|
static Area |
Area.min(Area r1,
Area r2)
Return the minimum value of two relative scalars.
|
static Area |
Area.min(Area r1,
Area r2,
Area... rn)
Return the minimum value of more than two relative scalars.
|
Area |
Dimensionless.multiplyBy(Area v)
Calculate the multiplication of Dimensionless and Area, which results in a Area scalar.
|
Area |
Length.multiplyBy(Length v)
Calculate the multiplication of Length and Length, which results in a Area scalar.
|
Area |
Volume.multiplyBy(LinearDensity v)
Calculate the multiplication of Volume and LinearDensity, which results in a Area scalar.
|
static Area |
Area.valueOf(String text)
Returns a Area representation of a textual representation of a value with a unit.
|
Modifier and Type | Method and Description |
---|---|
Length |
Volume.divideBy(Area v)
Calculate the division of Volume and Area, which results in a Length scalar.
|
MoneyPerArea |
Money.divideBy(Area v)
Calculate the division of Money and Area, which results in a MoneyPerArea scalar.
|
LinearDensity |
Length.divideBy(Area v)
Calculate the division of Length and Area, which results in a LinearDensity scalar.
|
Pressure |
Force.divideBy(Area v)
Calculate the division of Force and Area, which results in a Pressure scalar.
|
Speed |
FlowVolume.divideBy(Area v)
Calculate the division of FlowVolume and Area, which results in a Speed scalar.
|
Dimensionless |
Area.divideBy(Area v)
Calculate the division of Area and Area, which results in a Dimensionless scalar.
|
static Area |
Area.interpolate(Area zero,
Area one,
double ratio)
Interpolate between two values.
|
static Area |
Area.max(Area r1,
Area r2)
Return the maximum value of two relative scalars.
|
static Area |
Area.max(Area r1,
Area r2,
Area... rn)
Return the maximum value of more than two relative scalars.
|
static Area |
Area.max(Area r1,
Area r2,
Area... rn)
Return the maximum value of more than two relative scalars.
|
static Area |
Area.min(Area r1,
Area r2)
Return the minimum value of two relative scalars.
|
static Area |
Area.min(Area r1,
Area r2,
Area... rn)
Return the minimum value of more than two relative scalars.
|
static Area |
Area.min(Area r1,
Area r2,
Area... rn)
Return the minimum value of more than two relative scalars.
|
FlowVolume |
Speed.multiplyBy(Area v)
Calculate the multiplication of Speed and Area, which results in a FlowVolume scalar.
|
Force |
Pressure.multiplyBy(Area v)
Calculate the multiplication of Pressure and Area, which results in a Force scalar.
|
Money |
MoneyPerArea.multiplyBy(Area v)
Calculate the multiplication of MoneyPerArea and Area, which results in a Money scalar.
|
Length |
LinearDensity.multiplyBy(Area v)
Calculate the multiplication of LinearDensity and Area, which results in a Length scalar.
|
Volume |
Length.multiplyBy(Area v)
Calculate the multiplication of Length and Area, which results in a Volume scalar.
|
Area |
Dimensionless.multiplyBy(Area v)
Calculate the multiplication of Dimensionless and Area, which results in a Area scalar.
|
Constructor and Description |
---|
Area(Area value)
Construct Area scalar.
|
Modifier and Type | Method and Description |
---|---|
protected Area |
MutableAreaVector.instantiateScalar(double value,
AreaUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
protected Area |
AreaVector.instantiateScalar(double value,
AreaUnit unit)
Construct a new Relative Immutable DoubleScalar of the right type.
|
Area[] |
MutableAreaVector.toArray()
Return an array of Area Scalars from this vector.
|
Area[] |
AreaVector.toArray()
Return an array of Area Scalars from this vector.
|
Constructor and Description |
---|
AreaVector(Area[] values,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableAreaVector(Area[] values,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
Constructor and Description |
---|
AreaVector(List<Area> values,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
AreaVector(SortedMap<Integer,Area> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableAreaVector(List<Area> values,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
MutableAreaVector(SortedMap<Integer,Area> values,
int length,
StorageType storageType)
Construct a new Relative Immutable Double AreaVector.
|
Copyright © 2015–2019 Delft University of Technology. All rights reserved.