Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement a moving boundary heat exchanger for improved part load modeling #515

Open
wants to merge 19 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
ecb2fc7
Draft for a moving boundary condensation component
fwitte May 26, 2024
c90c959
Add a testing draft for the moving boundary component
fwitte May 26, 2024
d7cdac4
Add a test for the pinch point temperature difference function
fwitte May 26, 2024
46db812
Add a second draft component
fwitte May 30, 2024
8ebf497
Merge branch 'dev' into features/movingboundary-condensing-heat-excha…
fwitte Jul 17, 2024
c57d184
Fix a bug that applied the wrong order of heat exchange rates for the…
fwitte Jul 17, 2024
f33b15a
Check in a test for the generalized moving boundary heat exchanger
fwitte Jul 17, 2024
83dc271
Trial for part load variable U values of individual sections
fwitte Jul 29, 2024
238537f
Merge branch 'dev' into features/movingboundary-condensing-heat-excha…
fwitte Aug 2, 2024
184196f
Merge branch 'dev' into features/movingboundary-condensing-heat-excha…
fwitte Aug 4, 2024
463064f
Clean up the MovingboundaryCondenser design mode calculation options
fwitte Aug 4, 2024
773f125
Test all features of the condenser
fwitte Aug 4, 2024
c0e4efc
Remove deprecated import
fwitte Aug 6, 2024
6746b01
Remove deprecated test
fwitte Aug 6, 2024
010b6e2
Rename to MovingBoundaryHeatExchanger and implement generalized metho…
fwitte Jan 21, 2025
99caa3a
Add some documentation and propagate approach to minimum pinch function
fwitte Jan 22, 2025
dcec110
Merge branch 'dev' into features/movingboundary-condensing-heat-excha…
fwitte Jan 23, 2025
ec913d6
Fix some precision related issues and ordering of sections
fwitte Jan 26, 2025
07b9863
Update temporary testscript
fwitte Jan 26, 2025
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: 1 addition & 0 deletions src/tespy/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from .heat_exchangers.base import HeatExchanger # noqa: F401
from .heat_exchangers.condenser import Condenser # noqa: F401
from .heat_exchangers.desuperheater import Desuperheater # noqa: F401
from .heat_exchangers.movingboundary import MovingBoundaryHeatExchanger # noqa: F401
from .heat_exchangers.parabolic_trough import ParabolicTrough # noqa: F401
from .heat_exchangers.simple import HeatExchangerSimple # noqa: F401
from .heat_exchangers.simple import SimpleHeatExchanger # noqa: F401
Expand Down
Loading
Loading