View Javadoc
1   package org.djunits.value.vdouble.scalar;
2   
3   import java.util.Locale;
4   
5   import org.djunits.unit.DensityUnit;
6   import org.djunits.unit.DimensionlessUnit;
7   import org.djunits.unit.FlowMassUnit;
8   import org.djunits.unit.FlowVolumeUnit;
9   import org.djunits.unit.ForceUnit;
10  import org.djunits.unit.FrequencyUnit;
11  import org.djunits.unit.MassUnit;
12  import org.djunits.unit.MomentumUnit;
13  import org.djunits.value.vdouble.scalar.base.DoubleScalar;
14  import org.djunits.value.vdouble.scalar.base.DoubleScalarRel;
15  import org.djutils.base.NumberParser;
16  import org.djutils.exceptions.Throw;
17  
18  import jakarta.annotation.Generated;
19  
20  /**
21   * Easy access methods for the FlowMass DoubleScalar, which is relative by definition.
22   * <p>
23   * Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
24   * BSD-style license. See <a href="https://djunits.org/docs/license.html">DJUNITS License</a>.
25   * </p>
26   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
27   * @author <a href="https://www.tudelft.nl/staff/p.knoppers/">Peter Knoppers</a>
28   */
29  @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2023-07-23T14:06:38.224104100Z")
30  public class FlowMass extends DoubleScalarRel<FlowMassUnit, FlowMass>
31  {
32      /** */
33      private static final long serialVersionUID = 20150905L;
34  
35      /** Constant with value zero. */
36      public static final FlowMass ZERO = new FlowMass(0.0, FlowMassUnit.SI);
37  
38      /** Constant with value one. */
39      public static final FlowMass ONE = new FlowMass(1.0, FlowMassUnit.SI);
40  
41      /** Constant with value NaN. */
42      @SuppressWarnings("checkstyle:constantname")
43      public static final FlowMass NaN = new FlowMass(Double.NaN, FlowMassUnit.SI);
44  
45      /** Constant with value POSITIVE_INFINITY. */
46      public static final FlowMass POSITIVE_INFINITY = new FlowMass(Double.POSITIVE_INFINITY, FlowMassUnit.SI);
47  
48      /** Constant with value NEGATIVE_INFINITY. */
49      public static final FlowMass NEGATIVE_INFINITY = new FlowMass(Double.NEGATIVE_INFINITY, FlowMassUnit.SI);
50  
51      /** Constant with value MAX_VALUE. */
52      public static final FlowMass POS_MAXVALUE = new FlowMass(Double.MAX_VALUE, FlowMassUnit.SI);
53  
54      /** Constant with value -MAX_VALUE. */
55      public static final FlowMass NEG_MAXVALUE = new FlowMass(-Double.MAX_VALUE, FlowMassUnit.SI);
56  
57      /**
58       * Construct FlowMass scalar.
59       * @param value double; the double value
60       * @param unit FlowMassUnit; unit for the double value
61       */
62      public FlowMass(final double value, final FlowMassUnit unit)
63      {
64          super(value, unit);
65      }
66  
67      /**
68       * Construct FlowMass scalar.
69       * @param value FlowMass; Scalar from which to construct this instance
70       */
71      public FlowMass(final FlowMass value)
72      {
73          super(value);
74      }
75  
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 FlowMass interpolate(final 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 FlowMass max(final 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 FlowMass max(final 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 FlowMass min(final 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 FlowMass min(final 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 a localized or English abbreviation of the unit. Spaces are
170      * allowed, but not 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         try
181         {
182             NumberParser numberParser = new NumberParser().lenient().trailing();
183             double d = numberParser.parseDouble(text);
184             String unitString = text.substring(numberParser.getTrailingPosition()).trim();
185             FlowMassUnit unit = FlowMassUnit.BASE.getUnitByAbbreviation(unitString);
186             if (unit == null)
187                 throw new IllegalArgumentException("Unit " + unitString + " not found");
188             return new FlowMass(d, unit);
189         }
190         catch (Exception exception)
191         {
192             throw new IllegalArgumentException(
193                     "Error parsing FlowMass from " + text + " using Locale " + Locale.getDefault(Locale.Category.FORMAT),
194                     exception);
195         }
196     }
197 
198     /**
199      * Returns a FlowMass based on a value and the textual representation of the unit, which can be localized.
200      * @param value double; the value to use
201      * @param unitString String; the textual representation of the unit
202      * @return FlowMass; the Scalar representation of the value in its unit
203      * @throws IllegalArgumentException when the unit cannot be parsed or is incorrect
204      * @throws NullPointerException when the unitString argument is null
205      */
206     public static FlowMass of(final double value, final String unitString)
207     {
208         Throw.whenNull(unitString, "Error parsing FlowMass: unitString is null");
209         Throw.when(unitString.length() == 0, IllegalArgumentException.class, "Error parsing FlowMass: empty unitString");
210         FlowMassUnit unit = FlowMassUnit.BASE.getUnitByAbbreviation(unitString);
211         if (unit != null)
212         {
213             return new FlowMass(value, unit);
214         }
215         throw new IllegalArgumentException("Error parsing FlowMass with unit " + unitString);
216     }
217 
218     /**
219      * Calculate the division of FlowMass and FlowMass, which results in a Dimensionless scalar.
220      * @param v FlowMass; scalar
221      * @return Dimensionless; scalar as a division of FlowMass and FlowMass
222      */
223     public final Dimensionless divide(final FlowMass v)
224     {
225         return new Dimensionless(this.si / v.si, DimensionlessUnit.SI);
226     }
227 
228     /**
229      * Calculate the multiplication of FlowMass and Duration, which results in a Mass scalar.
230      * @param v FlowMass; scalar
231      * @return Mass; scalar as a multiplication of FlowMass and Duration
232      */
233     public final Mass times(final Duration v)
234     {
235         return new Mass(this.si * v.si, MassUnit.SI);
236     }
237 
238     /**
239      * Calculate the division of FlowMass and Frequency, which results in a Mass scalar.
240      * @param v FlowMass; scalar
241      * @return Mass; scalar as a division of FlowMass and Frequency
242      */
243     public final Mass divide(final Frequency v)
244     {
245         return new Mass(this.si / v.si, MassUnit.SI);
246     }
247 
248     /**
249      * Calculate the division of FlowMass and Mass, which results in a Frequency scalar.
250      * @param v FlowMass; scalar
251      * @return Frequency; scalar as a division of FlowMass and Mass
252      */
253     public final Frequency divide(final Mass v)
254     {
255         return new Frequency(this.si / v.si, FrequencyUnit.SI);
256     }
257 
258     /**
259      * Calculate the multiplication of FlowMass and Speed, which results in a Force scalar.
260      * @param v FlowMass; scalar
261      * @return Force; scalar as a multiplication of FlowMass and Speed
262      */
263     public final Force times(final Speed v)
264     {
265         return new Force(this.si * v.si, ForceUnit.SI);
266     }
267 
268     /**
269      * Calculate the division of FlowMass and FlowVolume, which results in a Density scalar.
270      * @param v FlowMass; scalar
271      * @return Density; scalar as a division of FlowMass and FlowVolume
272      */
273     public final Density divide(final FlowVolume v)
274     {
275         return new Density(this.si / v.si, DensityUnit.SI);
276     }
277 
278     /**
279      * Calculate the division of FlowMass and Density, which results in a FlowVolume scalar.
280      * @param v FlowMass; scalar
281      * @return FlowVolume; scalar as a division of FlowMass and Density
282      */
283     public final FlowVolume divide(final Density v)
284     {
285         return new FlowVolume(this.si / v.si, FlowVolumeUnit.SI);
286     }
287 
288     /**
289      * Calculate the multiplication of FlowMass and Length, which results in a Momentum scalar.
290      * @param v FlowMass; scalar
291      * @return Momentum; scalar as a multiplication of FlowMass and Length
292      */
293     public final Momentum times(final Length v)
294     {
295         return new Momentum(this.si * v.si, MomentumUnit.SI);
296     }
297 
298     @Override
299     public SIScalar reciprocal()
300     {
301         return DoubleScalar.divide(Dimensionless.ONE, this);
302     }
303 
304 }