Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/rohankishore/physipy

Python Library to calculate all types of Physics Formulae, both for calculations and research
https://github.com/rohankishore/physipy

equation-solver equations library numpy physics physics-analysis physics-engine physics-simulation python research research-project

Last synced: 28 days ago
JSON representation

Python Library to calculate all types of Physics Formulae, both for calculations and research

Awesome Lists containing this project

README

        

PhysiPy

Physics Equation Solver and Constants for Python

![License](https://img.shields.io/badge/Install-PyPI-blue)
![License](https://img.shields.io/badge/License-MIT-yellow)
![Demo](https://img.shields.io/badge/Fiverr-Hire-green)

PhysiPy is a powerful and versatile Python library designed to streamline physics calculations and provide easy access to a vast collection of essential physical constants. Whether you are a student, researcher, or an enthusiast seeking to explore the intricacies of the physical world, PhysiPy is an indispensable tool for your scientific endeavors.

With PhysiPy, you can effortlessly perform complex physics computations without the need for extensive manual coding. The library encompasses a wide range of formulas and equations spanning various branches of physics, including mechanics, electromagnetism, thermodynamics, quantum mechanics, and more. From simple kinematic equations to intricate quantum mechanical wavefunctions, PhysiPy has you covered, simplifying the process of implementing these calculations into your code.

One of the key features of PhysiPy is its extensive collection of physical constants. It contains hundreds of well-documented and up-to-date constants that are crucial for numerous calculations and experiments. These constants encompass fundamental values such as the speed of light, Planck's constant, elementary charge, Avogadro's number, and many more. By having this wealth of constants readily available, PhysiPy eliminates the need to search for and manually input these values, ensuring accuracy and efficiency in your calculations.




PhysiPy API is currently in development by [Vikram Samak](https://github.com/vikramsamak) and can be found [here](https://github.com/vikramsamak/PhsiPy-Api)


Installation

```bash
pip install PhysiPy-Python
```

You can also install it via the given .targz file. Here are the steps:


- Download the `PhysiPy-1.0.0.tar.gz` file from the `dist` folder in the repository
- Now, copy the path of the downloaded `.tar.gz` file
- Open Terminal and type in the following command:
` pip install `


Features in a Glance

- Over 100 pre-defined Physics Equations (Just substitute the values inside function)
- Over 150+ constants (including Boltzmann Constant, Gravitational Constants, and much more)
- Extremely quick since its uses Numpy


Demo Snippets


```python
# to calculate resistance

import PhysiPy.Electricity as ec

a = ec.resistance(25, 10)
print(a)

>> 2.5
```


```python
# to calculate gravitational potential

import PhysiPy.Gravitation as gr

a = gr.gravitational_acceleration(25, 1200)
print(a)

>> 1.1586944444444442e^-15
```