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
- Host: GitHub
- URL: https://github.com/metastag/pylator
- Owner: MetaStag
- Created: 2023-11-27T05:12:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-10-29T18:39:00.000Z (over 1 year ago)
- Last Synced: 2024-10-29T20:39:18.559Z (over 1 year ago)
- Topics: hacktoberfest
- Language: Python
- Homepage:
- Size: 239 KB
- Stars: 1
- Watchers: 1
- Forks: 8
- Open Issues: 5
-
Metadata Files:
- Readme: readme.md
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

---
### 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
```