
# Strongly Segregated Polygon (SSP) Minimisation Script

This script executes the minimisation of free energy for a given polygonal geometry using the Strongly Segregated Polygon
(SSP) model.

## Requirements

- Python 3.x
- Required Python packages:
    - numpy
    - matplotlib
    - scipy

## Usage

Open a terminal and run:

    python ssp_excecute.py <geometry_file> [--saveinitialimage] [--saveminimisedimage]

- `<geometry_file>`: Path to the initial geometry file (required).
- `--saveinitialimage`: Save an image of the initial geometry (optional).
- `--saveminimisedimage`: Save an image of the minimised geometry (optional).

### Example

    python ssp_excecute.py input_geometry.txt --saveinitialimage --saveminimisedimage

This will read `input_geometry.txt`, perform the minimisation, and save images of both the initial and minimised geometries
in the `plots/` directory.

