View Javadoc
1   package org.djunits.value.vfloat.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.DimensionlessUnit;
9   import org.djunits.unit.DurationUnit;
10  import org.djunits.unit.EnergyUnit;
11  import org.djunits.unit.ForceUnit;
12  import org.djunits.unit.LengthUnit;
13  import org.djunits.unit.MomentumUnit;
14  import org.djunits.unit.PowerUnit;
15  import org.djunits.unit.PressureUnit;
16  import org.djunits.unit.SpeedUnit;
17  import org.djunits.unit.VolumeUnit;
18  import org.djunits.value.util.ValueUtil;
19  import org.djunits.value.vfloat.scalar.base.AbstractFloatScalarRel;
20  import org.djunits.value.vfloat.scalar.base.FloatScalar;
21  
22  /**
23   * Easy access methods for the FloatEnergy FloatScalar, which is relative by definition.
24   * <p>
25   * Copyright (c) 2013-2022 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br>
26   * BSD-style license. See <a href="https://djunits.org/docs/license.html">DJUNITS License</a>.
27   * </p>
28   * @author <a href="https://www.tudelft.nl/averbraeck">Alexander Verbraeck</a>
29   * @author <a href="https://www.tudelft.nl/staff/p.knoppers/">Peter Knoppers</a>
30   */
31  @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2022-03-14T11:14:15.180987200Z")
32  public class FloatEnergy extends AbstractFloatScalarRel<EnergyUnit, FloatEnergy>
33  {
34      /** */
35      private static final long serialVersionUID = 20150901L;
36  
37      /** Constant with value zero. */
38      public static final FloatEnergylar/FloatEnergy.html#FloatEnergy">FloatEnergy ZERO = new FloatEnergy(0.0f, EnergyUnit.SI);
39  
40      /** Constant with value one. */
41      public static final FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy ONE = new FloatEnergy(1.0f, EnergyUnit.SI);
42  
43      /** Constant with value NaN. */
44      @SuppressWarnings("checkstyle:constantname")
45      public static final FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy NaN = new FloatEnergy(Float.NaN, EnergyUnit.SI);
46  
47      /** Constant with value POSITIVE_INFINITY. */
48      public static final FloatEnergygy.html#FloatEnergy">FloatEnergy POSITIVE_INFINITY = new FloatEnergy(Float.POSITIVE_INFINITY, EnergyUnit.SI);
49  
50      /** Constant with value NEGATIVE_INFINITY. */
51      public static final FloatEnergygy.html#FloatEnergy">FloatEnergy NEGATIVE_INFINITY = new FloatEnergy(Float.NEGATIVE_INFINITY, EnergyUnit.SI);
52  
53      /** Constant with value MAX_VALUE. */
54      public static final FloatEnergytEnergy.html#FloatEnergy">FloatEnergy POS_MAXVALUE = new FloatEnergy(Float.MAX_VALUE, EnergyUnit.SI);
55  
56      /** Constant with value -MAX_VALUE. */
57      public static final FloatEnergytEnergy.html#FloatEnergy">FloatEnergy NEG_MAXVALUE = new FloatEnergy(-Float.MAX_VALUE, EnergyUnit.SI);
58  
59      /**
60       * Construct FloatEnergy scalar.
61       * @param value float; the float value
62       * @param unit unit for the float value
63       */
64      public FloatEnergy(final float value, final EnergyUnit unit)
65      {
66          super(value, unit);
67      }
68  
69      /**
70       * Construct FloatEnergy scalar.
71       * @param value Scalar from which to construct this instance
72       */
73      public FloatEnergyt/scalar/FloatEnergy.html#FloatEnergy">FloatEnergy(final FloatEnergy value)
74      {
75          super(value);
76      }
77  
78      /**
79       * Construct FloatEnergy scalar using a double value.
80       * @param value double; the double value
81       * @param unit unit for the resulting float value
82       */
83      public FloatEnergy(final double value, final EnergyUnit unit)
84      {
85          super((float) value, unit);
86      }
87  
88      /** {@inheritDoc} */
89      @Override
90      public final FloatEnergy instantiateRel(final float value, final EnergyUnit unit)
91      {
92          return new FloatEnergy(value, unit);
93      }
94  
95      /**
96       * Construct FloatEnergy scalar.
97       * @param value float; the float value in SI units
98       * @return the new scalar with the SI value
99       */
100     public static final FloatEnergy instantiateSI(final float value)
101     {
102         return new FloatEnergy(value, EnergyUnit.SI);
103     }
104 
105     /**
106      * Interpolate between two values.
107      * @param zero the low value
108      * @param one the high value
109      * @param ratio double; the ratio between 0 and 1, inclusive
110      * @return a Scalar at the ratio between
111      */
112     public static FloatEnergyar/FloatEnergy.html#FloatEnergy">FloatEnergyatEnergy.html#FloatEnergy">FloatEnergy interpolate(final FloatEnergyar/FloatEnergy.html#FloatEnergy">FloatEnergy zero, final FloatEnergy one, final float ratio)
113     {
114         return new FloatEnergy(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getDisplayUnit()) * ratio,
115                 zero.getDisplayUnit());
116     }
117 
118     /**
119      * Return the maximum value of two relative scalars.
120      * @param r1 the first scalar
121      * @param r2 the second scalar
122      * @return the maximum value of two relative scalars
123      */
124     public static FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy max(final FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy r1, final FloatEnergy r2)
125     {
126         return r1.gt(r2) ? r1 : r2;
127     }
128 
129     /**
130      * Return the maximum value of more than two relative scalars.
131      * @param r1 the first scalar
132      * @param r2 the second scalar
133      * @param rn the other scalars
134      * @return the maximum value of more than two relative scalars
135      */
136     public static FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy max(final FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy r1, final FloatEnergy r2, final FloatEnergy... rn)
137     {
138         FloatEnergy maxr = r1.gt(r2) ? r1 : r2;
139         for (FloatEnergy 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 FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy min(final FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy r1, final FloatEnergy 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 FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy min(final FloatEnergyalar/FloatEnergy.html#FloatEnergy">FloatEnergy r1, final FloatEnergy r2, final FloatEnergy... rn)
168     {
169         FloatEnergy minr = r1.lt(r2) ? r1 : r2;
170         for (FloatEnergy r : rn)
171         {
172             if (r.lt(minr))
173             {
174                 minr = r;
175             }
176         }
177         return minr;
178     }
179 
180     /**
181      * Returns a FloatEnergy representation of a textual representation of a value with a unit. The String representation that
182      * can be parsed is the double value in the unit, followed by the official abbreviation of the unit. Spaces are allowed, but
183      * not required, between the value and the unit.
184      * @param text String; the textual representation to parse into a FloatEnergy
185      * @return FloatEnergy; the Scalar representation of the value in its unit
186      * @throws IllegalArgumentException when the text cannot be parsed
187      * @throws NullPointerException when the text argument is null
188      */
189     public static FloatEnergy valueOf(final String text)
190     {
191         Throw.whenNull(text, "Error parsing FloatEnergy: text to parse is null");
192         Throw.when(text.length() == 0, IllegalArgumentException.class, "Error parsing FloatEnergy: empty text to parse");
193         Matcher matcher = ValueUtil.NUMBER_PATTERN.matcher(text);
194         if (matcher.find())
195         {
196             int index = matcher.end();
197             String unitString = text.substring(index).trim();
198             String valueString = text.substring(0, index).trim();
199             EnergyUnit unit = EnergyUnit.BASE.getUnitByAbbreviation(unitString);
200             if (unit != null)
201             {
202                 float f = Float.parseFloat(valueString);
203                 return new FloatEnergy(f, unit);
204             }
205         }
206         throw new IllegalArgumentException("Error parsing FloatEnergy from " + text);
207     }
208 
209     /**
210      * Returns a FloatEnergy based on a value and the textual representation of the unit.
211      * @param value double; the value to use
212      * @param unitString String; the textual representation of the unit
213      * @return FloatEnergy; the Scalar representation of the value in its unit
214      * @throws IllegalArgumentException when the unit cannot be parsed or is incorrect
215      * @throws NullPointerException when the unitString argument is null
216      */
217     public static FloatEnergy of(final float value, final String unitString)
218     {
219         Throw.whenNull(unitString, "Error parsing FloatEnergy: unitString is null");
220         Throw.when(unitString.length() == 0, IllegalArgumentException.class, "Error parsing FloatEnergy: empty unitString");
221         EnergyUnit unit = EnergyUnit.BASE.getUnitByAbbreviation(unitString);
222         if (unit != null)
223         {
224             return new FloatEnergy(value, unit);
225         }
226         throw new IllegalArgumentException("Error parsing FloatEnergy with unit " + unitString);
227     }
228 
229     /**
230      * Calculate the division of FloatEnergy and FloatEnergy, which results in a FloatDimensionless scalar.
231      * @param v FloatEnergy; scalar
232      * @return FloatDimensionless; scalar as a division of FloatEnergy and FloatEnergy
233      */
234     public final FloatDimensionless divide(final FloatEnergy v)
235     {
236         return new FloatDimensionless(this.si / v.si, DimensionlessUnit.SI);
237     }
238 
239     /**
240      * Calculate the division of FloatEnergy and FloatForce, which results in a FloatLength scalar.
241      * @param v FloatEnergy; scalar
242      * @return FloatLength; scalar as a division of FloatEnergy and FloatForce
243      */
244     public final FloatLength divide(final FloatForce v)
245     {
246         return new FloatLength(this.si / v.si, LengthUnit.SI);
247     }
248 
249     /**
250      * Calculate the division of FloatEnergy and FloatLength, which results in a FloatForce scalar.
251      * @param v FloatEnergy; scalar
252      * @return FloatForce; scalar as a division of FloatEnergy and FloatLength
253      */
254     public final FloatForce divide(final FloatLength v)
255     {
256         return new FloatForce(this.si / v.si, ForceUnit.SI);
257     }
258 
259     /**
260      * Calculate the multiplication of FloatEnergy and FloatLinearDensity, which results in a FloatForce scalar.
261      * @param v FloatEnergy; scalar
262      * @return FloatForce; scalar as a multiplication of FloatEnergy and FloatLinearDensity
263      */
264     public final FloatForce times(final FloatLinearDensity v)
265     {
266         return new FloatForce(this.si * v.si, ForceUnit.SI);
267     }
268 
269     /**
270      * Calculate the division of FloatEnergy and FloatDuration, which results in a FloatPower scalar.
271      * @param v FloatEnergy; scalar
272      * @return FloatPower; scalar as a division of FloatEnergy and FloatDuration
273      */
274     public final FloatPower divide(final FloatDuration v)
275     {
276         return new FloatPower(this.si / v.si, PowerUnit.SI);
277     }
278 
279     /**
280      * Calculate the division of FloatEnergy and FloatPower, which results in a FloatDuration scalar.
281      * @param v FloatEnergy; scalar
282      * @return FloatDuration; scalar as a division of FloatEnergy and FloatPower
283      */
284     public final FloatDuration divide(final FloatPower v)
285     {
286         return new FloatDuration(this.si / v.si, DurationUnit.SI);
287     }
288 
289     /**
290      * Calculate the division of FloatEnergy and FloatVolume, which results in a FloatPressure scalar.
291      * @param v FloatEnergy; scalar
292      * @return FloatPressure; scalar as a division of FloatEnergy and FloatVolume
293      */
294     public final FloatPressure divide(final FloatVolume v)
295     {
296         return new FloatPressure(this.si / v.si, PressureUnit.SI);
297     }
298 
299     /**
300      * Calculate the division of FloatEnergy and FloatPressure, which results in a FloatVolume scalar.
301      * @param v FloatEnergy; scalar
302      * @return FloatVolume; scalar as a division of FloatEnergy and FloatPressure
303      */
304     public final FloatVolume divide(final FloatPressure v)
305     {
306         return new FloatVolume(this.si / v.si, VolumeUnit.SI);
307     }
308 
309     /**
310      * Calculate the multiplication of FloatEnergy and FloatFrequency, which results in a FloatPower scalar.
311      * @param v FloatEnergy; scalar
312      * @return FloatPower; scalar as a multiplication of FloatEnergy and FloatFrequency
313      */
314     public final FloatPower times(final FloatFrequency v)
315     {
316         return new FloatPower(this.si * v.si, PowerUnit.SI);
317     }
318 
319     /**
320      * Calculate the division of FloatEnergy and FloatSpeed, which results in a FloatMomentum scalar.
321      * @param v FloatEnergy; scalar
322      * @return FloatMomentum; scalar as a division of FloatEnergy and FloatSpeed
323      */
324     public final FloatMomentum divide(final FloatSpeed v)
325     {
326         return new FloatMomentum(this.si / v.si, MomentumUnit.SI);
327     }
328 
329     /**
330      * Calculate the division of FloatEnergy and FloatMomentum, which results in a FloatSpeed scalar.
331      * @param v FloatEnergy; scalar
332      * @return FloatSpeed; scalar as a division of FloatEnergy and FloatMomentum
333      */
334     public final FloatSpeed divide(final FloatMomentum v)
335     {
336         return new FloatSpeed(this.si / v.si, SpeedUnit.SI);
337     }
338 
339     /** {@inheritDoc} */
340     @Override
341     public FloatSIScalar reciprocal()
342     {
343         return FloatScalar.divide(FloatDimensionless.ONE, this);
344     }
345 
346 }