Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bigladder/HPWHsim
The HPWH simulation
https://github.com/bigladder/HPWHsim
Last synced: 3 months ago
JSON representation
The HPWH simulation
- Host: GitHub
- URL: https://github.com/bigladder/HPWHsim
- Owner: bigladder
- License: bsd-3-clause
- Created: 2015-12-04T01:24:35.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-06-10T22:20:13.000Z (5 months ago)
- Last Synced: 2024-06-11T16:04:21.844Z (5 months ago)
- Language: C++
- Size: 39.8 MB
- Stars: 14
- Watchers: 6
- Forks: 4
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- open-sustainable-technology - HPWHsim - An open source simulation model for Heat Pump Water Heaters (HPWH). (Consumption / Buildings and Heating)
README
# HPWHsim
An open source simulation model for Heat Pump Water Heaters (HPWH).
HPWHsim was developed with whole house simulation in mind; it is intended to be run independently of the overarching simulation's time steps, other parameters, and does not aggregate its own outputs. It was also designed to run quickly, as the typical use case would see many simulations run, each a year-long or more.
### Development
HPWHsim is configured as a CMake project. Currently, CMake is only configured to generate Microsoft Visual Studio solutions compiled with Microsoft Visual C++ (other generators and compilers will not work). CMake also handles version control via Git.
### Dependencies
- Microsoft Visual Studio 2017 with Visual C++ (which can be installed after from the Microsoft Visual Studio Installer)
- CMake 3.5 or later
- Git
- Btwxt 1.0.0### Building HPWHsim from source
1. Clone the git repository, or download and extract the source code.
2. Make a directory called `build` inside the top level of your source.
3. Open a console in the `build` directory.
4. Type `cmake ..`.
5. Type `cmake --build . --config Release`.
6. Type `ctest -C Release` to run the test suite and ensure that your build is working properly.