-
Notifications
You must be signed in to change notification settings - Fork 411
Expand file tree
/
Copy pathRotationalAccelerationTests.cs
More file actions
36 lines (32 loc) · 1.87 KB
/
RotationalAccelerationTests.cs
File metadata and controls
36 lines (32 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated (once) by \generate-code.bat, but will not be
// regenerated when it already exists. The purpose of creating this file is to make
// it easier to remember to implement all the unit conversion test cases.
//
// Whenever a new unit is added to this unit class and \generate-code.bat is run,
// the base test class will get a new abstract property and cause a compile error
// in this derived class, reminding the developer to implement the test case
// for the new unit.
//
// See https://github.com/angularsen/UnitsNet/wiki/Adding-a-New-Unit for how to add or edit units.
//
// Add CustomCode\UnitClasses\MyQuantity.extra.cs files to add code to generated unit classes.
// Add UnitDefinitions\MyQuantity.json and run GeneratUnits.bat to generate new units or unit classes.
//
// </auto-generated>
//------------------------------------------------------------------------------
// Licensed under MIT No Attribution, see LICENSE file at the root.
// Copyright 2013 Andreas Gullberg Larsen (andreas.larsen84@gmail.com). Maintained at https://github.com/angularsen/UnitsNet.
using System;
namespace UnitsNet.Tests.CustomCode
{
public class RotationalAccelerationTests : RotationalAccelerationTestsBase
{
protected override double DegreesPerSecondSquaredInOneRadianPerSecondSquared => 180 / Math.PI;
protected override double RadiansPerSecondSquaredInOneRadianPerSecondSquared => 1;
protected override double MillirevolutionsPerMinutePerSecondInOneRadianPerSecondSquared => 9549.296586;
protected override double RevolutionsPerMinutePerSecondInOneRadianPerSecondSquared => 9.549296586;
protected override double RevolutionsPerSecondSquaredInOneRadianPerSecondSquared=> 0.159154943091895;
}
}