Skip to content

Multi-stage vapor injection impact on heat pump performance #416

Closed Answered by fwitte
michox asked this question in Q&A
Discussion options

You must be logged in to vote

If you are trying to build a generic model, this is some approach I would take for it:

from tespy.networks import Network
from tespy.components import (Compressor, CycleCloser, HeatExchangerSimple, Splitter, Merge, Valve)
from tespy.connections import Connection, Bus
import numpy as np
from CoolProp.CoolProp import PropsSI


class InjectionHeatPump:

    def __init__(self, working_fluid, num_stages) -> None:
        self.working_fluid = working_fluid
        self.num_stages = num_stages
        self.setup_network()

    def setup_network(self):
        self.nwk = Network(fluids=[self.working_fluid], p_unit="bar", T_unit="C")

        condenser = HeatExchangerSimple("condenser")
        ev…

Replies: 3 comments 9 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
5 replies
@fwitte
Comment options

@fwitte
Comment options

Answer selected by michox
@michox
Comment options

@fwitte
Comment options

@michox
Comment options

Comment options

You must be logged in to vote
4 replies
@fwitte
Comment options

@fwitte
Comment options

@michox
Comment options

@fwitte
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants