Metadata-Version: 2.1
Name: codecat_pypatric
Version: 1.0
Summary: Helper package for the PaTriC particle tracking code.
Home-page: https://github.com/hafizmdyasir/codecat_pypatric
Author: Mohammad Yasir
Author-email: yasir.iitd@outlook.com
License: GNU GPL Version 3
Description-Content-Type: text/markdown

# README for PyPaTriC


This is a helper package for writing input decks for the particle tracking code known as PaTriC located at https://github.com/hafizmdyasir/PaTriC. Contents include ``classes.py``, ``keys.py``, ``deck_tools.py``, ``electric.py``, ``magnetic.py``, ``units.py``, and ``deck_tools.py``.

### classes.py
The ``classes.py`` file contains various classes that can be used as helpers for declaring the initial positions and velocities of particles, as well as some basic electric and magnetic field geometries. PaTriC ships with support for a few predefined options like uniformly placing particles, randomly distributing particles, among other things. These can be requested via the classes defined here.

For electric and magnetic fields, common classes like ``Static``, ``SinField``, ``GaussField``, etc. are defined here while separate files exist for specific geometries like ``Coil``, ``Dipole`` etc.


### keys.py
The input deck is defined using four dictionaries, namely, ``Control``, ``Particle``, ``Fields``, and ``Output``. The keys used to define them are special and are stored in this file. This minimises errors and mitigates unexpected behaviour.

### units.py
The ``units.py`` file contains various functions that can be used to convert between different units. Furthermore, a few helper constants to quickly convert length and time into micro, nano, and other units are also defined.

### electric.py and magnetic.py
These two modules contain classes that are specifically for supplying pre-defined electric and magnetic fields to the simulation. They inherit a few common classes from ``classes.py``.

### deck_tools.py
This is the heart of the package and the user must always import everything from it using ``from codecat_pypatric.deck_tools import *``. Refer to the documentation website for more information.


## Usage
You can either download the package from its GitHub repository, or using pip. The syntax for the latter is ``pip install codecat_pypatric``. For a detailed guide, refer to the documentation at https://www.github.com/hafizmdyasir/PaTriC.

Once installed, import everything from ``deck_tools.py`` to get started with the bare minimum. Creating the input deck is explained in the documentation for PaTriC. Optionally, you can import ``pypatric.units`` for some unit conversions and manipulations.
