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