{"id":13949113,"url":"https://github.com/OpenWaterAnalytics/epanet-rtx","last_synced_at":"2025-07-20T11:30:54.135Z","repository":{"id":4750441,"uuid":"5900277","full_name":"OpenWaterAnalytics/epanet-rtx","owner":"OpenWaterAnalytics","description":"Real-time extension to the EPANET hydraulic toolkit","archived":false,"fork":false,"pushed_at":"2025-05-09T13:36:41.000Z","size":5337,"stargazers_count":61,"open_issues_count":22,"forks_count":43,"subscribers_count":39,"default_branch":"dev","last_synced_at":"2025-07-09T00:45:07.431Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OpenWaterAnalytics.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2012-09-21T11:06:30.000Z","updated_at":"2025-05-22T12:37:18.000Z","dependencies_parsed_at":"2023-09-26T22:50:24.615Z","dependency_job_id":"d2748d53-6798-4150-91a5-b18b166892e8","html_url":"https://github.com/OpenWaterAnalytics/epanet-rtx","commit_stats":{"total_commits":1228,"total_committers":11,"mean_commits":"111.63636363636364","dds":0.253257328990228,"last_synced_commit":"57b3220c119ea71607469cb197098a39d9beb776"},"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/OpenWaterAnalytics/epanet-rtx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenWaterAnalytics%2Fepanet-rtx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenWaterAnalytics%2Fepanet-rtx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenWaterAnalytics%2Fepanet-rtx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenWaterAnalytics%2Fepanet-rtx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OpenWaterAnalytics","download_url":"https://codeload.github.com/OpenWaterAnalytics/epanet-rtx/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OpenWaterAnalytics%2Fepanet-rtx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265481676,"owners_count":23773939,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-08T05:01:38.596Z","updated_at":"2025-07-20T11:30:54.129Z","avatar_url":"https://github.com/OpenWaterAnalytics.png","language":"C++","funding_links":[],"categories":["Natural Resources"],"sub_categories":["Water Supply and Quality"],"readme":"EPANET-RTX Library\n==================\n\nIntroduction\n------------\nEPANET-RTX is the real-time extension to the EPANET Hydraulic Toolkit. It provides an interoperable framework for moving data between a SCADA database, various time series analysis methods, and a hydraulic solver.\n\nThis project is being developed and maintained by a multidisciplinary team with various affiliations (members listed in alphabetical order):\n \n - Ernesto Arandia-Perez (developer, University of Cincinnati)\n - Sam Hatchett (lead developer, CitiLogics)\n - Robert Janke (design team, USEPA)\n - Tom Taxon (developer, Argonne National Lab)\n - Jim Uber (design team, CitiLogics / University of Cincinnati)\n - Hyoungmin Woo (developer, University of Cincinnati)\n \nIntended Audience\n-----------------\n The intended audience for this software can be divided roughly into two groups:\n \n - Programmers interested in water distribution system simulation\n - Water distribution simulation engineers interested in programming\n \n The key here is an orientation towards folks who are comfortable with code. The RTX library is not a program per se, but a set of building blocks for constructing your own real-time simulation environment. If you've ever hacked EPANET or built a Matlab script for running hydraulic simulations, this library might be for you.\n \nFind Out More\n------------------ \nGet more info from the [official documentation](http://OpenWaterAnalytics.github.com/epanet-rtx/) and the [wiki](https://github.com/OpenWaterAnalytics/epanet-rtx/wiki).\n\nActive Development\n------------------\nWe are actively developing features in the following areas:\n- Time Series Forecasting\n- Water Age / Water Quality\n\n\nBuilding\n--------\n\n```\n# debug\nconan install . --profile=x86 -s build_type=Release --build=missing \u0026\u0026 \\\nconan install . --profile=x86 -s '\u0026:build_type=Debug' -s 'tsflib*:build_type=Debug' -s 'epanet*:build_type=Debug' -s build_type=Release --build=missing \u0026\u0026 \\\nconan build . --profile=x86 -s build_type=Debug \u0026\u0026 \\\nconan export-pkg . --profile=x86 -s build_type=Debug\n\n# release\nconan install . --profile=x86 --build=missing -s build_type=Release\nconan build . --profile=x86 --build=missing -s build_type=Release\nconan export-pkg . --profile=x86 -s build_type=Release\n\n# run tests\n./build/Release/bin/rtx_test\n```\n\nif you are developing RTX as a dependent package locally, do this instead:\n\n```\nconan editable add .\nconan install . --profile=x86 -s build_type=Release --build=missing \u0026\u0026 \\\nconan install . --profile=x86 -s '\u0026:build_type=Debug' -s 'tsflib*:build_type=Debug' -s 'epanet*:build_type=Debug' -s build_type=Release --build=missing \u0026\u0026 \\\nconan build . --profile=x86 -s build_type=Debug \u0026\u0026 \\\nconan export-pkg . --profile=x86 -s build_type=Debug\n\n\n```\n\n### Docker Build\n\n```\ndocker buildx build -t epanetrtx-test -f epanet-rtx.docker --platform linux/amd64 .\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOpenWaterAnalytics%2Fepanet-rtx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FOpenWaterAnalytics%2Fepanet-rtx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOpenWaterAnalytics%2Fepanet-rtx/lists"}