View Javadoc
1   package org.djunits.value.vdouble.scalar;
2   
3   import java.util.regex.Matcher;
4   
5   import javax.annotation.Generated;
6   
7   import org.djunits.Throw;
8   import org.djunits.unit.DensityUnit;
9   import org.djunits.unit.DimensionlessUnit;
10  import org.djunits.unit.FlowMassUnit;
11  import org.djunits.unit.FlowVolumeUnit;
12  import org.djunits.unit.ForceUnit;
13  import org.djunits.unit.FrequencyUnit;
14  import org.djunits.unit.MassUnit;
15  import org.djunits.value.util.ValueUtil;
16  import org.djunits.value.vdouble.scalar.base.AbstractDoubleScalarRel;
17  
18  /**
19   * Easy access methods for the FlowMass DoubleScalar, which is relative by definition.
20   * <p>
21   * Copyright (c) 2013-2019 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
22   * BSD-style license. See <a href="https://djunits.org/docs/license.html">DJUNITS License</a>.
23   * </p>
24   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
25   * @author <a href="https://www.tudelft.nl/staff/p.knoppers/">Peter Knoppers</a>
26   */
27  @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2019-10-18T12:12:25.568Z")
28  public class FlowMass extends AbstractDoubleScalarRel<FlowMassUnit, FlowMass>
29  {
30      /** */
31      private static final long serialVersionUID = 20150905L;
32  
33      /** Constant with value zero. */
34      public static final FlowMass/scalar/FlowMass.html#FlowMass">FlowMass ZERO = new FlowMass(0.0, FlowMassUnit.SI);
35  
36      /** Constant with value one. */
37      public static final FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass ONE = new FlowMass(1.0, FlowMassUnit.SI);
38  
39      /** Constant with value NaN. */
40      @SuppressWarnings("checkstyle:constantname")
41      public static final FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass NaN = new FlowMass(Double.NaN, FlowMassUnit.SI);
42  
43      /** Constant with value POSITIVE_INFINITY. */
44      public static final FlowMassass.html#FlowMass">FlowMass POSITIVE_INFINITY = new FlowMass(Double.POSITIVE_INFINITY, FlowMassUnit.SI);
45  
46      /** Constant with value NEGATIVE_INFINITY. */
47      public static final FlowMassass.html#FlowMass">FlowMass NEGATIVE_INFINITY = new FlowMass(Double.NEGATIVE_INFINITY, FlowMassUnit.SI);
48  
49      /** Constant with value MAX_VALUE. */
50      public static final FlowMassFlowMass.html#FlowMass">FlowMass POS_MAXVALUE = new FlowMass(Double.MAX_VALUE, FlowMassUnit.SI);
51  
52      /** Constant with value -MAX_VALUE. */
53      public static final FlowMassFlowMass.html#FlowMass">FlowMass NEG_MAXVALUE = new FlowMass(-Double.MAX_VALUE, FlowMassUnit.SI);
54  
55      /**
56       * Construct FlowMass scalar.
57       * @param value double; the double value
58       * @param unit FlowMassUnit; unit for the double value
59       */
60      public FlowMass(final double value, final FlowMassUnit unit)
61      {
62          super(value, unit);
63      }
64  
65      /**
66       * Construct FlowMass scalar.
67       * @param value FlowMass; Scalar from which to construct this instance
68       */
69      public FlowMassouble/scalar/FlowMass.html#FlowMass">FlowMass(final FlowMass value)
70      {
71          super(value);
72      }
73  
74      /** {@inheritDoc} */
75      @Override
76      public final FlowMass instantiateRel(final double value, final FlowMassUnit unit)
77      {
78          return new FlowMass(value, unit);
79      }
80  
81      /**
82       * Construct FlowMass scalar.
83       * @param value double; the double value in SI units
84       * @return FlowMass; the new scalar with the SI value
85       */
86      public static final FlowMass instantiateSI(final double value)
87      {
88          return new FlowMass(value, FlowMassUnit.SI);
89      }
90  
91      /**
92       * Interpolate between two values.
93       * @param zero FlowMass; the low value
94       * @param one FlowMass; the high value
95       * @param ratio double; the ratio between 0 and 1, inclusive
96       * @return FlowMass; a Scalar at the ratio between
97       */
98      public static FlowMassscalar/FlowMass.html#FlowMass">FlowMass/FlowMass.html#FlowMass">FlowMass interpolate(final FlowMassscalar/FlowMass.html#FlowMass">FlowMass zero, final FlowMass one, final double ratio)
99      {
100         return new FlowMass(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getDisplayUnit()) * ratio,
101                 zero.getDisplayUnit());
102     }
103 
104     /**
105      * Return the maximum value of two relative scalars.
106      * @param r1 FlowMass; the first scalar
107      * @param r2 FlowMass; the second scalar
108      * @return FlowMass; the maximum value of two relative scalars
109      */
110     public static FlowMasse/scalar/FlowMass.html#FlowMass">FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass max(final FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass r1, final FlowMass r2)
111     {
112         return (r1.gt(r2)) ? r1 : r2;
113     }
114 
115     /**
116      * Return the maximum value of more than two relative scalars.
117      * @param r1 FlowMass; the first scalar
118      * @param r2 FlowMass; the second scalar
119      * @param rn FlowMass...; the other scalars
120      * @return FlowMass; the maximum value of more than two relative scalars
121      */
122     public static FlowMasse/scalar/FlowMass.html#FlowMass">FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass max(final FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass r1, final FlowMass r2, final FlowMass... rn)
123     {
124         FlowMass maxr = (r1.gt(r2)) ? r1 : r2;
125         for (FlowMass r : rn)
126         {
127             if (r.gt(maxr))
128             {
129                 maxr = r;
130             }
131         }
132         return maxr;
133     }
134 
135     /**
136      * Return the minimum value of two relative scalars.
137      * @param r1 FlowMass; the first scalar
138      * @param r2 FlowMass; the second scalar
139      * @return FlowMass; the minimum value of two relative scalars
140      */
141     public static FlowMasse/scalar/FlowMass.html#FlowMass">FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass min(final FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass r1, final FlowMass r2)
142     {
143         return (r1.lt(r2)) ? r1 : r2;
144     }
145 
146     /**
147      * Return the minimum value of more than two relative scalars.
148      * @param r1 FlowMass; the first scalar
149      * @param r2 FlowMass; the second scalar
150      * @param rn FlowMass...; the other scalars
151      * @return FlowMass; the minimum value of more than two relative scalars
152      */
153     public static FlowMasse/scalar/FlowMass.html#FlowMass">FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass min(final FlowMasse/scalar/FlowMass.html#FlowMass">FlowMass r1, final FlowMass r2, final FlowMass... rn)
154     {
155         FlowMass minr = (r1.lt(r2)) ? r1 : r2;
156         for (FlowMass r : rn)
157         {
158             if (r.lt(minr))
159             {
160                 minr = r;
161             }
162         }
163         return minr;
164     }
165 
166     /**
167      * Returns a FlowMass representation of a textual representation of a value with a unit. The String representation that can
168      * be parsed is the double value in the unit, followed by the official abbreviation of the unit. Spaces are allowed, but not
169      * required, between the value and the unit.
170      * @param text String; the textual representation to parse into a FlowMass
171      * @return FlowMass; the Scalar representation of the value in its unit
172      * @throws IllegalArgumentException when the text cannot be parsed
173      * @throws NullPointerException when the text argument is null
174      */
175     public static FlowMass valueOf(final String text)
176     {
177         Throw.whenNull(text, "Error parsing FlowMass: text to parse is null");
178         Throw.when(text.length() == 0, IllegalArgumentException.class, "Error parsing FlowMass: empty text to parse");
179         Matcher matcher = ValueUtil.NUMBER_PATTERN.matcher(text);
180         if (matcher.find())
181         {
182             int index = matcher.end();
183             String unitString = text.substring(index).trim();
184             String valueString = text.substring(0, index).trim();
185             FlowMassUnit unit = FlowMassUnit.BASE.getUnitByAbbreviation(unitString);
186             if (unit != null)
187             {
188                 double d = Double.parseDouble(valueString);
189                 return new FlowMass(d, unit);
190             }
191         }
192         throw new IllegalArgumentException("Error parsing FlowMass from " + text);
193     }
194 
195     /**
196      * Returns a FlowMass based on a value and the textual representation of the unit.
197      * @param value double; the value to use
198      * @param unitString String; the textual representation of the unit
199      * @return FlowMass; the Scalar representation of the value in its unit
200      * @throws IllegalArgumentException when the unit cannot be parsed or is incorrect
201      * @throws NullPointerException when the unitString argument is null
202      */
203     public static FlowMass of(final double value, final String unitString)
204     {
205         Throw.whenNull(unitString, "Error parsing FlowMass: unitString is null");
206         Throw.when(unitString.length() == 0, IllegalArgumentException.class, "Error parsing FlowMass: empty unitString");
207         FlowMassUnit unit = FlowMassUnit.BASE.getUnitByAbbreviation(unitString);
208         if (unit != null)
209         {
210             return new FlowMass(value, unit);
211         }
212         throw new IllegalArgumentException("Error parsing FlowMass with unit " + unitString);
213     }
214 
215     /**
216      * Calculate the division of FlowMass and FlowMass, which results in a Dimensionless scalar.
217      * @param v FlowMass scalar
218      * @return Dimensionless scalar as a division of FlowMass and FlowMass
219      */
220     public final Dimensionless divide(final FlowMass v)
221     {
222         return new Dimensionless(this.si / v.si, DimensionlessUnit.SI);
223     }
224 
225     /**
226      * Calculate the multiplication of FlowMass and Duration, which results in a Mass scalar.
227      * @param v FlowMass scalar
228      * @return Mass scalar as a multiplication of FlowMass and Duration
229      */
230     public final Mass times(final Duration v)
231     {
232         return new Mass(this.si * v.si, MassUnit.SI);
233     }
234 
235     /**
236      * Calculate the division of FlowMass and Frequency, which results in a Mass scalar.
237      * @param v FlowMass scalar
238      * @return Mass scalar as a division of FlowMass and Frequency
239      */
240     public final Mass divide(final Frequency v)
241     {
242         return new Mass(this.si / v.si, MassUnit.SI);
243     }
244 
245     /**
246      * Calculate the division of FlowMass and Mass, which results in a Frequency scalar.
247      * @param v FlowMass scalar
248      * @return Frequency scalar as a division of FlowMass and Mass
249      */
250     public final Frequency divide(final Mass v)
251     {
252         return new Frequency(this.si / v.si, FrequencyUnit.SI);
253     }
254 
255     /**
256      * Calculate the multiplication of FlowMass and Speed, which results in a Force scalar.
257      * @param v FlowMass scalar
258      * @return Force scalar as a multiplication of FlowMass and Speed
259      */
260     public final Force times(final Speed v)
261     {
262         return new Force(this.si * v.si, ForceUnit.SI);
263     }
264 
265     /**
266      * Calculate the division of FlowMass and FlowVolume, which results in a Density scalar.
267      * @param v FlowMass scalar
268      * @return Density scalar as a division of FlowMass and FlowVolume
269      */
270     public final Density divide(final FlowVolume v)
271     {
272         return new Density(this.si / v.si, DensityUnit.SI);
273     }
274 
275     /**
276      * Calculate the division of FlowMass and Density, which results in a FlowVolume scalar.
277      * @param v FlowMass scalar
278      * @return FlowVolume scalar as a division of FlowMass and Density
279      */
280     public final FlowVolume divide(final Density v)
281     {
282         return new FlowVolume(this.si / v.si, FlowVolumeUnit.SI);
283     }
284 
285 }