DianaBorro.Physics.SUVATEquations
1.0.1
dotnet add package DianaBorro.Physics.SUVATEquations --version 1.0.1
NuGet\Install-Package DianaBorro.Physics.SUVATEquations -Version 1.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DianaBorro.Physics.SUVATEquations" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DianaBorro.Physics.SUVATEquations --version 1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: DianaBorro.Physics.SUVATEquations, 1.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DianaBorro.Physics.SUVATEquations as a Cake Addin #addin nuget:?package=DianaBorro.Physics.SUVATEquations&version=1.0.1 // Install DianaBorro.Physics.SUVATEquations as a Cake Tool #tool nuget:?package=DianaBorro.Physics.SUVATEquations&version=1.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
SUVAT Equations Library
The SUVAT Equations Library is a C# library that provides methods for calculating displacement, initial velocity, final velocity, and acceleration using the SUVAT equations of motion. This library simplifies the process of performing kinematic calculations in C# applications.
Installation
You can install the SUVAT Operations Library via NuGet Package Manager.
Usage
To use the SUVAT Operations Library in your C# project, follow these steps:
- Install the NuGet package:
dotnet add package DianaBorro.Physics.SUVATEquations --version 1.0.0
- Import the
SUVATNuGet
namespace in your C# file.
Example
using System;
using SUVATNuGet;
class Program
{
static void Main(string[] args)
{
SUVATEquations suvat = new SUVATEquations();
// Calculate displacement using initial velocity, time, and final velocity
double displacement = suvat.DisplacementUTV(5.0, 2.0, 10.0);
Console.WriteLine("Displacement: " + displacement);
// Calculate final velocity using displacement, initial velocity, and acceleration
double finalVelocity = suvat.FinalVelocityVAS(0.0, 9.8, 10.0);
Console.WriteLine("Final Velocity: " + finalVelocity);
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.