View Javadoc
1   package org.djunits.value.vfloat.scalar;
2   
3   import java.util.Locale;
4   
5   import org.djunits.unit.AmountOfSubstanceUnit;
6   import org.djunits.unit.CatalyticActivityUnit;
7   import org.djunits.unit.DimensionlessUnit;
8   import org.djunits.unit.DurationUnit;
9   import org.djunits.value.vfloat.scalar.base.FloatScalarRel;
10  import org.djutils.base.NumberParser;
11  import org.djutils.exceptions.Throw;
12  
13  import jakarta.annotation.Generated;
14  
15  /**
16   * Easy access methods for the FloatAmountOfSubstance FloatScalar, which is relative by definition.
17   * <p>
18   * Copyright (c) 2013-2025 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
19   * BSD-style license. See <a href="https://djunits.org/docs/license.html">DJUNITS License</a>.
20   * </p>
21   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
22   * @author <a href="https://www.tudelft.nl/staff/p.knoppers/">Peter Knoppers</a>
23   */
24  @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2025-09-06T15:16:28.380798Z")
25  public class FloatAmountOfSubstance extends FloatScalarRel<AmountOfSubstanceUnit, FloatAmountOfSubstance>
26  {
27      /** */
28      private static final long serialVersionUID = 20150901L;
29  
30      /** Constant with value zero. */
31      public static final FloatAmountOfSubstance ZERO = new FloatAmountOfSubstance(0.0f, AmountOfSubstanceUnit.SI);
32  
33      /** Constant with value one. */
34      public static final FloatAmountOfSubstance ONE = new FloatAmountOfSubstance(1.0f, AmountOfSubstanceUnit.SI);
35  
36      /** Constant with value NaN. */
37      @SuppressWarnings("checkstyle:constantname")
38      public static final FloatAmountOfSubstance NaN = new FloatAmountOfSubstance(Float.NaN, AmountOfSubstanceUnit.SI);
39  
40      /** Constant with value POSITIVE_INFINITY. */
41      public static final FloatAmountOfSubstance POSITIVE_INFINITY =
42              new FloatAmountOfSubstance(Float.POSITIVE_INFINITY, AmountOfSubstanceUnit.SI);
43  
44      /** Constant with value NEGATIVE_INFINITY. */
45      public static final FloatAmountOfSubstance NEGATIVE_INFINITY =
46              new FloatAmountOfSubstance(Float.NEGATIVE_INFINITY, AmountOfSubstanceUnit.SI);
47  
48      /** Constant with value MAX_VALUE. */
49      public static final FloatAmountOfSubstance POS_MAXVALUE =
50              new FloatAmountOfSubstance(Float.MAX_VALUE, AmountOfSubstanceUnit.SI);
51  
52      /** Constant with value -MAX_VALUE. */
53      public static final FloatAmountOfSubstance NEG_MAXVALUE =
54              new FloatAmountOfSubstance(-Float.MAX_VALUE, AmountOfSubstanceUnit.SI);
55  
56      /**
57       * Construct FloatAmountOfSubstance scalar with a unit.
58       * @param value the float value, expressed in the given unit
59       * @param unit unit for the float value
60       */
61      public FloatAmountOfSubstance(final float value, final AmountOfSubstanceUnit unit)
62      {
63          super(value, unit);
64      }
65  
66      /**
67       * Construct FloatAmountOfSubstance scalar.
68       * @param value Scalar from which to construct this instance
69       */
70      public FloatAmountOfSubstance(final FloatAmountOfSubstance value)
71      {
72          super(value);
73      }
74  
75      /**
76       * Construct FloatAmountOfSubstance scalar with a unit using a double value.
77       * @param value the double value, expressed in the given unit
78       * @param unit unit for the resulting float value
79       */
80      public FloatAmountOfSubstance(final double value, final AmountOfSubstanceUnit unit)
81      {
82          super((float) value, unit);
83      }
84  
85      @Override
86      public final FloatAmountOfSubstance instantiateRel(final float value, final AmountOfSubstanceUnit unit)
87      {
88          return new FloatAmountOfSubstance(value, unit);
89      }
90  
91      /**
92       * Construct FloatAmountOfSubstance scalar based on an SI value.
93       * @param value the float value in SI units
94       * @return the new scalar with the SI value
95       */
96      public static final FloatAmountOfSubstance ofSI(final float value)
97      {
98          return new FloatAmountOfSubstance(value, AmountOfSubstanceUnit.SI);
99      }
100 
101     /**
102      * Interpolate between two values. Note that the first value does not have to be smaller than the second.
103      * @param zero the value at a ratio of zero
104      * @param one the value at a ratio of one
105      * @param ratio the ratio between 0 and 1, inclusive
106      * @return a FloatAmountOfSubstance at the given ratio between 0 and 1
107      */
108     public static FloatAmountOfSubstance interpolate(final FloatAmountOfSubstance zero, final FloatAmountOfSubstance one,
109             final float ratio)
110     {
111         Throw.when(ratio < 0.0 || ratio > 1.0, IllegalArgumentException.class,
112                 "ratio for interpolation should be between 0 and 1, but is %f", ratio);
113         return new FloatAmountOfSubstance(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getDisplayUnit()) * ratio,
114                 zero.getDisplayUnit());
115     }
116 
117     /**
118      * Return the maximum value of two relative scalars.
119      * @param r1 the first scalar
120      * @param r2 the second scalar
121      * @return the maximum value of two relative scalars
122      */
123     public static FloatAmountOfSubstance max(final FloatAmountOfSubstance r1, final FloatAmountOfSubstance r2)
124     {
125         return r1.gt(r2) ? r1 : r2;
126     }
127 
128     /**
129      * Return the maximum value of more than two relative scalars.
130      * @param r1 the first scalar
131      * @param r2 the second scalar
132      * @param rn the other scalars
133      * @return the maximum value of more than two relative scalars
134      */
135     public static FloatAmountOfSubstance max(final FloatAmountOfSubstance r1, final FloatAmountOfSubstance r2,
136             final FloatAmountOfSubstance... rn)
137     {
138         FloatAmountOfSubstance maxr = r1.gt(r2) ? r1 : r2;
139         for (FloatAmountOfSubstance r : rn)
140         {
141             if (r.gt(maxr))
142             {
143                 maxr = r;
144             }
145         }
146         return maxr;
147     }
148 
149     /**
150      * Return the minimum value of two relative scalars.
151      * @param r1 the first scalar
152      * @param r2 the second scalar
153      * @return the minimum value of two relative scalars
154      */
155     public static FloatAmountOfSubstance min(final FloatAmountOfSubstance r1, final FloatAmountOfSubstance r2)
156     {
157         return r1.lt(r2) ? r1 : r2;
158     }
159 
160     /**
161      * Return the minimum value of more than two relative scalars.
162      * @param r1 the first scalar
163      * @param r2 the second scalar
164      * @param rn the other scalars
165      * @return the minimum value of more than two relative scalars
166      */
167     public static FloatAmountOfSubstance min(final FloatAmountOfSubstance r1, final FloatAmountOfSubstance r2,
168             final FloatAmountOfSubstance... rn)
169     {
170         FloatAmountOfSubstance minr = r1.lt(r2) ? r1 : r2;
171         for (FloatAmountOfSubstance r : rn)
172         {
173             if (r.lt(minr))
174             {
175                 minr = r;
176             }
177         }
178         return minr;
179     }
180 
181     /**
182      * Returns a FloatAmountOfSubstance representation of a textual representation of a value with a unit. The String
183      * representation that can be parsed is the double value in the unit, followed by a localized or English abbreviation of the
184      * unit. Spaces are allowed, but not required, between the value and the unit.
185      * @param text the textual representation to parse into a FloatAmountOfSubstance
186      * @return the Scalar representation of the value in its unit
187      * @throws IllegalArgumentException when the text cannot be parsed
188      * @throws NullPointerException when the text argument is null
189      */
190     public static FloatAmountOfSubstance valueOf(final String text)
191     {
192         Throw.whenNull(text, "Error parsing FloatAmountOfSubstance: text to parse is null");
193         Throw.when(text.length() == 0, IllegalArgumentException.class,
194                 "Error parsing FloatAmountOfSubstance: empty text to parse");
195         try
196         {
197             NumberParser numberParser = new NumberParser().lenient().trailing();
198             float f = numberParser.parseFloat(text);
199             String unitString = text.substring(numberParser.getTrailingPosition()).trim();
200             AmountOfSubstanceUnit unit = AmountOfSubstanceUnit.BASE.getUnitByAbbreviation(unitString);
201             Throw.when(unit == null, IllegalArgumentException.class, "Unit %s not found for quantity AmountOfSubstance",
202                     unitString);
203             return new FloatAmountOfSubstance(f, unit);
204         }
205         catch (Exception exception)
206         {
207             throw new IllegalArgumentException("Error parsing FloatAmountOfSubstance from " + text + " using Locale "
208                     + Locale.getDefault(Locale.Category.FORMAT), exception);
209         }
210     }
211 
212     /**
213      * Returns a FloatAmountOfSubstance based on a value and the textual representation of the unit, which can be localized.
214      * @param value the value to use
215      * @param unitString the textual representation of the unit
216      * @return the Scalar representation of the value in its unit
217      * @throws IllegalArgumentException when the unit cannot be parsed or is incorrect
218      * @throws NullPointerException when the unitString argument is null
219      */
220     public static FloatAmountOfSubstance of(final float value, final String unitString)
221     {
222         Throw.whenNull(unitString, "Error parsing FloatAmountOfSubstance: unitString is null");
223         Throw.when(unitString.length() == 0, IllegalArgumentException.class,
224                 "Error parsing FloatAmountOfSubstance: empty unitString");
225         AmountOfSubstanceUnit unit = AmountOfSubstanceUnit.BASE.getUnitByAbbreviation(unitString);
226         Throw.when(unit == null, IllegalArgumentException.class, "Error parsing FloatAmountOfSubstance with unit %s",
227                 unitString);
228         return new FloatAmountOfSubstance(value, unit);
229     }
230 
231     /**
232      * Calculate the division of FloatAmountOfSubstance and FloatAmountOfSubstance, which results in a FloatDimensionless
233      * scalar.
234      * @param v scalar
235      * @return scalar as a division of FloatAmountOfSubstance and FloatAmountOfSubstance
236      */
237     public final FloatDimensionless divide(final FloatAmountOfSubstance v)
238     {
239         return new FloatDimensionless(this.si / v.si, DimensionlessUnit.SI);
240     }
241 
242     /**
243      * Calculate the division of FloatAmountOfSubstance and FloatCatalyticActivity, which results in a FloatDuration scalar.
244      * @param v scalar
245      * @return scalar as a division of FloatAmountOfSubstance and FloatCatalyticActivity
246      */
247     public final FloatDuration divide(final FloatCatalyticActivity v)
248     {
249         return new FloatDuration(this.si / v.si, DurationUnit.SI);
250     }
251 
252     /**
253      * Calculate the division of FloatAmountOfSubstance and FloatDuration, which results in a FloatCatalyticActivity scalar.
254      * @param v scalar
255      * @return scalar as a division of FloatAmountOfSubstance and FloatDuration
256      */
257     public final FloatCatalyticActivity divide(final FloatDuration v)
258     {
259         return new FloatCatalyticActivity(this.si / v.si, CatalyticActivityUnit.SI);
260     }
261 
262     @Override
263     public FloatSIScalar reciprocal()
264     {
265         return FloatSIScalar.divide(FloatDimensionless.ONE, this);
266     }
267 
268     /**
269      * Multiply two scalars that result in a scalar of type FloatAmountOfSubstance.
270      * @param scalar1 the first scalar
271      * @param scalar2 the second scalar
272      * @return the multiplication of both scalars as an instance of FloatAmountOfSubstance
273      */
274     public static FloatAmountOfSubstance multiply(final FloatScalarRel<?, ?> scalar1, final FloatScalarRel<?, ?> scalar2)
275     {
276         Throw.whenNull(scalar1, "scalar1 cannot be null");
277         Throw.whenNull(scalar2, "scalar2 cannot be null");
278         Throw.when(
279                 !scalar1.getDisplayUnit().getQuantity().getSiDimensions()
280                         .plus(scalar2.getDisplayUnit().getQuantity().getSiDimensions())
281                         .equals(AmountOfSubstanceUnit.BASE.getSiDimensions()),
282                 IllegalArgumentException.class,
283                 "Multiplying %s by %s does not result in instance of type FloatAmountOfSubstance", scalar1.toDisplayString(),
284                 scalar2.toDisplayString());
285         return new FloatAmountOfSubstance(scalar1.si * scalar2.si, AmountOfSubstanceUnit.SI);
286     }
287 
288     /**
289      * Divide two scalars that result in a scalar of type FloatAmountOfSubstance.
290      * @param scalar1 the first scalar
291      * @param scalar2 the second scalar
292      * @return the division of scalar1 by scalar2 as an instance of FloatAmountOfSubstance
293      */
294     public static FloatAmountOfSubstance divide(final FloatScalarRel<?, ?> scalar1, final FloatScalarRel<?, ?> scalar2)
295     {
296         Throw.whenNull(scalar1, "scalar1 cannot be null");
297         Throw.whenNull(scalar2, "scalar2 cannot be null");
298         Throw.when(
299                 !scalar1.getDisplayUnit().getQuantity().getSiDimensions()
300                         .minus(scalar2.getDisplayUnit().getQuantity().getSiDimensions())
301                         .equals(AmountOfSubstanceUnit.BASE.getSiDimensions()),
302                 IllegalArgumentException.class,
303                 "Dividing %s by %s does not result in an instance of type FloatAmountOfSubstance", scalar1.toDisplayString(),
304                 scalar2.toDisplayString());
305         return new FloatAmountOfSubstance(scalar1.si / scalar2.si, AmountOfSubstanceUnit.SI);
306     }
307 
308 }