ubsuny / 23-Homework4G1

This is the main repository for 23-Homework4G1 and is based on GitHub actions for linting and unit testing.
https://github.com/ubsuny/23-Homework4G1
Apache License 2.0
1 stars 11 forks source link

Elaboration #54

Closed Mosaddeq107 closed 11 months ago

Mosaddeq107 commented 11 months ago

Since I was not involved in this homework, can you (@reshnashrestha ) please explain what these variables (x0, y0, v0, and m) mean?

https://github.com/ubsuny/23-Homework4G1/blob/df7a657e54373da39e06172dad64aa2509163ad9/projectile_motion_with_air_resistance.py#L8

reshnashrestha commented 11 months ago

Yeah sure @Mosaddeq107

reshnashrestha commented 11 months ago

x0, y0: Initial position (in meters) of the projectile (default: (0.0, 0.0)). v0: Initial velocity (m/s) of the projectile. Launch angle in degree and m is mass.

AhmedCode99 commented 11 months ago

true

Mosaddeq107 commented 11 months ago

x0, y0: Initial position (in meters) of the projectile (default: (0.0, 0.0)). v0: Initial velocity (m/s) of the projectile. Launch angle in degree and m is mass.

Thank you for your clarification.