https://github.com/srbrettle/equations-of-motion-library
A collection of methods for solving Displacement, Initial and Final Velocities, Constant Acceleration and Time.
https://github.com/srbrettle/equations-of-motion-library
acceleration algorithm csharp displacement dotnet dotnet-standard equations kinematic motion physics time velocity
Last synced: about 1 month ago
JSON representation
A collection of methods for solving Displacement, Initial and Final Velocities, Constant Acceleration and Time.
- Host: GitHub
- URL: https://github.com/srbrettle/equations-of-motion-library
- Owner: srbrettle
- License: mit
- Created: 2018-10-12T18:12:21.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-13T17:03:57.000Z (almost 7 years ago)
- Last Synced: 2024-12-16T03:43:29.418Z (7 months ago)
- Topics: acceleration, algorithm, csharp, displacement, dotnet, dotnet-standard, equations, kinematic, motion, physics, time, velocity
- Language: C#
- Homepage:
- Size: 388 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Equations-Of-Motion-Library
[](https://ci.appveyor.com/project/srbrettle/equations-of-motion-library/branch/master) [](https://travis-ci.org/srbrettle/Equations-Of-Motion-Library) [](https://codecov.io/gh/srbrettle/Equations-Of-Motion-Library)
[](https://github.com/srbrettle/Equations-Of-Motion-Library/issues)A collection of methods for solving Displacement, Initial and Final Velocities, Constant Acceleration and Time. This project uses .NET Standard 2.0.
## See in Action
[Equations Of Motion - Android Application](https://play.google.com/store/apps/details?id=com.barwickapplications.calc.equationsofmotion)
## Getting Started - C#
### Using NuGet [](https://www.nuget.org/packages/EquationsOfMotion/1.0.0)
1. Within your project, install EquationsOfMotion NuGet package (via "Manage Packages for Solution" or running the following in "Packet Manager Console".
```PowerShell
Install-Package EquationsOfMotion -Version 1.0.0
```
2. Reference the Namespace:
```c#
using srbrettle.EquationsOfMotion;
```
3. Use the static library methods:
```c#
double result = InitialVelocity.InitialVelocityFromVAT(20, 2, 5);
```## License
This project is licensed under the MIT License - see the [LICENSE](/LICENSE) file for details.