Getting Started with SIPNET¶
Use this guide to install the prerequisites, build the model, and run your first simulations and tests.
Requirements¶
gccorclangmake
Quick Start¶
- Clone the repository:
git clone https://github.com/PecanProject/sipnet.git cd sipnet - Build the SIPNET executable:
make - Change directory and run a test simulation:
cd tests/smoke/niwot ../../../sipnet -i sipnet.in - Check the output:
cat niwot.out
Run Tests¶
- Unit tests:
make unit # or: make testbuild && ./tools/run_unit_tests.sh - Smoke tests:
make smoke # or: ./tests/smoke/run_smoke.sh - Full tests (build + unit + smoke):
make test - Clean up test artifacts:
make testclean