Skip to main content

REstoration of Water after Event Tool (REWET)

Project description

Build Status

REWET

REstoration of Water after Event Tool (REWET) is a tool for simulating the functionality of water distribution networks after natural hazard events. It is designed to support any network with state-of-the-art hydraulic simulation capabilities and damage modeling.

Documentation

REWET's documentation is being devloped and is accessible. Meanwhile, please refer to the PhD Dissertation.

Installation

The current release of REWET (V0.2.0-Alpha.1) supports Windows, Linux, and MacOS(Excluding M1, M2 and M3 CPUS). The repository version also supports Linux AMD64.

1. Dependencies and Virtual Environment

To install the package, first install the dependencies. Using a virtual environment with Python virtual environment or Anaconda is recommended.

[!NOTE] We leave creating and activating a virtual environment to the users. The links provided above are sufficient for learning how to do so.

2. Install REWET

For installing REWET, please make sure you have Python installed on your machine. The latest version of the Pyhton that we tested REWET with is 3.9.13. However, you may be able to run REWET with higher version too. We just did not test it! Also, the oldest version of Python that REWET works with is 3.6. Based n your needs, you can choose one of the following methods.

2.1 PyPi

After activating the virtual environment, you can easily install REWET using PyPi. To so so, open the comman prompt/terminal in your machine and type the following:

pip3 install rewet

2.2 Download the Repository

You can also use GIT to clone REWET's repository and change the current directory to the cloned repository:

git clone https://github.com/snaeimi/REWET.git
cd REWET

Alternatively, download the code and unzip the file from the project GitHub and change the current directory to the decompressed directory.

2.2.1 Install as Users

Being in REWET's directory, type:

python -m pip install
2.2.2 Install as Developers

Being in REWET's directory, type:

python -m pip install -e .

When you install REWET as developer (i.e., using "-e ."), the package is not coppied to where Python usually keeps its packages. This helps you to modify and use the code as you go.

Usage

After installing REWET, you can use it in several ways. To run REWET, import and run it in any code:

from rewet.initial import Starter
start = Starter()
start.run()

Running the code above will execute the example. However, you may want to run your own network and modify other inputs. To see a list of inputs, you can explore rewet/input/settings.py. Any variable in the process scenario settings classes can be an input to REWET. REWET accepts JSON formatted input with variables from the settings.py file. You need to overwrite the default variable values in settings.py with your own values using a JSON file and pass the JSON file path and name when you run REWET. For example, let's assume we want to change the simulation run to 1 day. We will make a JSON file called input.json and fill it with the following data:

{
    "RUN_TIME": 86400,
}

After saving the file, we will pass the file path to the run function (the JSON file extension must be .json or REWET will not recognize it as a JSON file):

from rewet.initial import Starter
start = Starter()
start.run("input.json")

Contributtiom

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

For any potential collaboration, please contact the author.

Citation

When you use REWET, please cite REWET as follows:

Sina Naeimi, Rachel A. Davidson. Forthcoming. "REWET: A Tool to Model System Function and Restoration of Damaged Water Supply Systems." [Forthcomming] ASCE Journal of Infrastructure Systems. 10.1061/JITSE4/ISENG-2427

License

REWET is released under the MIT license. See LICENSE for more details.

  • WNTR License: is distributed under the MIT License. Please refer to the WNTR license file for more information.
  • EPANET License: EPANET is distributed under the Public Domain. Please refer to the EPANET license file for more information.

News

REWET has been adapted in NHERI SimCenter's R2DTool V4.2 [1].

ACKNOWLEDGMENTS

This project was funded by National Science Foundation Award No. CMMI-1735483. The developer also extends gratitude to the Los Angeles Department of Water and Power (LADWP) for providing the input and water network, which served as the testbed for the development of REWET. REWET was produced as part of a Doctoral Dissertation at the University of Delaware, supervised by Dr. Rachel Davidson, Department of Civil and Environmental Engineering, University of Delaware.

This project uses the following tools:

  • Water Network Tool for Resilience (WNTR) [2] developed by the U.S. Environmental Protection Agency. WNTR is a Python package designed for analyzing the resilience of water distribution networks. For more information about WNTR, visit the official WNTR documentation.
  • EPANET [3] Developed by the U.S. Environmental Protection Agency, EPANET is a software application used throughout the world to model water distribution piping systems. For more information about EPANET, visit the official EPANET documentation

image

References

[1] Frank McKenna, Stevan Gavrilovic, Jinyan Zhao, Kuanshi Zhong, Adam Zsarnoczay, Barbaros Cetiner, Sang-ri Yi, Aakash Bangalore Satish, Sina Naeimi, & Pedro Arduino. (2024). NHERI-SimCenter/R2DTool: Version 4.2.0 (v4.2.0). Zenodo. https://doi.org/10.5281/zenodo.11175489

[2] Klise, K.A., Hart, D.B., Bynum, M., Hogge, J., Haxton, T., Murray, R., Burkhardt, J. (2020). Water Network Tool for Resilience (WNTR) User Manual: Version 0.2.3. U.S. EPA Office of Research and Development, Washington, DC, EPA/600/R-20/185, 82p.

[3] Rossman, L., H. Woo, M. Tryby, F. Shang, R. Janke, AND T. Haxton. EPANET 2.2 User Manual. U.S. Environmental Protection Agency, Washington, DC, EPA/600/R-20/133, 2020.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rewet-0.2.0b13.tar.gz (743.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rewet-0.2.0b13-py3-none-any.whl (779.0 kB view details)

Uploaded Python 3

File details

Details for the file rewet-0.2.0b13.tar.gz.

File metadata

  • Download URL: rewet-0.2.0b13.tar.gz
  • Upload date:
  • Size: 743.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.12

File hashes

Hashes for rewet-0.2.0b13.tar.gz
Algorithm Hash digest
SHA256 fd9cc1158053d8e406bfb2354dd7c3857ad5f69268c5418a93aae4a58b92efc6
MD5 5d342ec55c684ddbde0c28859ed70ddc
BLAKE2b-256 acbdc57e1e81b91677ce71ee327734cc0e1e5d1a15299a0411341d48db6d0e69

See more details on using hashes here.

File details

Details for the file rewet-0.2.0b13-py3-none-any.whl.

File metadata

  • Download URL: rewet-0.2.0b13-py3-none-any.whl
  • Upload date:
  • Size: 779.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.12

File hashes

Hashes for rewet-0.2.0b13-py3-none-any.whl
Algorithm Hash digest
SHA256 163bb42439a24c4d9d616df6967950f8a48da1d962c53c737d90eb7c20a9eb0c
MD5 42e30a11af8fe1df81fea31ffd265c38
BLAKE2b-256 331fa6e9da5a0c7e237a03122c46436418700e4318f9a4fcc7c9f163521264f6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page