OGS
ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve Struct Reference

Detailed Description

Definition at line 326 of file FlowAndTemperatureControl.h.

#include <FlowAndTemperatureControl.h>

Collaboration diagram for ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve:
[legend]

Public Member Functions

FlowAndTemperature operator() (double const T_out, double const time) const

Public Attributes

BuildingPowerCurves const building_heating_curves
BuildingPowerCurves const building_active_cooling_curves
MathLib::PiecewiseLinearInterpolation const & flow_curve
double heat_capacity
double density
double flow_rate_min
double power_min

Static Public Attributes

static constexpr bool is_power_bc = true

Member Function Documentation

◆ operator()()

FlowAndTemperature ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::operator() ( double const T_out,
double const time ) const
inline

Definition at line 328 of file FlowAndTemperatureControl.h.

329 {
330 double const power_heating =
331 building_heating_curves.power_curve.getValue(time);
332 double const cop_heating =
333 building_heating_curves.cop_curve.getValue(T_out);
334
335 double const power_cooling =
336 building_active_cooling_curves.power_curve.getValue(time);
337 double const cop_cooling =
338 building_active_cooling_curves.cop_curve.getValue(T_out);
339
340 double const flow_rate = flow_curve.getValue(time);
341
342 double const power = power_heating - power_heating / cop_heating +
343 power_cooling - power_cooling / cop_cooling;
344
345 return check_power_and_flow_rate(flow_rate,
346 power,
348 density,
349 T_out,
351 power_min);
352 }
FlowAndTemperature check_power_and_flow_rate(double flow_rate, double power, double heat_capacity, double density, double T_out, double flow_rate_min, double power_min)

References building_active_cooling_curves, building_heating_curves, ProcessLib::HeatTransportBHE::BHE::check_power_and_flow_rate(), density, flow_curve, flow_rate_min, heat_capacity, and power_min.

Member Data Documentation

◆ building_active_cooling_curves

BuildingPowerCurves const ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::building_active_cooling_curves

Definition at line 354 of file FlowAndTemperatureControl.h.

Referenced by operator()().

◆ building_heating_curves

BuildingPowerCurves const ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::building_heating_curves

Definition at line 353 of file FlowAndTemperatureControl.h.

Referenced by operator()().

◆ density

double ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::density

Definition at line 358 of file FlowAndTemperatureControl.h.

Referenced by operator()().

◆ flow_curve

MathLib::PiecewiseLinearInterpolation const& ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::flow_curve

Definition at line 355 of file FlowAndTemperatureControl.h.

Referenced by operator()().

◆ flow_rate_min

double ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::flow_rate_min

Definition at line 359 of file FlowAndTemperatureControl.h.

Referenced by operator()().

◆ heat_capacity

double ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::heat_capacity

Definition at line 357 of file FlowAndTemperatureControl.h.

Referenced by operator()().

◆ is_power_bc

bool ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::is_power_bc = true
staticconstexpr

Definition at line 361 of file FlowAndTemperatureControl.h.

◆ power_min

double ProcessLib::HeatTransportBHE::BHE::BuildingPowerCurveActiveCoolingCurveFlowCurve::power_min

Definition at line 360 of file FlowAndTemperatureControl.h.

Referenced by operator()().


The documentation for this struct was generated from the following file: