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