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