It is the 0.1.4 version of Phy-Numerical crate Here you can solve Phy-Numericals of * First Equation of Motion * Second Equation of Motion * Third Equation of Motion
Add phynumerical = "0.1.4" in cargo.toml file in [dependencies]
like
Rust
[dependencies]
phy_numerical = "0.1.4"
- For solving the Numerical releated to First Equation of motion
You just write phynumerical::Firstequationof_motion(); in Main.rs File like this
```Rust
use std::io;
extern crate phy_numerical;
fn main () {
//For First equation of motion
phynumerical::Firstequationofmotion();
}
- For **Second Equation of motion**.
You write **phy_numerical::Second_equation_of_motion();** in Main.rs File like this
Rust
use std::io;
extern crate phy_numerical;
fn main () {
//For Second equation of motion
phynumerical::Secondequationofmotion();
} ```
Note : You cannot find time in second Equation of Motion Because it is impossible to separate t on the right side of equation. - For Third Equation of motion. You write phynumerical::Thirdequationofmotion(); in Main.rs File like this ```Rust use std::io;
extern crate phy_numerical;
fn main () {
//For Third equation of motion
phynumerical::Thirdequationofmotion();
} ```