@@ -182,6 +182,27 @@ private Units() {
182
182
public static final Velocity <Velocity <Distance >> MetersPerSecondPerSecond =
183
183
MetersPerSecond .per (Second );
184
184
185
+ /**
186
+ * A unit of angular acceleration equivalent to accelerating at a rate of one {@link #Rotations
187
+ * Rotation} per {@link #Second} every second.
188
+ */
189
+ public static final Velocity <Velocity <Angle >> RotationsPerSecondPerSecond =
190
+ RotationsPerSecond .per (Second );
191
+
192
+ /**
193
+ * The standard SI unit of angular acceleration, equivalent to accelerating at a rate of one
194
+ * {@link #Radians Radian} per {@link #Second} every second.
195
+ */
196
+ public static final Velocity <Velocity <Angle >> RadiansPerSecondPerSecond =
197
+ RadiansPerSecond .per (Second );
198
+
199
+ /**
200
+ * A unit of angular acceleration equivalent to accelerating at a rate of one {@link #Degrees
201
+ * Degree} per {@link #Second} every second.
202
+ */
203
+ public static final Velocity <Velocity <Angle >> DegreesPerSecondPerSecond =
204
+ DegreesPerSecond .per (Second );
205
+
185
206
/**
186
207
* A unit of acceleration equivalent to the pull of gravity on an object at sea level on Earth.
187
208
*/
@@ -223,6 +244,11 @@ private Units() {
223
244
/** 1/16 of a {@link #Pound}. */
224
245
public static final Mass Ounce = Ounces ; // alias
225
246
247
+ // Moment of Inertia
248
+ /** The base SI unit for moment of inertia. */
249
+ public static final Mult <Mult <Mass , Distance >, Distance > KilogramSquareMeters =
250
+ Kilograms .mult (Meters ).mult (Meters );
251
+
226
252
// Unitless
227
253
/** A dimensionless unit that performs no scaling whatsoever. */
228
254
public static final Dimensionless Value = BaseUnits .Value ;
0 commit comments