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