Source code for tespy.components.heat_exchangers.parabolic_trough

# -*- coding: utf-8

"""Module of class ParabolicTrough.


This file is part of project TESPy (github.com/oemof/tespy). It's copyrighted
by the contributors recorded in the version control history of the file,
available from its original location
tespy/components/heat_exchangers/parabolic_trough.py

SPDX-License-Identifier: MIT
"""

from tespy.components.component import component_registry
from tespy.components.heat_exchangers.simple import SimpleHeatExchanger
from tespy.tools.data_containers import ComponentProperties as dc_cp
from tespy.tools.data_containers import GroupedComponentProperties as dc_gcp


[docs] @component_registry class ParabolicTrough(SimpleHeatExchanger): r""" The ParabolicTrough calculates heat output from irradiance. **Mandatory Equations** - fluid: :py:meth:`tespy.components.component.Component.variable_equality_structure_matrix` - mass flow: :py:meth:`tespy.components.component.Component.variable_equality_structure_matrix` **Optional Equations** - :py:meth:`tespy.components.component.Component.pr_structure_matrix` - :py:meth:`tespy.components.component.Component.dp_structure_matrix` - :py:meth:`tespy.components.component.Component.zeta_func` - :py:meth:`tespy.components.heat_exchangers.simple.SimpleHeatExchanger.energy_balance_func` - :py:meth:`tespy.components.heat_exchangers.simple.SimpleHeatExchanger.darcy_func` - :py:meth:`tespy.components.heat_exchangers.simple.SimpleHeatExchanger.hazen_williams_func` - :py:meth:`tespy.components.heat_exchangers.parabolic_trough.ParabolicTrough.energy_group_func` Inlets/Outlets - in1 - out1 Image .. image:: /api/_images/ParabolicTrough.svg :alt: flowsheet of the parabolic trough :align: center :class: only-light .. image:: /api/_images/ParabolicTrough_darkmode.svg :alt: flowsheet of the parabolic trough :align: center :class: only-dark Parameters ---------- label : str The label of the component. design : list List containing design parameters (stated as String). offdesign : list List containing offdesign parameters (stated as String). design_path : str Path to the components design case. local_offdesign : boolean Treat this component in offdesign mode in a design calculation. local_design : boolean Treat this component in design mode in an offdesign calculation. char_warnings : boolean Ignore warnings on default characteristics usage for this component. printout : boolean Include this component in the network's results printout. Q : float, dict, :code:`"var"` Heat transfer, :math:`Q/\text{W}`. pr : float, dict, :code:`"var"` Outlet to inlet pressure ratio, :math:`pr/1`. zeta : float, dict, :code:`"var"` Geometry independent friction coefficient, :math:`\frac{\zeta}{D^4}/\frac{1}{\text{m}^4}`. D : float, dict, :code:`"var"` Diameter of the absorber tube, :math:`D/\text{m}`. L : float, dict, :code:`"var"` Length of the absorber tube, :math:`L/\text{m}`. ks : float, dict, :code:`"var"` Pipe's roughness, :math:`ks/\text{m}`. darcy_group : str, dict Parametergroup for pressure drop calculation based on pipes dimensions using darcy weissbach equation. ks_HW : float, dict, :code:`"var"` Pipe's roughness, :math:`ks/\text{1}`. hw_group : str, dict Parametergroup for pressure drop calculation based on pipes dimensions using hazen williams equation. E : float, dict, :code:`"var"` Direct irradiance to tilted collector, :math:`E/\frac{\text{W}}{\text{m}^2}`. aoi : float, dict, :code:`"var"` Angle of incidience, :math:`aoi/^\circ`. doc : float, dict, :code:`"var"` Degree of cleanliness (1: full absorption, 0: no absorption), :math:`X`. eta_opt : float, dict, :code:`"var"` (constant) optical losses due to surface reflection, :math:`\eta_{opt}`. c_1 : float, dict, :code:`"var"` Linear thermal loss key figure, :math:`c_1/\frac{\text{W}}{\text{K} \cdot \text{m}^2}`. c_2 : float, dict, :code:`"var"` Quadratic thermal loss key figure, :math:`c_2/\frac{\text{W}}{\text{K}^2 \cdot \text{m}^2}`. iam_1 : float, dict, :code:`"var"` Linear incidence angle modifier, :math:`iam_1/\frac{1}{^\circ}`. iam_2 : float, dict, :code:`"var"` Quadratic incidence angle modifier, :math:`iam_2/\left(\frac{1}{^\circ}\right)^2`. A : float, dict, :code:`"var"` Collector aperture surface area :math:`A/\text{m}^2`. Tamb : float, dict Ambient temperature, provide parameter in network's temperature unit. energy_group : str, dict Parametergroup for energy balance of solarthermal collector. Example ------- A parabolic trough is installed using S800 as thermo-fluid. First, the operation conditions from :cite:`Janotte2014` are reproduced. Therefore, the direct normal irradiance :math:`\dot{E}_\mathrm{DNI}` is at 1000 :math:`\frac{\text{W}}{\text{m}^2}` at an angle of incidence :math:`aoi` at 20 °. This means, the direct irradiance to the parabolic trough :math:`E` is at :math:`\dot{E}_{DNI} \cdot cos\left(20^\circ\right)`. >>> from tespy.components import Sink, Source, ParabolicTrough >>> from tespy.connections import Connection >>> from tespy.networks import Network >>> import math >>> nw = Network(iterinfo=False) >>> nw.units.set_defaults(**{ ... "pressure": "bar", "temperature": "degC", "enthalpy": "kJ/kg" ... }) >>> so = Source('source') >>> si = Sink('sink') >>> pt = ParabolicTrough('parabolic trough collector') >>> inc = Connection(so, 'out1', pt, 'in1') >>> outg = Connection(pt, 'out1', si, 'in1') >>> nw.add_conns(inc, outg) The pressure ratio is at a constant level of 1. However, it is possible to specify the pressure losses from the absorber tube length, roughness and diameter, too. The aperture surface :math:`A` is specified to 1 :math:`\text{m}^2` for simplicity reasons. >>> aoi = 20 >>> E = 1000 * math.cos(aoi / 180 * math.pi) >>> pt.set_attr( ... pr=1, aoi=aoi, doc=1, ... Tamb=20, A=1, eta_opt=0.816, c_1=0.0622, c_2=0.00023, E=E, ... iam_1=-1.59e-3, iam_2=9.77e-5 ... ) >>> inc.set_attr(fluid={'INCOMP::S800': 1}, T=220, p=10) >>> outg.set_attr(T=260) >>> nw.solve('design') >>> round(pt.Q.val, 0) 736.0 For example, it is possible to calculate the aperture area of the parabolic trough given the total heat production, outflow temperature and mass flow. >>> pt.set_attr(A='var', Q=5e6, Tamb=25) >>> inc.set_attr(T=None) >>> outg.set_attr(T=350, m=20) >>> nw.solve('design') >>> round(inc.T.val, 0) 229.0 >>> round(pt.A.val, 0) 6862.0 Given this design, it is possible to calculate the outlet temperature as well as the heat transfer at different operating points. >>> aoi = 30 >>> E = 800 * math.cos(aoi / 180 * math.pi) >>> pt.set_attr(A=pt.A.val, aoi=aoi, Q=None, E=E) >>> inc.set_attr(T=150) >>> outg.set_attr(T=None) >>> nw.solve('design') >>> round(outg.T.val, 0) 244.0 >>> round(pt.Q.val, 0) 3602817.0 """
[docs] def get_parameters(self): data = super().get_parameters() for k in ["kA_group", "kA_char_group", "kA", "kA_char"]: del data[k] data.update({ 'E': dc_cp( min_val=0, quantity="heat", _potential_var=True, description="solar irradiation to the parabolic trough" ), 'A': dc_cp( min_val=0, quantity="area", _potential_var=True, description="area of the parabolic trough" ), 'eta_opt': dc_cp( min_val=0, max_val=1, quantity="efficiency", description="optical efficiency" ), 'c_1': dc_cp(min_val=0, description="thermal loss coefficient 1"), 'c_2': dc_cp(min_val=0, description="thermal loss coefficient 2"), 'iam_1': dc_cp(description="incidence angle modifier 1"), 'iam_2': dc_cp(description="incidence angle modifier 2"), 'aoi': dc_cp( min_val=-90, max_val=90, quantity="angle", description="angle of incidence" ), 'doc': dc_cp( min_val=0, max_val=1, quantity="ratio", description="degree of cleanliness" ), 'Q_loss': dc_cp( max_val=0, _val=0, quantity="heat", description="heat dissipation" ), 'energy_group': dc_gcp( elements=[ 'E', 'eta_opt', 'aoi', 'doc', 'c_1', 'c_2', 'iam_1', 'iam_2', 'A', 'Tamb' ], num_eq_sets=1, func=self.energy_group_func, dependents=self.energy_group_dependents, description="energy balance equation of the parabolic trough" ) }) return data
[docs] def energy_group_func(self): r""" Equation for solar collector energy balance. Returns ------- residual : float Residual value of equation. .. math:: \begin{split} T_m = & \frac{T_{out} + T_{in}}{2}\\ iam = & 1 - iam_1 \cdot |aoi| - iam_2 \cdot aoi^2\\ 0 = & \dot{m} \cdot \left( h_{out} - h_{in} \right)\\ & - A \cdot \left[E \cdot \eta_{opt} \cdot doc^{1.5} \cdot iam \right. \\ & \left. - c_1 \cdot \left(T_m - T_{amb} \right) - c_2 \cdot \left(T_m - T_{amb}\right)^2 \vphantom{ \eta_{opt} \cdot doc^{1.5}} \right] \end{split} Reference: :cite:`Janotte2014`. """ i = self.inl[0] o = self.outl[0] T_m = 0.5 * (i.calc_T() + o.calc_T()) iam = ( 1 - self.iam_1.val_SI * abs(self.aoi.val_SI) - self.iam_2.val_SI * self.aoi.val_SI ** 2 ) return ( i.m.val_SI * (o.h.val_SI - i.h.val_SI) - self.A.val_SI * ( self.E.val_SI * self.eta_opt.val_SI * self.doc.val_SI ** 1.5 * iam - self.c_1.val_SI * (T_m - self.Tamb.val_SI) - self.c_2.val_SI * (T_m - self.Tamb.val_SI) ** 2 ) )
[docs] def energy_group_dependents(self): return [ self.inl[0].m, self.inl[0].p, self.inl[0].h, self.outl[0].p, self.outl[0].h, ] + [self.E, self.A]
[docs] def convergence_check(self): pass
[docs] def calc_parameters(self): r"""Postprocessing parameter calculation.""" i = self.inl[0] o = self.outl[0] self.Q.val_SI = i.m.val_SI * (o.h.val_SI - i.h.val_SI) self.pr.val_SI = o.p.val_SI / i.p.val_SI self.dp.val_SI = i.p.val_SI - o.p.val_SI self.zeta.val_SI = self.calc_zeta(i, o) if self.energy_group.is_set: self.Q_loss.val_SI = - self.E.val_SI * self.A.val_SI + self.Q.val_SI self.Q_loss.is_result = True else: self.Q_loss.is_result = False