View Javadoc
1   package org.djunits.value.vfloat.scalar;
2   
3   import java.util.Locale;
4   
5   import org.djunits.unit.DimensionlessUnit;
6   import org.djunits.unit.DurationUnit;
7   import org.djunits.unit.ElectricalCapacitanceUnit;
8   import org.djunits.unit.ElectricalChargeUnit;
9   import org.djunits.unit.ElectricalCurrentUnit;
10  import org.djunits.unit.ElectricalPotentialUnit;
11  import org.djunits.value.vfloat.scalar.base.FloatScalar;
12  import org.djunits.value.vfloat.scalar.base.FloatScalarRel;
13  import org.djutils.base.NumberParser;
14  import org.djutils.exceptions.Throw;
15  
16  import jakarta.annotation.Generated;
17  
18  /**
19   * Easy access methods for the FloatElectricalCharge FloatScalar, which is relative by definition.
20   * <p>
21   * Copyright (c) 2013-2024 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 = "2023-07-23T14:06:38.224104100Z")
28  public class FloatElectricalCharge extends FloatScalarRel<ElectricalChargeUnit, FloatElectricalCharge>
29  {
30      /** */
31      private static final long serialVersionUID = 20150901L;
32  
33      /** Constant with value zero. */
34      public static final FloatElectricalCharge ZERO = new FloatElectricalCharge(0.0f, ElectricalChargeUnit.SI);
35  
36      /** Constant with value one. */
37      public static final FloatElectricalCharge ONE = new FloatElectricalCharge(1.0f, ElectricalChargeUnit.SI);
38  
39      /** Constant with value NaN. */
40      @SuppressWarnings("checkstyle:constantname")
41      public static final FloatElectricalCharge NaN = new FloatElectricalCharge(Float.NaN, ElectricalChargeUnit.SI);
42  
43      /** Constant with value POSITIVE_INFINITY. */
44      public static final FloatElectricalCharge POSITIVE_INFINITY =
45              new FloatElectricalCharge(Float.POSITIVE_INFINITY, ElectricalChargeUnit.SI);
46  
47      /** Constant with value NEGATIVE_INFINITY. */
48      public static final FloatElectricalCharge NEGATIVE_INFINITY =
49              new FloatElectricalCharge(Float.NEGATIVE_INFINITY, ElectricalChargeUnit.SI);
50  
51      /** Constant with value MAX_VALUE. */
52      public static final FloatElectricalCharge POS_MAXVALUE =
53              new FloatElectricalCharge(Float.MAX_VALUE, ElectricalChargeUnit.SI);
54  
55      /** Constant with value -MAX_VALUE. */
56      public static final FloatElectricalCharge NEG_MAXVALUE =
57              new FloatElectricalCharge(-Float.MAX_VALUE, ElectricalChargeUnit.SI);
58  
59      /**
60       * Construct FloatElectricalCharge scalar.
61       * @param value float; the float value
62       * @param unit unit for the float value
63       */
64      public FloatElectricalCharge(final float value, final ElectricalChargeUnit unit)
65      {
66          super(value, unit);
67      }
68  
69      /**
70       * Construct FloatElectricalCharge scalar.
71       * @param value Scalar from which to construct this instance
72       */
73      public FloatElectricalCharge(final FloatElectricalCharge value)
74      {
75          super(value);
76      }
77  
78      /**
79       * Construct FloatElectricalCharge scalar using a double value.
80       * @param value double; the double value
81       * @param unit unit for the resulting float value
82       */
83      public FloatElectricalCharge(final double value, final ElectricalChargeUnit unit)
84      {
85          super((float) value, unit);
86      }
87  
88      @Override
89      public final FloatElectricalCharge instantiateRel(final float value, final ElectricalChargeUnit unit)
90      {
91          return new FloatElectricalCharge(value, unit);
92      }
93  
94      /**
95       * Construct FloatElectricalCharge scalar.
96       * @param value float; the float value in SI units
97       * @return the new scalar with the SI value
98       */
99      public static final FloatElectricalCharge instantiateSI(final float value)
100     {
101         return new FloatElectricalCharge(value, ElectricalChargeUnit.SI);
102     }
103 
104     /**
105      * Interpolate between two values.
106      * @param zero the low value
107      * @param one the high value
108      * @param ratio double; the ratio between 0 and 1, inclusive
109      * @return a Scalar at the ratio between
110      */
111     public static FloatElectricalCharge interpolate(final FloatElectricalCharge zero, final FloatElectricalCharge one,
112             final float ratio)
113     {
114         return new FloatElectricalCharge(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 FloatElectricalCharge max(final FloatElectricalCharge r1, final FloatElectricalCharge 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 FloatElectricalCharge max(final FloatElectricalCharge r1, final FloatElectricalCharge r2,
137             final FloatElectricalCharge... rn)
138     {
139         FloatElectricalCharge maxr = r1.gt(r2) ? r1 : r2;
140         for (FloatElectricalCharge r : rn)
141         {
142             if (r.gt(maxr))
143             {
144                 maxr = r;
145             }
146         }
147         return maxr;
148     }
149 
150     /**
151      * Return the minimum value of two relative scalars.
152      * @param r1 the first scalar
153      * @param r2 the second scalar
154      * @return the minimum value of two relative scalars
155      */
156     public static FloatElectricalCharge min(final FloatElectricalCharge r1, final FloatElectricalCharge r2)
157     {
158         return r1.lt(r2) ? r1 : r2;
159     }
160 
161     /**
162      * Return the minimum value of more than two relative scalars.
163      * @param r1 the first scalar
164      * @param r2 the second scalar
165      * @param rn the other scalars
166      * @return the minimum value of more than two relative scalars
167      */
168     public static FloatElectricalCharge min(final FloatElectricalCharge r1, final FloatElectricalCharge r2,
169             final FloatElectricalCharge... rn)
170     {
171         FloatElectricalCharge minr = r1.lt(r2) ? r1 : r2;
172         for (FloatElectricalCharge r : rn)
173         {
174             if (r.lt(minr))
175             {
176                 minr = r;
177             }
178         }
179         return minr;
180     }
181 
182     /**
183      * Returns a FloatElectricalCharge representation of a textual representation of a value with a unit. The String
184      * representation that can be parsed is the double value in the unit, followed by a localized or English abbreviation of the
185      * unit. Spaces are allowed, but not required, between the value and the unit.
186      * @param text String; the textual representation to parse into a FloatElectricalCharge
187      * @return FloatElectricalCharge; the Scalar representation of the value in its unit
188      * @throws IllegalArgumentException when the text cannot be parsed
189      * @throws NullPointerException when the text argument is null
190      */
191     public static FloatElectricalCharge valueOf(final String text)
192     {
193         Throw.whenNull(text, "Error parsing FloatElectricalCharge: text to parse is null");
194         Throw.when(text.length() == 0, IllegalArgumentException.class,
195                 "Error parsing FloatElectricalCharge: empty text to parse");
196         try
197         {
198             NumberParser numberParser = new NumberParser().lenient().trailing();
199             float f = numberParser.parseFloat(text);
200             String unitString = text.substring(numberParser.getTrailingPosition()).trim();
201             ElectricalChargeUnit unit = ElectricalChargeUnit.BASE.getUnitByAbbreviation(unitString);
202             if (unit == null)
203                 throw new IllegalArgumentException("Unit " + unitString + " not found");
204             return new FloatElectricalCharge(f, unit);
205         }
206         catch (Exception exception)
207         {
208             throw new IllegalArgumentException("Error parsing FloatElectricalCharge from " + text + " using Locale "
209                     + Locale.getDefault(Locale.Category.FORMAT), exception);
210         }
211     }
212 
213     /**
214      * Returns a FloatElectricalCharge based on a value and the textual representation of the unit, which can be localized.
215      * @param value double; the value to use
216      * @param unitString String; the textual representation of the unit
217      * @return FloatElectricalCharge; the Scalar representation of the value in its unit
218      * @throws IllegalArgumentException when the unit cannot be parsed or is incorrect
219      * @throws NullPointerException when the unitString argument is null
220      */
221     public static FloatElectricalCharge of(final float value, final String unitString)
222     {
223         Throw.whenNull(unitString, "Error parsing FloatElectricalCharge: unitString is null");
224         Throw.when(unitString.length() == 0, IllegalArgumentException.class,
225                 "Error parsing FloatElectricalCharge: empty unitString");
226         ElectricalChargeUnit unit = ElectricalChargeUnit.BASE.getUnitByAbbreviation(unitString);
227         if (unit != null)
228         {
229             return new FloatElectricalCharge(value, unit);
230         }
231         throw new IllegalArgumentException("Error parsing FloatElectricalCharge with unit " + unitString);
232     }
233 
234     /**
235      * Calculate the division of FloatElectricalCharge and FloatElectricalCharge, which results in a FloatDimensionless scalar.
236      * @param v FloatElectricalCharge; scalar
237      * @return FloatDimensionless; scalar as a division of FloatElectricalCharge and FloatElectricalCharge
238      */
239     public final FloatDimensionless divide(final FloatElectricalCharge v)
240     {
241         return new FloatDimensionless(this.si / v.si, DimensionlessUnit.SI);
242     }
243 
244     /**
245      * Calculate the division of FloatElectricalCharge and FloatDuration, which results in a FloatElectricalCurrent scalar.
246      * @param v FloatElectricalCharge; scalar
247      * @return FloatElectricalCurrent; scalar as a division of FloatElectricalCharge and FloatDuration
248      */
249     public final FloatElectricalCurrent divide(final FloatDuration v)
250     {
251         return new FloatElectricalCurrent(this.si / v.si, ElectricalCurrentUnit.SI);
252     }
253 
254     /**
255      * Calculate the division of FloatElectricalCharge and FloatElectricalCurrent, which results in a FloatDuration scalar.
256      * @param v FloatElectricalCharge; scalar
257      * @return FloatDuration; scalar as a division of FloatElectricalCharge and FloatElectricalCurrent
258      */
259     public final FloatDuration divide(final FloatElectricalCurrent v)
260     {
261         return new FloatDuration(this.si / v.si, DurationUnit.SI);
262     }
263 
264     /**
265      * Calculate the division of FloatElectricalCharge and FloatElectricalPotential, which results in a
266      * FloatElectricalCapacitance scalar.
267      * @param v FloatElectricalCharge; scalar
268      * @return FloatElectricalCapacitance; scalar as a division of FloatElectricalCharge and FloatElectricalPotential
269      */
270     public final FloatElectricalCapacitance divide(final FloatElectricalPotential v)
271     {
272         return new FloatElectricalCapacitance(this.si / v.si, ElectricalCapacitanceUnit.SI);
273     }
274 
275     /**
276      * Calculate the division of FloatElectricalCharge and FloatElectricalCapacitance, which results in a
277      * FloatElectricalPotential scalar.
278      * @param v FloatElectricalCharge; scalar
279      * @return FloatElectricalPotential; scalar as a division of FloatElectricalCharge and FloatElectricalCapacitance
280      */
281     public final FloatElectricalPotential divide(final FloatElectricalCapacitance v)
282     {
283         return new FloatElectricalPotential(this.si / v.si, ElectricalPotentialUnit.SI);
284     }
285 
286     @Override
287     public FloatSIScalar reciprocal()
288     {
289         return FloatScalar.divide(FloatDimensionless.ONE, this);
290     }
291 
292 }