Skip to content

Commit

Permalink
further improved default guess and updated usersguide
Browse files Browse the repository at this point in the history
  • Loading branch information
hcasperfu committed Aug 21, 2024
1 parent 238db51 commit a79ade0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 5 additions & 3 deletions IBPSA/Fluid/Movers/Data/Generic.mo
Original file line number Diff line number Diff line change
Expand Up @@ -109,11 +109,13 @@ record Generic "Generic data record for movers"
then
if powerOrEfficiencyIsHydraulic
then max(power.P)*1.2
else max(power.P)
else max(power.P)
else
if havePressureCurve
then V_flow_max/2 * dpMax/2 /etaMot_max*1.2
else 0
then if powerOrEfficiencyIsHydraulic
then V_flow_max/2 * dpMax/2 /peak.eta*1.2
else V_flow_max/2 * dpMax/2 /0.7*1.2
else 0
"Rated motor power"
annotation(Dialog(group="Power computation",
enable= etaMotMet==
Expand Down
3 changes: 2 additions & 1 deletion IBPSA/Fluid/Movers/UsersGuide.mo
Original file line number Diff line number Diff line change
Expand Up @@ -656,7 +656,8 @@ P<sub>mot,nominal</sub>=
&frasl; &eta;<sub>hyd,p</sub>,
</p>
where the factor <i>1.2</i> also assumes a 20% oversize
and the assumed peak hydraulic efficiency <i>&eta;<sub>hyd,p</sub>=0.7</i>.
and the assumed peak hydraulic efficiency <i>&eta;<sub>hyd,p</sub>=0.7</i>
unless a hydraulic peak value is available in the record.
</li>
</ul>
The model then computes the efficiency the same way as in the option of
Expand Down

0 comments on commit a79ade0

Please sign in to comment.