1 package org.djunits.value.vfloat.scalar;
2
3 import java.util.Locale;
4
5 import org.djunits.unit.AngleUnit;
6 import org.djunits.unit.AngularAccelerationUnit;
7 import org.djunits.unit.AngularVelocityUnit;
8 import org.djunits.unit.DimensionlessUnit;
9 import org.djunits.unit.DurationUnit;
10 import org.djunits.unit.FrequencyUnit;
11 import org.djunits.value.vfloat.scalar.base.FloatScalarRel;
12 import org.djutils.base.NumberParser;
13 import org.djutils.exceptions.Throw;
14
15 import jakarta.annotation.Generated;
16
17
18
19
20
21
22
23
24
25
26 @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2025-09-06T15:16:28.380798Z")
27 public class FloatAngularVelocity extends FloatScalarRel<AngularVelocityUnit, FloatAngularVelocity>
28 {
29
30 private static final long serialVersionUID = 20150901L;
31
32
33 public static final FloatAngularVelocity ZERO = new FloatAngularVelocity(0.0f, AngularVelocityUnit.SI);
34
35
36 public static final FloatAngularVelocity ONE = new FloatAngularVelocity(1.0f, AngularVelocityUnit.SI);
37
38
39 @SuppressWarnings("checkstyle:constantname")
40 public static final FloatAngularVelocity NaN = new FloatAngularVelocity(Float.NaN, AngularVelocityUnit.SI);
41
42
43 public static final FloatAngularVelocity POSITIVE_INFINITY =
44 new FloatAngularVelocity(Float.POSITIVE_INFINITY, AngularVelocityUnit.SI);
45
46
47 public static final FloatAngularVelocity NEGATIVE_INFINITY =
48 new FloatAngularVelocity(Float.NEGATIVE_INFINITY, AngularVelocityUnit.SI);
49
50
51 public static final FloatAngularVelocity POS_MAXVALUE = new FloatAngularVelocity(Float.MAX_VALUE, AngularVelocityUnit.SI);
52
53
54 public static final FloatAngularVelocity NEG_MAXVALUE = new FloatAngularVelocity(-Float.MAX_VALUE, AngularVelocityUnit.SI);
55
56
57
58
59
60
61 public FloatAngularVelocity(final float value, final AngularVelocityUnit unit)
62 {
63 super(value, unit);
64 }
65
66
67
68
69
70 public FloatAngularVelocity(final FloatAngularVelocity value)
71 {
72 super(value);
73 }
74
75
76
77
78
79
80 public FloatAngularVelocity(final double value, final AngularVelocityUnit unit)
81 {
82 super((float) value, unit);
83 }
84
85 @Override
86 public final FloatAngularVelocity instantiateRel(final float value, final AngularVelocityUnit unit)
87 {
88 return new FloatAngularVelocity(value, unit);
89 }
90
91
92
93
94
95
96 public static final FloatAngularVelocity ofSI(final float value)
97 {
98 return new FloatAngularVelocity(value, AngularVelocityUnit.SI);
99 }
100
101
102
103
104
105
106
107
108 public static FloatAngularVelocity interpolate(final FloatAngularVelocity zero, final FloatAngularVelocity one,
109 final float ratio)
110 {
111 Throw.when(ratio < 0.0 || ratio > 1.0, IllegalArgumentException.class,
112 "ratio for interpolation should be between 0 and 1, but is %f", ratio);
113 return new FloatAngularVelocity(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getDisplayUnit()) * ratio,
114 zero.getDisplayUnit());
115 }
116
117
118
119
120
121
122
123 public static FloatAngularVelocity max(final FloatAngularVelocity r1, final FloatAngularVelocity r2)
124 {
125 return r1.gt(r2) ? r1 : r2;
126 }
127
128
129
130
131
132
133
134
135 public static FloatAngularVelocity max(final FloatAngularVelocity r1, final FloatAngularVelocity r2,
136 final FloatAngularVelocity... rn)
137 {
138 FloatAngularVelocity maxr = r1.gt(r2) ? r1 : r2;
139 for (FloatAngularVelocity r : rn)
140 {
141 if (r.gt(maxr))
142 {
143 maxr = r;
144 }
145 }
146 return maxr;
147 }
148
149
150
151
152
153
154
155 public static FloatAngularVelocity min(final FloatAngularVelocity r1, final FloatAngularVelocity r2)
156 {
157 return r1.lt(r2) ? r1 : r2;
158 }
159
160
161
162
163
164
165
166
167 public static FloatAngularVelocity min(final FloatAngularVelocity r1, final FloatAngularVelocity r2,
168 final FloatAngularVelocity... rn)
169 {
170 FloatAngularVelocity minr = r1.lt(r2) ? r1 : r2;
171 for (FloatAngularVelocity r : rn)
172 {
173 if (r.lt(minr))
174 {
175 minr = r;
176 }
177 }
178 return minr;
179 }
180
181
182
183
184
185
186
187
188
189
190 public static FloatAngularVelocity valueOf(final String text)
191 {
192 Throw.whenNull(text, "Error parsing FloatAngularVelocity: text to parse is null");
193 Throw.when(text.length() == 0, IllegalArgumentException.class,
194 "Error parsing FloatAngularVelocity: empty text to parse");
195 try
196 {
197 NumberParser numberParser = new NumberParser().lenient().trailing();
198 float f = numberParser.parseFloat(text);
199 String unitString = text.substring(numberParser.getTrailingPosition()).trim();
200 AngularVelocityUnit unit = AngularVelocityUnit.BASE.getUnitByAbbreviation(unitString);
201 Throw.when(unit == null, IllegalArgumentException.class, "Unit %s not found for quantity AngularVelocity",
202 unitString);
203 return new FloatAngularVelocity(f, unit);
204 }
205 catch (Exception exception)
206 {
207 throw new IllegalArgumentException("Error parsing FloatAngularVelocity from " + text + " using Locale "
208 + Locale.getDefault(Locale.Category.FORMAT), exception);
209 }
210 }
211
212
213
214
215
216
217
218
219
220 public static FloatAngularVelocity of(final float value, final String unitString)
221 {
222 Throw.whenNull(unitString, "Error parsing FloatAngularVelocity: unitString is null");
223 Throw.when(unitString.length() == 0, IllegalArgumentException.class,
224 "Error parsing FloatAngularVelocity: empty unitString");
225 AngularVelocityUnit unit = AngularVelocityUnit.BASE.getUnitByAbbreviation(unitString);
226 Throw.when(unit == null, IllegalArgumentException.class, "Error parsing FloatAngularVelocity with unit %s", unitString);
227 return new FloatAngularVelocity(value, unit);
228 }
229
230
231
232
233
234
235 public final FloatDimensionless divide(final FloatAngularVelocity v)
236 {
237 return new FloatDimensionless(this.si / v.si, DimensionlessUnit.SI);
238 }
239
240
241
242
243
244
245 public final FloatFrequency divide(final FloatAngle v)
246 {
247 return new FloatFrequency(this.si / v.si, FrequencyUnit.SI);
248 }
249
250
251
252
253
254
255 public final FloatAngle divide(final FloatFrequency v)
256 {
257 return new FloatAngle(this.si / v.si, AngleUnit.SI);
258 }
259
260
261
262
263
264
265 public final FloatAngle times(final FloatDuration v)
266 {
267 return new FloatAngle(this.si * v.si, AngleUnit.SI);
268 }
269
270
271
272
273
274
275 public final FloatAngularAcceleration divide(final FloatDuration v)
276 {
277 return new FloatAngularAcceleration(this.si / v.si, AngularAccelerationUnit.SI);
278 }
279
280
281
282
283
284
285 public final FloatDuration divide(final FloatAngularAcceleration v)
286 {
287 return new FloatDuration(this.si / v.si, DurationUnit.SI);
288 }
289
290
291
292
293
294
295
296 public final FloatAngularAcceleration times(final FloatFrequency v)
297 {
298 return new FloatAngularAcceleration(this.si * v.si, AngularAccelerationUnit.SI);
299 }
300
301 @Override
302 public FloatSIScalar reciprocal()
303 {
304 return FloatSIScalar.divide(FloatDimensionless.ONE, this);
305 }
306
307
308
309
310
311
312
313 public static FloatAngularVelocity multiply(final FloatScalarRel<?, ?> scalar1, final FloatScalarRel<?, ?> scalar2)
314 {
315 Throw.whenNull(scalar1, "scalar1 cannot be null");
316 Throw.whenNull(scalar2, "scalar2 cannot be null");
317 Throw.when(
318 !scalar1.getDisplayUnit().getQuantity().getSiDimensions()
319 .plus(scalar2.getDisplayUnit().getQuantity().getSiDimensions())
320 .equals(AngularVelocityUnit.BASE.getSiDimensions()),
321 IllegalArgumentException.class, "Multiplying %s by %s does not result in instance of type FloatAngularVelocity",
322 scalar1.toDisplayString(), scalar2.toDisplayString());
323 return new FloatAngularVelocity(scalar1.si * scalar2.si, AngularVelocityUnit.SI);
324 }
325
326
327
328
329
330
331
332 public static FloatAngularVelocity divide(final FloatScalarRel<?, ?> scalar1, final FloatScalarRel<?, ?> scalar2)
333 {
334 Throw.whenNull(scalar1, "scalar1 cannot be null");
335 Throw.whenNull(scalar2, "scalar2 cannot be null");
336 Throw.when(
337 !scalar1.getDisplayUnit().getQuantity().getSiDimensions()
338 .minus(scalar2.getDisplayUnit().getQuantity().getSiDimensions())
339 .equals(AngularVelocityUnit.BASE.getSiDimensions()),
340 IllegalArgumentException.class, "Dividing %s by %s does not result in an instance of type FloatAngularVelocity",
341 scalar1.toDisplayString(), scalar2.toDisplayString());
342 return new FloatAngularVelocity(scalar1.si / scalar2.si, AngularVelocityUnit.SI);
343 }
344
345 }