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