Skip to content

Commit

Permalink
WIP finalizing core api; consolidating readme; #204, #162, #163, #184,
Browse files Browse the repository at this point in the history
  • Loading branch information
cbuahin committed Nov 22, 2024
1 parent 53f9909 commit 2a6acde
Show file tree
Hide file tree
Showing 31 changed files with 873 additions and 271 deletions.
Empty file.
Empty file.
94 changes: 94 additions & 0 deletions .github/workflows/build-and-unit-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
name: Build and Unit Test

on:
push:
branches: [ master, develop, release ]
# pull_request:
# branches: [ master, develop, release ]

env:
OMP_NUM_THREADS: 1
BUILD_HOME: build
TEST_HOME: nrtests
PACKAGE_NAME: vcpkg-export-20220826-200052.1.0.0
PKG_NAME: vcpkg-export-20220826-200052

jobs:
unit_test:
name: Build and unit test
runs-on: windows-2019
environment: testing
defaults:
run:
shell: cmd

steps:
- name: Checkout repo
uses: actions/checkout@v3

- name: Install boost-test
env:
REMOTE_STORE: "https://nuget.pkg.github.com/michaeltryby/index.json"
USERNAME: michaeltryby
run: |
nuget sources add -Name github -Source ${{ env.REMOTE_STORE }} -Username ${{ env.USERNAME }} -Password ${{ secrets.ACCESS_TOKEN }}
nuget install ${{env.PKG_NAME}} -Source github
- name: Build
env:
TOOL_CHAIN_PATH: \scripts\buildsystems\vcpkg.cmake
run: |
cmake -B .\build -DBUILD_TESTS=ON -DCMAKE_TOOLCHAIN_FILE=.\${{env.PACKAGE_NAME}}${{env.TOOL_CHAIN_PATH}} .
cmake --build .\build --config DEBUG
- name: Unit Test
run: ctest --test-dir .\build -C Debug --output-on-failure


reg_test:
name: Build and reg test
runs-on: windows-2019
defaults:
run:
shell: cmd
working-directory: ci-tools/windows

steps:
- name: Checkout swmm repo
uses: actions/checkout@v3

- name: Checkout ci-tools repo
uses: actions/checkout@v3
with:
repository: michaeltryby/ci-tools
ref: master
path: ci-tools

- name: Setup python
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install requirements
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-swmm.txt
- name: Build
run: make.cmd /g "Visual Studio 16 2019"

- name: Before reg test
env:
NRTESTS_URL: https://github.com/USEPA/swmm-nrtestsuite
BENCHMARK_TAG: v2.5.0-dev
run: before-nrtest.cmd ${{ env.BENCHMARK_TAG }}

- name: Run reg test
run: run-nrtests.cmd %GITHUB_RUN_ID%_%GITHUB_RUN_NUMBER%

