5 Installation and Usage

SIRA is built on Python 3.x. Python hardware requirements are fairly minimal. Most modern systems based on x86 architecture should be able to run this software.

The directory structure of the code is as follows:

.
├── docs/                        <-- Sphinx documentation files
│   └── source/
├── hazard/                      <-- Hazard scenario files (for networks)
├── installation/                <-- Installation scripts for dev envs
├── sira/                        <-- The core codebase resides here
│   ├── __init__.py
│   ├── __main__.py              <-- Entry point for running the code
│   ├── modelling/
│   ├── scripts/
│   └── tools/
├── tests/                       <-- Test scripts + data for sanity checks
│   ├── historical_data/
│   ├── models/
│   └── simulation_setup/
│
├── LICENSE                      <-- License file
├── pyproject.toml               <-- Project configuration file
└── README.md                    <-- Summary documentation and usage notes

5.1 Requirements

SIRA has been tested on the following operating systems:

  • Windows 10 and 11 (64 bit)

  • Ubuntu 14.04 (64 bit)

  • OS X 10.11+

The code should work on more recent versions of these operating systems, though the environment setup process may have some differences. Windows systems that are not based on the NT-platform are not supported. This restriction is due to the fact that from version 2.6 onwards Python has not supported non-NT Windows platforms.

You will need to install Graphviz, which is used by networkx and pygraphviz packages to draw the system diagrams. On Windows platforms, the simplest way to install Graphviz is to use mamba. Alternatively, please visit: https://www.graphviz.org/ and download the appropriate version for your operating system. Follow the posted download instructions carefully. After installation you may need to update the PATH variable with the location of the Graphviz binaries. On Linux platforms, Graphviz can be installed using the package manager, e.g., sudo apt-get install graphviz on Debian-based systems.

5.3 Running SIRA in Docker

Docker creates containers that provide independence of platforms when developing applications and services. So Docker removes the requirement for Conda to organise the Python libraries. The Docker image is built on top of the official Python 3.11 image, and the required Python packages are installed using pip. The Docker image is built using the provided Dockerfile in the installation directory.

SIRA can be run in a Docker container, providing platform independence and simplified dependency management. Docker configuration files are provided in the installation/ directory.

Quick Setup:

  1. Create data directories for model and simulation data outside the SIRA repository.

    # From parent directory of sira code
    mkdir -p sira_simulation_data sira_outputs
    

    The recommended directory structure is illustrated below:

    .                                          # workspace root
    ├── sira/                                  # SIRA code repository
    │   └── installation/
    │       ├── Dockerfile
    │       └── docker-compose.yml
    │
    ├── sira_simulation_data/                  # simulation scenario data
    │   └── asset_1/
    │       ├── input/
    │       │   ├── config_simulation.json
    │       │   └── model_infrastructure.json
    │       └── output/                        # SIRA creates this
    │
    └── sira_outputs/      # alternate output loc can be configured
    
  2. Place your model and config files in sira_simulation_data/.

  3. Build and run with Docker Compose:

    cd sira/installation
    docker compose build
    docker compose up sira
    

Docker Run Modes:

  • Simulation mode (default): Runs a configured simulation:

    docker compose up sira
    
  • Interactive mode: Opens a bash shell for manual commands:

    docker compose run --rm sira-interactive
    
  • Test mode: Runs the test suite:

    docker compose run --rm sira-test
    

Direct Docker Usage (without Compose):

Build the image:

docker build -f installation/Dockerfile -t sira:latest .

Run a simulation:

docker run -v /path/to/sira_simulation_data:/scenarios \
    -v /path/to/sira_outputs:/outputs \
    sira:latest python -m sira -d /scenarios/my_project -sfl

Note: The Docker setup uses volume bindings to keep model/config data and outputs separate from the code repository. Update paths in installation/docker-compose.yml to match your directory structure. See installation/README_DOCKER.md for detailed instructions.

5.4 Running a Simulation with SIRA

The code needs a simulation setup file and an infrastructure model file to run a simulation, as discussed in Simulation Setup.

