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