#!/bin/bash

# set environment variables required to run custom Arbor installation
source set_arbor_env

# build the mechanisms
arbor-build-catalogue custom mechanisms

# run the simulation
python3 ./arborNetworkConsolidationTest.py -s_desc="short timesteps" -config_file="config_net_test.json" -runtime=28.82 -dt=0.05
python3 ./arborNetworkConsolidationTest.py -s_desc="medium timesteps" -config_file="config_net_test.json" -runtime=28820.00 -dt=50.00
python3 ./arborNetworkConsolidationTest.py -s_desc="long timesteps" -config_file="config_net_test.json" -runtime=28820000.00 -dt=50000.00
#python3 ./arborNetworkConsolidationTest.py -s_desc="long timesteps" -config_file="config_net_test.json" -runtime=28820000.00 -dt=500.00