For the purposes of discussion, it is assumed that the name of the project simulation directory is ‘PROJECTX’, located in the root directory. The system name assumed is ‘SYSTEM_D’.

The software can be run from the command line using these simple steps:

  1. Open a command terminal

  2. Change to the directory that has the sira code. Assuming the code is in the directorty /Users/user_x/sira, run:

    cd ~/sira/
    
  3. Run the primary system fragility characterisation module from the command line using the following command:

    python sira -d ./PROJECTX/SYSTEM_D/ -s
    

The code must be provided the full or relative path to the project directorty that holds the input dir with the required config and model files.

The post-processing tools are run as simple python scripts. It should be noted, that the post-processing tools depend on the outputs produced by a full simulation run that characterises the system fragility. Therefore, the full run of the SIRA needs to be conducted on the system model of interest prior to running the tools for the loss scenario and restoration analysis tools.

To run the post-simulation analysis on the generated output data, we need to supply the flaf -f for model fitting, and the flag -l for loss analysis. The flags can be combined.

To run the characterisation simulation, followed by model fitting, and loss and recovery analysis, the command is:

python sira -d ./PROJECTX/SYSTEM_D/ -sfl

5.4.1 Running Code Tests

After installation, it would be prudent to run the suite of tests to ensure everything is working correctly. To run the tests, users need to be in the root directory of the code, e.g. ~/code/sira. Then simply run:

pytest

If you want to explicitly ask pytest to run coverage reports, then run:

pytest --cov-report term --cov=sira tests/

If you are using docker as described above, you can do this from within the sira container.

5.4.2 Runtime Flags

SIRA recognises several environment flags to control behaviour related to detection and selection of the appropriate backend. Setting these flags is optional. These need to be set in the shell before running SIRA.

SIRA_ENABLE_GPU_DETECT
  • Purpose: Enable optional GPU detection during environment setup.

  • Default: 0 (disabled). When set to 1, SIRA will attempt to detect CUDA GPUs via PyTorch (if installed) or TensorFlow (if installed). Detection is informational only; SIRA does not currently perform GPU-accelerated computation.

  • Example (PowerShell):

    $env:SIRA_ENABLE_GPU_DETECT = "1"
    python -c "from sira.parallel_config import ParallelConfig;
        ParallelConfig().print_config_summary()"
    
SIRA_FORCE_NO_MPI
  • Purpose: Explicitly disable MPI detection and usage.

  • Default: 0 (not forced). When set to 1, SIRA treats the environment as non-MPI even if MPI-related variables are present, and falls back to multiprocessing.

  • Example (PowerShell):

    $env:SIRA_FORCE_NO_MPI = "1"
    

Note

  • These flags only affect detection and backend selection. Core computations remain CPU-based unless an MPI backend is explicitly selected and available.

  • Flags can be set per-session or integrated into CI/CD environment configuration.

5.5 Parallel Execution

SIRA supports multiprocessing locally and MPI on HPC systems. The MPI backend is preferred when available; otherwise, SIRA uses efficient multiprocessing with sensible defaults.

Notes on selecting the parallel backend:

  • Default (auto-detect): if launched under an MPI environment (e.g., mpirun/mpiexec/srun or SLURM/PBS variables present), SIRA uses MPI; otherwise it uses multiprocessing:

    python -m sira -d scenario_dir/ci_model_x -s --parallel-backend auto
    
  • Force MPI: requires launching with an MPI launcher (and mpi4py installed). Example:

    mpirun -n 8 python -m sira -d scenario_dir/ci_model_x -s --parallel-backend mpi
    
  • Force multiprocessing: runs locally without MPI. You can cap workers with –max-workers:

    python -m sira -d scenario_dir/ci_model_x -s --parallel-backend multiprocessing --max-workers 8
    
  • Disable parallel entirely (useful for debugging):

    python -m sira -d scenario_dir/ci_model_x -s --disable-parallel
    

