ZerOBNL

Logo

ZerOBNL is a co-simulation platform.

View the Project on GitHub IntegrCiTy/zerobnl

Installation Instructions

Prerequisites

ZerOBNL requires the following software to be installed on your system (follow the links for instructions):

Installation on Linux (Instructions for Windows below)

It is recommended to install ZerOBNL in an isolated Python environment. This can be done with the help of the virtualenv package, which can be installed with the help of pip from the command line:

$ pip3 install virtualenv

Create a Python virtual environment called zero:

$ virtualenv -p python3 zero

Activate the virtual environment:

$ source zero/bin/activate

Download the ZerOBNL source code:

(zero)$ git clone https://github.com/IntegrCiTy/zerobnl.git

Install ZerOBNL as an editable project from its root directory:

(zero)$ cd zerobnl
(zero)$ pip install -e .

Testing

Run the tests to verify the installation was successful:

(zero)$ pip install pytest
(zero)$ pytest

If everything works, you should see something like the following output:

================================ test session starts =================================
platform linux -- Python 3.5.3, pytest-5.3.1, py-1.8.0, pluggy-0.13.1
rootdir: /home/user/zerobnl
collected 19 items

tests/test_create.py .............                                             [ 68%]
tests/test_deploy.py .....                                                     [ 94%]
tests/test_results.py .                                                        [100%]

=========================== 19 passed in 206.93s (0:03:26) ===========================

Examples

To run the examples, use Jupyter Notebook and navigate to the examples subfolder:

(zero)$ pip install jupyter matplotlib
(zero)$ jupyter notebook &

Troubleshooting

In case the Jupyter notebooks do not work properly within the virtual environment, try one of the following:

Verified Linux Setups

Version V1.0 of ZerOBNL has been successfully installed and tested on the following Linux setups:

Ubuntu (recommended Linux setup):

Debian:

Installation on Windows

Use Git for Windows to clone the zerobnl repository. For instance, when using Git Bash type the following on the command line:

> git clone https://github.com/IntegrCiTy/zerobnl

Use pip in the Windows command line to install virtualenv and virtualenvwrapper-win:

> pip install virtualenv
> pip install virtualenvwrapper-win

Use mkvirtualenv in the Windows command line to create and start a Python (3.X) virtual environment called zero and acivate it:

> mkvirtualenv -p C:\path\to\python.exe zero

Optional: In the virtual environment, set the working directory to the zerobnl root directory:

(zero) setprojectdir C:\path\to\zerobnl

Install ZerOBNL as an editable project from its root directory:

(zero) cd zerobnl
(zero) pip install -e .

Testing

Run the tests to verify the installation was successful:

(zero)$ pip install pytest
(zero)$ pytest

If everything works, you should see the following output:

================================ test session starts =================================
platform win32 -- Python 3.6.4, pytest-4.4.1, py-1.8.0, pluggy-0.9.0
rootdir: C:\integrcity\zerobnl
collected 19 items

tests/test_create.py .............                                             [ 68%]
tests/test_deploy.py .....                                                     [ 94%]
tests/test_results.py .                                                        [100%]

=========================== 19 passed in 206.93s (0:03:26) ===========================

Examples

To run the examples, use Jupyter Notebook and navigate to the examples subfolder:

(zero)$ pip install jupyter matplotlib
(zero)$ jupyter notebook

Troubleshooting

In case ZerOBNL does not produce any results, check file nodes.log for error messages like the following:

python: can't open file 'main.py': [Errno 2] No such file or directory

In this case, make sure that Docker can properly access the hard drive (see here for instructions).

Verified Windows Setups

Version V1.0 of ZerOBNL has been successfully installed and tested on the following Windows setup:

HOME