https://github.com/ec-usgs/prms6
PRMS version 6
https://github.com/ec-usgs/prms6
Last synced: about 2 months ago
JSON representation
PRMS version 6
- Host: GitHub
- URL: https://github.com/ec-usgs/prms6
- Owner: EC-USGS
- License: cc0-1.0
- Created: 2022-04-18T18:25:14.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-04-19T12:36:42.000Z (about 3 years ago)
- Last Synced: 2025-02-05T11:51:21.499Z (4 months ago)
- Language: Fortran
- Size: 16 MB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PRMS version 6
=======
# PRMS
Precipitation Runoff Modeling System# Provisional software
This software is preliminary or provisional and is subject to revision. It is being provided to meet the need for timely best science. The software has not received final approval by the U.S. Geological Survey (USGS). No warranty, expressed or implied, is made by the USGS or the U.S. Government as to the functionality of the software and related material nor shall the fact of release constitute any such warranty. The software is provided on the condition that neither the USGS nor the U.S. Government shall be held liable for any damages resulting from the authorized or unauthorized use of the software.# Building From Source
PRMS6 uses the cmake build system (version 3.8 or greater). To compile PRMS from source on Unix/Linux/POSIX systems run the following from the top-level prms directory:```
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX= -DBUILD_SHARED_LIBS=OFF ../src
make
make install
```# Debug builds
To build prms for debugging purposes, run:```
cmake -DCMAKE_BUILD_TYPE=DEBUG -DCMAKE_INSTALL_PREFIX= -DBUILD_SHARED_LIBS=OFF ../src
make
make install
```To output additional compile-time messages add VERBOSE=1 to the make command.