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