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.EnergyUnit;
12 import org.djunits.unit.FlowVolumeUnit;
13 import org.djunits.unit.LengthUnit;
14 import org.djunits.unit.MassUnit;
15 import org.djunits.unit.VolumeUnit;
16 import org.djunits.value.util.ValueUtil;
17 import org.djunits.value.vdouble.scalar.base.AbstractDoubleScalarRel;
18
19
20
21
22
23
24
25
26
27
28 @Generated(value = "org.djunits.generator.GenerateDJUNIT", date = "2020-01-19T15:21:24.964166400Z")
29 public class Volume extends AbstractDoubleScalarRel<VolumeUnit, Volume>
30 {
31
32 private static final long serialVersionUID = 20150905L;
33
34
35 public static final Volumele/scalar/Volume.html#Volume">Volume ZERO = new Volume(0.0, VolumeUnit.SI);
36
37
38 public static final Volumeble/scalar/Volume.html#Volume">Volume ONE = new Volume(1.0, VolumeUnit.SI);
39
40
41 @SuppressWarnings("checkstyle:constantname")
42 public static final Volumeble/scalar/Volume.html#Volume">Volume NaN = new Volume(Double.NaN, VolumeUnit.SI);
43
44
45 public static final Volumeume.html#Volume">Volume POSITIVE_INFINITY = new Volume(Double.POSITIVE_INFINITY, VolumeUnit.SI);
46
47
48 public static final Volumeume.html#Volume">Volume NEGATIVE_INFINITY = new Volume(Double.NEGATIVE_INFINITY, VolumeUnit.SI);
49
50
51 public static final Volumer/Volume.html#Volume">Volume POS_MAXVALUE = new Volume(Double.MAX_VALUE, VolumeUnit.SI);
52
53
54 public static final Volumer/Volume.html#Volume">Volume NEG_MAXVALUE = new Volume(-Double.MAX_VALUE, VolumeUnit.SI);
55
56
57
58
59
60
61 public Volume(final double value, final VolumeUnit unit)
62 {
63 super(value, unit);
64 }
65
66
67
68
69
70 public Volumevdouble/scalar/Volume.html#Volume">Volume(final Volume value)
71 {
72 super(value);
73 }
74
75
76 @Override
77 public final Volume instantiateRel(final double value, final VolumeUnit unit)
78 {
79 return new Volume(value, unit);
80 }
81
82
83
84
85
86
87 public static final Volume instantiateSI(final double value)
88 {
89 return new Volume(value, VolumeUnit.SI);
90 }
91
92
93
94
95
96
97
98
99 public static Volumee/scalar/Volume.html#Volume">Volumear/Volume.html#Volume">Volume interpolate(final Volumee/scalar/Volume.html#Volume">Volume zero, final Volume one, final double ratio)
100 {
101 return new Volume(zero.getInUnit() * (1 - ratio) + one.getInUnit(zero.getDisplayUnit()) * ratio, zero.getDisplayUnit());
102 }
103
104
105
106
107
108
109
110 public static Volumeble/scalar/Volume.html#Volume">Volumeble/scalar/Volume.html#Volume">Volume max(final Volumeble/scalar/Volume.html#Volume">Volume r1, final Volume r2)
111 {
112 return r1.gt(r2) ? r1 : r2;
113 }
114
115
116
117
118
119
120
121
122 public static Volumeble/scalar/Volume.html#Volume">Volumeble/scalar/Volume.html#Volume">Volume max(final Volumeble/scalar/Volume.html#Volume">Volume r1, final Volume r2, final Volume... rn)
123 {
124 Volume maxr = r1.gt(r2) ? r1 : r2;
125 for (Volume r : rn)
126 {
127 if (r.gt(maxr))
128 {
129 maxr = r;
130 }
131 }
132 return maxr;
133 }
134
135
136
137
138
139
140
141 public static Volumeble/scalar/Volume.html#Volume">Volumeble/scalar/Volume.html#Volume">Volume min(final Volumeble/scalar/Volume.html#Volume">Volume r1, final Volume r2)
142 {
143 return r1.lt(r2) ? r1 : r2;
144 }
145
146
147
148
149
150
151
152
153 public static Volumeble/scalar/Volume.html#Volume">Volumeble/scalar/Volume.html#Volume">Volume min(final Volumeble/scalar/Volume.html#Volume">Volume r1, final Volume r2, final Volume... rn)
154 {
155 Volume minr = r1.lt(r2) ? r1 : r2;
156 for (Volume r : rn)
157 {
158 if (r.lt(minr))
159 {
160 minr = r;
161 }
162 }
163 return minr;
164 }
165
166
167
168
169
170
171
172
173
174
175 public static Volume valueOf(final String text)
176 {
177 Throw.whenNull(text, "Error parsing Volume: text to parse is null");
178 Throw.when(text.length() == 0, IllegalArgumentException.class, "Error parsing Volume: empty text to parse");
179 Matcher matcher = ValueUtil.NUMBER_PATTERN.matcher(text);
180 if (matcher.find())
181 {
182 int index = matcher.end();
183 String unitString = text.substring(index).trim();
184 String valueString = text.substring(0, index).trim();
185 VolumeUnit unit = VolumeUnit.BASE.getUnitByAbbreviation(unitString);
186 if (unit != null)
187 {
188 double d = Double.parseDouble(valueString);
189 return new Volume(d, unit);
190 }
191 }
192 throw new IllegalArgumentException("Error parsing Volume from " + text);
193 }
194
195
196
197
198
199
200
201
202
203 public static Volume of(final double value, final String unitString)
204 {
205 Throw.whenNull(unitString, "Error parsing Volume: unitString is null");
206 Throw.when(unitString.length() == 0, IllegalArgumentException.class, "Error parsing Volume: empty unitString");
207 VolumeUnit unit = VolumeUnit.BASE.getUnitByAbbreviation(unitString);
208 if (unit != null)
209 {
210 return new Volume(value, unit);
211 }
212 throw new IllegalArgumentException("Error parsing Volume with unit " + unitString);
213 }
214
215
216
217
218
219
220 public final Dimensionless divide(final Volume v)
221 {
222 return new Dimensionless(this.si / v.si, DimensionlessUnit.SI);
223 }
224
225
226
227
228
229
230 public final Mass times(final Density v)
231 {
232 return new Mass(this.si * v.si, MassUnit.SI);
233 }
234
235
236
237
238
239
240 public final Energy times(final Pressure v)
241 {
242 return new Energy(this.si * v.si, EnergyUnit.SI);
243 }
244
245
246
247
248
249
250 public final Area divide(final Length v)
251 {
252 return new Area(this.si / v.si, AreaUnit.SI);
253 }
254
255
256
257
258
259
260 public final Length divide(final Area v)
261 {
262 return new Length(this.si / v.si, LengthUnit.SI);
263 }
264
265
266
267
268
269
270 public final Area times(final LinearDensity v)
271 {
272 return new Area(this.si * v.si, AreaUnit.SI);
273 }
274
275
276
277
278
279
280 public final FlowVolume divide(final Duration v)
281 {
282 return new FlowVolume(this.si / v.si, FlowVolumeUnit.SI);
283 }
284
285
286
287
288
289
290 public final Duration divide(final FlowVolume v)
291 {
292 return new Duration(this.si / v.si, DurationUnit.SI);
293 }
294
295 }