An open API service indexing awesome lists of open source software.

https://github.com/metastag/pylator

A GUI Physics Problem Solver written in Python
https://github.com/metastag/pylator

hacktoberfest

Last synced: 12 months ago
JSON representation

A GUI Physics Problem Solver written in Python

Awesome Lists containing this project

README

          

# Pylator

Pylator is a advanced GUI Physics Problem Solver written in python.

It uses `tkinter` for the GUI, `sympy` to solve equations, `matplotlib/numpy` to plot graphs, and `math` for some additional functions

It aims to provide a sleek ui/ux while being as practical as possible.

---
### Screenshot
Screenshot

---
### Features
- Quadratic Equation solver
- Body Mass Index calculator
- 2 variable simultaneous equation solver
- Electric Circuit solver (computes V,I,R,P and V/I graph)
- Sides of Triangle solver
- Marathon problem solver (Angle of depression)

---

### Contribution
- Fork this repo
- Clone from your terminal
- Install these libraries from pip - tkinter, sympy, numpy, matplotlib, tkhtmlview
- Make your changes
- Push with a proper commit name
- Make a Pull Request

```
git clone
To create virtual environment
py -m venv .venv

This will create a .venv folder.
navigate to .venv/Scripts

activate the venv (Virtual Environment)

Now install dependencies.

pip install -r requirements.txt

```