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