Metadata-Version: 2.1
Name: gravity-simulation
Version: 2.0.1
Summary: calculation and visualization of n-bodies gravity
Home-page: https://github.com/daodavid/gravity-simulation
Author-email: dstankov1993@gmail.com
License: MIT
Description: 
        # Gravity simulation 
        ### Python package  for calculation and simulation of n-bodies interaction  under  the influence of  Gravity force.Written in NumPy and Numba.
        
          
        <br> <br>
          <img height="500" width="400" src="https://daodavid.github.io/gravity-simulation/resources/galaxy-2g.gif">
          <img height="500" width="400" src="https://daodavid.github.io/gravity-simulation/resources/gift-generated-examples/b-7.gif">
          
          <br> <br>   
          
        ### Installing : 
        ```
        pip install gravity-simulation==2.0.1
        
        ```  
        ### Example : 
        
        ```
        #random example together with one body bigger mass than others
        from gravity_simulation.gravity import *
        
        field.generate_random(15, mass=[20, 500], r=[-5, 5], velocity=[-5, 5], alpha=[0, 360])
        field.add_body(Body(x0=0, y0=0,v_x=0, v_y=0, mass = 3000))
        
        field.run(1300, C=0.01)
        field.save_animation(frames=50,name='my_example',reduce_size_body=50,frames=150)
        
        ```
        [more ... ](https://github.com/daodavid/gravity-simulation/tree/gh-pages/examples)
        ### Docs
        in progress
        
        <br> <br> 
         <img height="500" width="400" src="https://daodavid.github.io/gravity-simulation/resources/new-gift/b_3502.gif">
          <img height="500" width="400" src="https://daodavid.github.io/gravity-simulation/resources/new-gift/g-22.gif">
         <br> <br>
          <img height="500" width="400" src="https://daodavid.github.io/gravity-simulation/resources/gift-generated-examples/b-16.gif">
          <img height="500" width="400" src="https://daodavid.github.io/gravity-simulation/resources/gift-generated-examples/b-11.gif">  
        <br> <br>
        <img height="500" width="400" src="https://daodavid.github.io/gravity-simulation/resources/new-gift/ex49.gif">
        <img height="500" width="400" src="https://daodavid.github.io/gravity-simulation/resources/new-gift/2b-1.gif">
        
        <br> <br>
        
        ##### My personal opinion is that the  Nympy is an incredible library and without it, The Python is nothing (just an easy programming language and so on), but with the Numpy, The  Python is able to solve serious processes involved a huge number of iterations. When the application was written in common Python then the results were quite bad, for example, when the number of bodies is 2000 and number of the iterations is  10000 the duration of the process takes about 2 days because of the app was useless now when the processes are vectorized with <mark>NumPy</mark> and <mark>Numba</mark> the execution time takes about 2 hours.
        
            
         
           
          
        
        
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
