Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1db1ccb
add shell tube heat exchanger peformance model and test
bayc Dec 18, 2025
ebe2fcc
add shell tube heat exchanger cost model and test
bayc Dec 18, 2025
a693f1c
pre-commit formatting
bayc Dec 18, 2025
137ae08
Merge branch 'develop' into feature/heat_exchanger
bayc Jan 22, 2026
3173feb
update costmodelbaseconfig import
bayc Feb 2, 2026
94dd5a8
Merge branch 'develop' into feature/heat_exchanger
johnjasa Feb 12, 2026
36749c5
Merge branch 'develop' into feature/heat_exchanger
johnjasa Feb 24, 2026
788016c
Merge branch 'feature/heat_exchanger' of github.com:bayc/H2Integrate …
bayc Feb 26, 2026
8719f70
Merge remote-tracking branch 'origin/develop' into feature/heat_excha…
bayc Feb 26, 2026
88e0a95
udpate tests
bayc Apr 17, 2026
bb9c489
Merge remote-tracking branch 'origin/develop' into feature/heat_excha…
bayc May 20, 2026
affd61e
updates due to changes in develop
bayc May 21, 2026
61eab03
Merge remote-tracking branch 'origin/develop' into feature/heat_excha…
bayc May 21, 2026
092f51e
Merge remote-tracking branch 'origin/develop' into feature/heat_excha…
bayc May 21, 2026
2c0e9b3
Merge remote-tracking branch 'origin/develop' into feature/heat_excha…
bayc Jul 22, 2026
f9bfe3a
pre-commit formatting
bayc Jul 22, 2026
f518834
Merge remote-tracking branch 'origin/develop' into feature/heat_excha…
bayc Aug 4, 2026
affc71e
update cost model
bayc Aug 4, 2026
45eedd1
naming updates and reorg
bayc Aug 4, 2026
979352c
add to supported models
bayc Aug 4, 2026
f0738a9
pre-commit updates
bayc Aug 4, 2026
66c36e1
Merge remote-tracking branch 'origin/develop' into feature/heat_excha…
bayc Aug 6, 2026
a6d6aa7
remove outdate PR template option
bayc Aug 6, 2026
837cc21
add models to __init__
bayc Aug 6, 2026
b1e7ee2
correct validator import
bayc Aug 6, 2026
bcfb881
fix import error in __init__
bayc Aug 6, 2026
959e8eb
add missing test __init__
bayc Aug 6, 2026
57626d0
update docstring
bayc Aug 6, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ failing test cases.
- [ ] **Integration**: Model has been properly integrated into H2Integrate
- [ ] Add the new model to the appropriate `__init__.py` file to ensure it is properly imported and used in `supported_models.py`
- [ ] Added to `supported_models.py`
- [ ] If a new commodity_type is added, update `create_financial_model` in `h2integrate_model.py`
- [ ] **Tests**: Unit tests have been added for the new model
- [ ] [Pytest-style unit tests](https://realpython.com/pytest-python-testing/)
- [ ] Unit tests are in a "test" folder within the folder a new model was added to
Expand Down
2 changes: 2 additions & 0 deletions h2integrate/converters/heat/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from h2integrate.converters.heat.shell_tube_hx import ShellTubeHXPerformanceModel
from h2integrate.converters.heat.shell_tube_hx_cost_model import ShellTubeHXCostModel
Loading