Skip to content

Commit

Permalink
Add Missing Input Type VolumetricFlowPerPower: used by Curve:QuadLine…
Browse files Browse the repository at this point in the history
…ar & Curve:QuintLinear
  • Loading branch information
jmarrec committed Dec 12, 2024
1 parent 04375ea commit 35964ba
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/EnergyPlus/CurveManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2953,10 +2953,21 @@ namespace Curve {
Distance,
Wavelength,
Angle,
VolumetricFlowPerPower,
Num
};
constexpr std::array<std::string_view, static_cast<int>(CurveInputType::Num)> inputTypes = {
"DIMENSIONLESS", "TEMPERATURE", "PRESSURE", "VOLUMETRICFLOW", "MASSFLOW", "POWER", "DISTANCE", "WAVELENGTH", "ANGLE"};
"DIMENSIONLESS",
"TEMPERATURE",
"PRESSURE",
"VOLUMETRICFLOW",
"MASSFLOW",
"POWER",
"DISTANCE",
"WAVELENGTH",
"ANGLE",
"VOLUMETRICFLOWPERPOWER",
};

if (InInputType.empty()) {
return true; // if not used it is valid
Expand Down

0 comments on commit 35964ba

Please sign in to comment.