View Javadoc
1   package org.djunits.value.vdouble.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.AngleUnit;
9   import org.djunits.unit.AngularAccelerationUnit;
10  import org.djunits.unit.AngularVelocityUnit;
11  import org.djunits.unit.DimensionlessUnit;
12  import org.djunits.unit.DurationUnit;
13  import org.djunits.unit.FrequencyUnit;
14  import org.djunits.value.util.ValueUtil;
15  import org.djunits.value.vdouble.scalar.base.AbstractDoubleScalarRel;
16  import org.djunits.value.vdouble.scalar.base.DoubleScalar;
17  
18  /**
19   * Easy access methods for the AngularVelocity DoubleScalar, which is relative by definition.
20   * <p>
21   * Copyright (c) 2013-2022 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 = "2022-03-14T11:14:15.180987200Z")
28  public class AngularVelocity extends AbstractDoubleScalarRel<AngularVelocityUnit, AngularVelocity>
29  {
30      /** */
31      private static final long serialVersionUID = 20150905L;
32  
33      /** Constant with value zero. */
34      public static final AngularVelocity/AngularVelocity.html#AngularVelocity">AngularVelocity ZERO = new AngularVelocity(0.0, AngularVelocityUnit.SI);
35  
36      /** Constant with value one. */
37      public static final AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity ONE = new AngularVelocity(1.0, AngularVelocityUnit.SI);
38  
39      /** Constant with value NaN. */
40      @SuppressWarnings("checkstyle:constantname")
41      public static final AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity NaN = new AngularVelocity(Double.NaN, AngularVelocityUnit.SI);
42  
43      /** Constant with value POSITIVE_INFINITY. */
44      public static final AngularVelocity POSITIVE_INFINITY =
45              new AngularVelocity(Double.POSITIVE_INFINITY, AngularVelocityUnit.SI);
46  
47      /** Constant with value NEGATIVE_INFINITY. */
48      public static final AngularVelocity NEGATIVE_INFINITY =
49              new AngularVelocity(Double.NEGATIVE_INFINITY, AngularVelocityUnit.SI);
50  
51      /** Constant with value MAX_VALUE. */
52      public static final AngularVelocityVelocity.html#AngularVelocity">AngularVelocity POS_MAXVALUE = new AngularVelocity(Double.MAX_VALUE, AngularVelocityUnit.SI);
53  
54      /** Constant with value -MAX_VALUE. */
55      public static final AngularVelocityVelocity.html#AngularVelocity">AngularVelocity NEG_MAXVALUE = new AngularVelocity(-Double.MAX_VALUE, AngularVelocityUnit.SI);
56  
57      /**
58       * Construct AngularVelocity scalar.
59       * @param value double; the double value
60       * @param unit AngularVelocityUnit; unit for the double value
61       */
62      public AngularVelocity(final double value, final AngularVelocityUnit unit)
63      {
64          super(value, unit);
65      }
66  
67      /**
68       * Construct AngularVelocity scalar.
69       * @param value AngularVelocity; Scalar from which to construct this instance
70       */
71      public AngularVelocitycalar/AngularVelocity.html#AngularVelocity">AngularVelocity(final AngularVelocity value)
72      {
73          super(value);
74      }
75  
76      /** {@inheritDoc} */
77      @Override
78      public final AngularVelocity instantiateRel(final double value, final AngularVelocityUnit unit)
79      {
80          return new AngularVelocity(value, unit);
81      }
82  
83      /**
84       * Construct AngularVelocity scalar.
85       * @param value double; the double value in SI units
86       * @return AngularVelocity; the new scalar with the SI value
87       */
88      public static final AngularVelocity instantiateSI(final double value)
89      {
90          return new AngularVelocity(value, AngularVelocityUnit.SI);
91      }
92  
93      /**
94       * Interpolate between two values.
95       * @param zero AngularVelocity; the low value
96       * @param one AngularVelocity; the high value
97       * @param ratio double; the ratio between 0 and 1, inclusive
98       * @return AngularVelocity; a Scalar at the ratio between
99       */
100     public static AngularVelocityAngularVelocity.html#AngularVelocity">AngularVelocityrVelocity.html#AngularVelocity">AngularVelocity interpolate(final AngularVelocityAngularVelocity.html#AngularVelocity">AngularVelocity zero, final AngularVelocity one, final double ratio)
101     {
102         return new AngularVelocity(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getDisplayUnit()) * ratio,
103                 zero.getDisplayUnit());
104     }
105 
106     /**
107      * Return the maximum value of two relative scalars.
108      * @param r1 AngularVelocity; the first scalar
109      * @param r2 AngularVelocity; the second scalar
110      * @return AngularVelocity; the maximum value of two relative scalars
111      */
112     public static AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity max(final AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity r1, final AngularVelocity r2)
113     {
114         return r1.gt(r2) ? r1 : r2;
115     }
116 
117     /**
118      * Return the maximum value of more than two relative scalars.
119      * @param r1 AngularVelocity; the first scalar
120      * @param r2 AngularVelocity; the second scalar
121      * @param rn AngularVelocity...; the other scalars
122      * @return AngularVelocity; the maximum value of more than two relative scalars
123      */
124     public static AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity max(final AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity r1, final AngularVelocity r2, final AngularVelocity... rn)
125     {
126         AngularVelocity maxr = r1.gt(r2) ? r1 : r2;
127         for (AngularVelocity r : rn)
128         {
129             if (r.gt(maxr))
130             {
131                 maxr = r;
132             }
133         }
134         return maxr;
135     }
136 
137     /**
138      * Return the minimum value of two relative scalars.
139      * @param r1 AngularVelocity; the first scalar
140      * @param r2 AngularVelocity; the second scalar
141      * @return AngularVelocity; the minimum value of two relative scalars
142      */
143     public static AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity min(final AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity r1, final AngularVelocity r2)
144     {
145         return r1.lt(r2) ? r1 : r2;
146     }
147 
148     /**
149      * Return the minimum value of more than two relative scalars.
150      * @param r1 AngularVelocity; the first scalar
151      * @param r2 AngularVelocity; the second scalar
152      * @param rn AngularVelocity...; the other scalars
153      * @return AngularVelocity; the minimum value of more than two relative scalars
154      */
155     public static AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity min(final AngularVelocityr/AngularVelocity.html#AngularVelocity">AngularVelocity r1, final AngularVelocity r2, final AngularVelocity... rn)
156     {
157         AngularVelocity minr = r1.lt(r2) ? r1 : r2;
158         for (AngularVelocity r : rn)
159         {
160             if (r.lt(minr))
161             {
162                 minr = r;
163             }
164         }
165         return minr;
166     }
167 
168     /**
169      * Returns a AngularVelocity representation of a textual representation of a value with a unit. The String representation
170      * that can be parsed is the double value in the unit, followed by the official abbreviation of the unit. Spaces are
171      * allowed, but not required, between the value and the unit.
172      * @param text String; the textual representation to parse into a AngularVelocity
173      * @return AngularVelocity; the Scalar representation of the value in its unit
174      * @throws IllegalArgumentException when the text cannot be parsed
175      * @throws NullPointerException when the text argument is null
176      */
177     public static AngularVelocity valueOf(final String text)
178     {
179         Throw.whenNull(text, "Error parsing AngularVelocity: text to parse is null");
180         Throw.when(text.length() == 0, IllegalArgumentException.class, "Error parsing AngularVelocity: empty text to parse");
181         Matcher matcher = ValueUtil.NUMBER_PATTERN.matcher(text);
182         if (matcher.find())
183         {
184             int index = matcher.end();
185             String unitString = text.substring(index).trim();
186             String valueString = text.substring(0, index).trim();
187             AngularVelocityUnit unit = AngularVelocityUnit.BASE.getUnitByAbbreviation(unitString);
188             if (unit != null)
189             {
190                 double d = Double.parseDouble(valueString);
191                 return new AngularVelocity(d, unit);
192             }
193         }
194         throw new IllegalArgumentException("Error parsing AngularVelocity from " + text);
195     }
196 
197     /**
198      * Returns a AngularVelocity based on a value and the textual representation of the unit.
199      * @param value double; the value to use
200      * @param unitString String; the textual representation of the unit
201      * @return AngularVelocity; the Scalar representation of the value in its unit
202      * @throws IllegalArgumentException when the unit cannot be parsed or is incorrect
203      * @throws NullPointerException when the unitString argument is null
204      */
205     public static AngularVelocity of(final double value, final String unitString)
206     {
207         Throw.whenNull(unitString, "Error parsing AngularVelocity: unitString is null");
208         Throw.when(unitString.length() == 0, IllegalArgumentException.class, "Error parsing AngularVelocity: empty unitString");
209         AngularVelocityUnit unit = AngularVelocityUnit.BASE.getUnitByAbbreviation(unitString);
210         if (unit != null)
211         {
212             return new AngularVelocity(value, unit);
213         }
214         throw new IllegalArgumentException("Error parsing AngularVelocity with unit " + unitString);
215     }
216 
217     /**
218      * Calculate the division of AngularVelocity and AngularVelocity, which results in a Dimensionless scalar.
219      * @param v AngularVelocity; scalar
220      * @return Dimensionless; scalar as a division of AngularVelocity and AngularVelocity
221      */
222     public final Dimensionless divide(final AngularVelocity v)
223     {
224         return new Dimensionless(this.si / v.si, DimensionlessUnit.SI);
225     }
226 
227     /**
228      * Calculate the division of AngularVelocity and Angle, which results in a Frequency scalar.
229      * @param v AngularVelocity; scalar
230      * @return Frequency; scalar as a division of AngularVelocity and Angle
231      */
232     public final Frequency divide(final Angle v)
233     {
234         return new Frequency(this.si / v.si, FrequencyUnit.SI);
235     }
236 
237     /**
238      * Calculate the division of AngularVelocity and Frequency, which results in a Angle scalar.
239      * @param v AngularVelocity; scalar
240      * @return Angle; scalar as a division of AngularVelocity and Frequency
241      */
242     public final Angle divide(final Frequency v)
243     {
244         return new Angle(this.si / v.si, AngleUnit.SI);
245     }
246 
247     /**
248      * Calculate the multiplication of AngularVelocity and Duration, which results in a Angle scalar.
249      * @param v AngularVelocity; scalar
250      * @return Angle; scalar as a multiplication of AngularVelocity and Duration
251      */
252     public final Angle times(final Duration v)
253     {
254         return new Angle(this.si * v.si, AngleUnit.SI);
255     }
256 
257     /**
258      * Calculate the division of AngularVelocity and Duration, which results in a AngularAcceleration scalar.
259      * @param v AngularVelocity; scalar
260      * @return AngularAcceleration; scalar as a division of AngularVelocity and Duration
261      */
262     public final AngularAcceleration divide(final Duration v)
263     {
264         return new AngularAcceleration(this.si / v.si, AngularAccelerationUnit.SI);
265     }
266 
267     /**
268      * Calculate the division of AngularVelocity and AngularAcceleration, which results in a Duration scalar.
269      * @param v AngularVelocity; scalar
270      * @return Duration; scalar as a division of AngularVelocity and AngularAcceleration
271      */
272     public final Duration divide(final AngularAcceleration v)
273     {
274         return new Duration(this.si / v.si, DurationUnit.SI);
275     }
276 
277     /**
278      * Calculate the multiplication of AngularVelocity and Frequency, which results in a AngularAcceleration scalar.
279      * @param v AngularVelocity; scalar
280      * @return AngularAcceleration; scalar as a multiplication of AngularVelocity and Frequency
281      */
282     public final AngularAcceleration times(final Frequency v)
283     {
284         return new AngularAcceleration(this.si * v.si, AngularAccelerationUnit.SI);
285     }
286 
287     /** {@inheritDoc} */
288     @Override
289     public SIScalar reciprocal()
290     {
291         return DoubleScalar.divide(Dimensionless.ONE, this);
292     }
293 
294 }