Optional tuning:

  • Tune SIRA defaults using –scenario-size auto|small|medium|large|xlarge when no config file is provided (auto is recommended).

  • There is an option to explicitly provide a JSON config via –parallel-config to pin backend and worker counts.

5.5.1 HPC / MPI Environment Flags

When running large-scale simulations on HPC (e.g. Gadi with PBS + OpenMPI), SIRA recognises additional environment flags. These flags are used in job scripts. These tune streaming, logging, batching and consolidation behaviour. All are optional; unset flags fall back to internal defaults.

SIRA_LOG_LEVEL
  • Sets Python logger verbosity (e.g. INFO, DEBUG, WARNING).

  • Lower verbosity reduces I/O overhead in large parallel runs.

SIRA_QUIET_MODE
  • 1 suppresses progress / non-essential console output.

  • 0 shows normal progress.

SIRA_STREAM_DIR
  • Directory for per-rank / per-process streamed intermediate artifacts (NPZ, manifests).

  • Use fast local node storage (e.g. burst buffer) for performance; consolidate later.

SIRA_DEFER_CONSOLIDATION
  • 1 skips in-process aggregation of streamed artifacts until a post-run consolidation step.

  • Improves runtime on large ranks.

SIRA_SAVE_COMPTYPE_RESPONSE
  • 1 to persist component-type response arrays; 0 to skip.

  • Saves aggregated loss metrics by type.

SIRA_SAVE_COMPONENT_RESPONSE
  • 1 to persist per-component response arrays (larger footprint).

  • 0 to reduce storage (default in scripts).

SIRA_CHUNKS_PER_SLOT
  • Controls how many streaming chunks each CPU slot (rank/worker) emits before rolling over to a new file.

  • Lower values reduce memory overhead; higher values reduce file count.

SIRA_STREAM_COMPRESSION
  • Compression codec for streamed artifacts (e.g. snappy, zstd).

  • Choose fastest acceptable for your I/O profile.

SIRA_STREAM_ROW_GROUP
  • Target row-group / block size (in rows) for streamed tabular data; balances read amplification vs memory.

  • Large hazards benefit from larger values (e.g. 524288).

SIRA_MIN_HAZARDS_FOR_PARALLEL
  • Integer threshold for number of hazard events to enalble parallel processing.

  • If total hazard events below this value, SIRA may avoid spawning full parallel workers to reduce overhead.

SIRA_HPC_MODE
  • 1 enables HPC-oriented heuristics (larger batches, reduced chatter, defensive memory usage).

  • When unset, defaults remain more general-purpose.

SIRA_MAX_BATCH_SIZE
  • Caps batch size used in processing loops even if auto-tuning would choose larger

  • Helps prevent memory spikes on dense component sets.

SIRA_CLEANUP_CHUNKS
  • 1 removes staged per-node chunk directories after consolidation to reclaim scratch space.

  • 0 keeps them for inspection.

PYTHONHASHSEED
  • Standard Python reproducibility flag (e.g. set to 0).

  • Ensures consistent hash-based ordering when determinism is required.

Example (PBS + OpenMPI snippet):

export SIRA_LOG_LEVEL=INFO
export SIRA_QUIET_MODE=1
export SIRA_STREAM_DIR="/iointensive/sira_${PBS_JOBID}"
export SIRA_DEFER_CONSOLIDATION=1
export SIRA_SAVE_COMPTYPE_RESPONSE=1
export SIRA_SAVE_COMPONENT_RESPONSE=0
export SIRA_CHUNKS_PER_SLOT=1
export SIRA_STREAM_COMPRESSION=snappy
export SIRA_STREAM_ROW_GROUP=524288
export SIRA_MIN_HAZARDS_FOR_PARALLEL=100000
export SIRA_HPC_MODE=1
export SIRA_MAX_BATCH_SIZE=1000
export PYTHONHASHSEED=0

The recommendation for large jobs is to:

  • start only with SIRA_HPC_MODE=1 and SIRA_STREAM_DIR,

  • identify bottlenecks through profiling or HPC logs, and

  • then layer additional flags as needed.