- name: Upload artifacts
if: ${{ always() }}
uses: actions/upload-artifact@v3
with:
name: build-test-artifacts
path: upload/*.*
34 changes: 0 additions & 34 deletions Build.md

This file was deleted.

123 changes: 113 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,123 @@
ORD Stormwater-Management-Model Solver
==================================

Stormwater Management Model (SWMM) computational engine
EPA ORD Stormwater Management Model (SWMM)
==========================================

Stormwater Management Model (SWMM) computational engine and output post-processing codebase

## Build Status
[![Build and Test](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml)

## Disclaimer
The United States Environmental Protection Agency (EPA) GitHub project code is provided on an "as is" basis and the user assumes responsibility for its use. EPA has relinquished control of the information and no longer has responsibility to protect the integrity, confidentiality, or availability of the information. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by EPA. The EPA seal and logo shall not be used in any manner to imply endorsement of any commercial product or activity by EPA or the United States Government.

[![Build and Unit Testing](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml)
[![Build and Regression Testing](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml)
[![Deployment](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml/badge.svg)](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml)
[![Documentation](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml/badge.svg?branch=docs)](https://github.com/USEPA/Stormwater-Management-Model/actions/workflows/build-and-test.yml)
[![PythonVersion](https://img.shields.io/pypi/pyversions/epaswmm.svg)](https://pypi.org/project/epaswmm)
[![PyPi](https://img.shields.io/pypi/v/epaswmm.svg)](https://pypi.org/project/epaswmm)

## Introduction
This is the official SWMM source code repository maintained by US EPA Office of Research and Development, Center For Environmental Solutions & Emergency Response, Water Infrastructure Division located in Cincinnati, Ohio.

SWMM is a dynamic hydrology-hydraulic water quality simulation model. It is used for single event or long-term (continuous) simulation of runoff quantity and quality from primarily urban areas. SWMM source code is written in the C Programming Language and released in the Public Domain.

## Build Instructions

The 'src' folder of this repository contains the C source code for
version of Storm Water Management Model's computational
engine. Consult the included 'Roadmap.txt' file for an overview of
the various code modules. The code can be compiled into both a shared
object library and a command line executable. Under Windows, the
library file (swmm5.dll) is used to power SWMM's graphical user
interface.

Also included is a python interface for the SWMM computational engine and output
post-processing application programming interfaces located in the python folder.

The 'CMakeLists.txt' file is a script used by CMake (https://cmake.org/)
to build the SWMM binaries. CMake is a cross-platform build tool
that generates platform native build systems for many compilers. To
check if the required version is installed on your system, enter from
a console window and check that the version is 3.5 or higher.

```bash
cmake --version
```

To build the SWMM engine library and its command line executable
using CMake and the Microsoft Visual Studio C compiler on Windows:

1. Open a console window and navigate to the directory where this
Readme file resides (which should have 'src' as a sub-directory
underneath it).

2. Issue the following commands:

```bash
mkdir build
cd build
```

3. Then enter the following CMake commands:

``` bash
cmake -G <compiler> .. -A <platform>
cmake --build . --config Release
```

where `<compiler>` is the name of the Visual Studio compiler being used
in double quotes (e.g., "Visual Studio 15 2017", "Visual Studio 16 2019",
or "Visual Studio 17 2022") and `<platform>` is Win32 for a 32-bit build
or x64 for a 64-bit build. The resulting engine DLL (swmm5.dll), command
line executable (runswmm.exe), and output processing libraries (swmm-output.dll)
will appear in the build\Release directory.

For other platforms, such as Linux or MacOS, Step 3 can be replaced with:

```bash
cmake ..
cmake --build .
```

The resulting shared object library (libswmm5.so or libswmm5.dylib) and
command line executable (runswmm) will appear in the build directory.

The exprimental python bindings can be built and installed locally using the following command.

```bash
cd python
python -m pip install -r requirements.txt
python -m pip install .
```
Users may also build python wheels for installation or distribution. Once the python bindings
have been validated and cleared through EPA'S clearance process, they will be available for installation
via ropsitories such as pypi.

## Unit and Regression Testing

Unit tests and regression tests have been developed for both the natively compiled SWMM computational engine and output toolkit as
well as their respective python bindings. Unit tests for the natively compiled toolkits use the Boost 1.67.0 library and can be
compiled by adding DBUILD_TESTS=ON flag during the cmake build phase as shown below:

```bash
ctest --test-dir . -DBUILD_TESTS=ON --config Debug --output-on-failure
```

Unit testing on the python bindings may be executed using the following command after installation.

```bash
cd python\tests
pytest .
```

Regression tests are executed using the python bindings using the pytest and pytest-regressions extension using the following commands.

```bash
cd ci
pytest --data-dir <path-to-regression-testing-files> --atol <absolute-tolerance> --rtol <relative-tolerance> --benchmark-compare --benchmark-json=PATH
```

## Find Out More
The source code distributed here is identical to the code found at the official [SWMM Website](https://www.epa.gov/water-research/storm-water-management-model-swmm).
The source code distributed here is identical to the code found at the official [SWMM website](https://www.epa.gov/water-research/storm-water-management-model-swmm).
The SWMM website also hosts the official manuals and installation binaries for the SWMM software.

A live web version of the SWMM documentation of the API and user manuals can be found on the [SWMM GitHub Pages website](https://usepa.github.io/Stormwater-Management-Model). Note that this is an alpha version that is still under development and has yet to go through EPA'S official QAQC review process.

## Disclaimer
The United States Environmental Protection Agency (EPA) GitHub project code is provided on an "as is" basis and the user assumes responsibility for its use. EPA has relinquished control of the information and no longer has responsibility to protect the integrity, confidentiality, or availability of the information. Any reference to specific commercial products, processes, or services by service mark, trademark, manufacturer, or otherwise, does not constitute or imply their endorsement, recommendation or favoring by EPA. The EPA seal and logo shall not be used in any manner to imply endorsement of any commercial product or activity by EPA or the United States Government.

47 changes: 0 additions & 47 deletions Readme.txt

This file was deleted.

63 changes: 63 additions & 0 deletions ci/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
# conftest.py
import pytest
import os

def pytest_addoption(parser):
parser.addoption(
"--data-dir", action="store", default=None, help="Directory to search for data files", required=True
)

parser.addoption(
"--atol", action="store", default=None, help="Absolute tolerance for floating point comparisons"
)

parser.addoption(
"--rtol", action="store", default=1.0e-8, help="Relative tolerance for floating point comparisons"
)

parser.addoption(
"--force-regen", action="store_true", default=1.0e-8, help="Force regeneration of the data files"
)

@pytest.fixture
def data_dir(request):
"""
Fixture to get the data directory
"""
return request.config.getoption("--data_dir")

@pytest.fixture
def atol(request):
"""
Fixture to get the absolute tolerance
"""
return request.config.getoption("--atol")

@pytest.fixture
def rtol(request):
"""
Fixture to get the relative tolerance
"""
return request.config.getoption("--rtol")

@pytest.fixture
def force_regen(request):
"""
Fixture to get the force-regen flag
"""
return request.config.getoption("--force_regen")

@pytest.fixture
def discovered_files(data_dir):
"""
Walk through data directory and discover all SWMM input files
"""
if data_dir is None:
return []
return [os.path.join(data_dir, f) for f in os.listdir(data_dir) if os.path.isfile(os.path.join(data_dir, f))]

def pytest_collection_modifyitems(items):
for item in items:
if item.originalname == 'test_compare_node_results' and 'input_file' in item.fixturenames:
input_file = item.callspec.params['input_file']
item._nodeid = f'{item.nodeid}_{os.path.basename(input_file)}'
Empty file added ci/download_benchmarks.py
Empty file.
1 change: 1 addition & 0 deletions ci/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pytest-regressions
16 changes: 16 additions & 0 deletions ci/test_compare_outputs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import pytest
from epaswmm.output import Output

@pytest.mark.parametrize('input_file', discovered_files)
@pytest.mark.benchmark(group='compare_node_results')
def test_compare_node_results_(benchmark, data_regression, input_file):
"""
Compare the results of the node results and benchmark the execution time.
"""
@benchmark
def run_test():
# Your test logic here
assert True

# Optionally, you can add assertions to check the benchmark results
assert benchmark.stats.mean < 0.1 # Example assertion
Loading

0 comments on commit 2a6acde

Please sign in to comment.