Skip to main content

cfmdarts is a Python library that simulates the projectile motion of darts.

Project description

cfmdarts

cfmdarts is a Python library that simulates the projectile motion of darts.

Table of Contents

  1. Introduction
  2. Installation
  3. Tutorials
  4. How To Guides
  5. Testing
  6. Explanation
  7. License

Introduction

This project has an extremely trivial goal. Simply input 3 values relating to the throw of a dart

  • tilt angle
  • swivel angle (both in degrees)
  • initial velocity (in metres per second).

Then output the score of which is obtained. This project involves many areas of mathematics to solve. Primarily Mechanics and Geometry.

Installation

Use the package manager pip to install cfmdarts.

pip install cfmdarts

NOTE: It is recommended to have a Python version which is greater that 3.6 to be installed.

Tutorial

In order to use cfmdarts is really simple. To use in your project, you type

from cfmdarts import*

How To Guides

These next guides are simple pieces of code to get you started using cfmdarts.

Creating a new Projectile object.

from cfmdarts import*

#Creating a new Projectile object called Object1
#with tilt_angle=2, swivel_angle=1.5 and initial_velocity=21

Object1 = cfmdarts.Projectile(2, 1.5, 21)

Outputting a new Projectile objects range, height and shift values.

from cfmdarts import*

#Creating a new Projectile object called Object1
#with tilt_angle=2, swivel_angle=1.5 and initial_velocity=21

Object1 = cfmdarts.Projectile(2,1.5,21)

##This outputs the follow
print(Object1.range())
print(Object1.height())
print(Object1.shift())

Output:

2.370812418203357
0.02019783552359672
0.06206063411897303

Creating a coordinates object to calculate and output the cartesian and polar coordinates

from cfmdarts import*

#Creating a coordinates object called coord1
#with tilt_angle=2, swivel_angle=1.5 and initial_velocity=21

Coord1 = cfmdarts.Coordinates(2,1.5,21)

## These two statements below print out the
## cartesian and polar coordinates.
print(Coord1.cartesian_coordinates())
print(Coord1.polar_coordinates())

Output:

[0.06206063411897303, 0.02019783552359672]
[0.06526465250874554, 18.027647207949578]

Creating a data simulation using the dart_simulation that returns a final score.

from cfmdarts import*

#Creating a variable called 'simulation1'.
simulation1 = cfmdarts.dart_simulation(2, 1.5, 21)

##Outputs the final score from simulation1
print(simulation1)

Output:

13

Creating a Dartboard Plot of the score using Display

from cfmdarts import*

#Creating a new Coordinates object.
Coord1 = cfmdarts.Coordinates(2,1.5,22)

##These two lines below print out the respective r and theta values
##of the coordinates object.
print(Coord1.r())
print(Coord1.theta())

###This function displays a graphical image of a dartboard with the score
###Being displayed as a red cross.
cfmdarts.display_dartboard(Coord1.r(),Coord1.theta())

Output in the terminal and the following display:

0.06719401869315685
22.54128468531238

Screenshot

Example of a dart simulation that has an incorrect input case with tilt_angle being an invalid input

from cfmdarts import*

#Creating a variable called 'simulation1'.
simulation1 = cfmdarts.dart_simulation(-91, 2, 29)

##Outputs the final score from simulation1
print(simulation1)

Output:

null shot, please ensure the tilt and swivel angles are both between -90 and 90, and that the velocity is positive

Testing

To test the code:

$ python test_cfmdarts.py

Explanation

Phase I - Projectile In 3D

We must first consider the 2-dimensional plane (x,y) in which our dart travels through. Doing, we can model the trajectory of the dart using projectile motion in order to obtain the range, height, and shift of the dart relative to the bullseye. We can say that air resistance of the dart is negligible.

Phase II - Geometry Of Dartboard

Determining the score is precisely the same as determining the position at which the dart landed on the dartboard. We will obtain (via the specified throw) 2 distances relative to the distance from the bullseye. Using these 2 values as Cartesian coordinates, we can translate the position into polar form r, θ via similar methods to determining the modulus and argument of a complex number. See the Coordinates class in how this was achieved.

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cfmdarts-0.1.6.tar.gz (49.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page