Skip to content

Commit

Permalink
Added documentation for the sluice gate.
Browse files Browse the repository at this point in the history
  • Loading branch information
dietmarw committed Jun 28, 2024
1 parent 25980d8 commit 593eaa8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions OpenHPL/Waterway/Gate.mo
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ model Gate "Model of a sluice or tainter gate based on [Bollrich2019]"
equation
mu_A = psi/sqrt(1+psi*a/h_0);
if sluice then
psi = 1 / (1+ 0.64 * sqrt(1-(a/h_0)^2));
psi = 1 / (1+ 0.64 * sqrt(1-(a/h_0)^2)) "Sluice gate, i.e. alpha = 90 deg";
else
psi = 1.3 - 0.8 * sqrt(1 - ((to_deg(alpha)-205)/220)^2) "Normally only valid for a/h_0 --> 0";
end if;
Expand Down Expand Up @@ -79,7 +79,9 @@ With
<dt> $$ A = a\\cdot b $$ </dt>
<dd>Discharge coefficient</dd>
<dt> $$ \\mu_A = \\frac{\\psi}{\\sqrt{1+\\frac{\\psi\\cdot a}{h_0}}} \\tag{8.23}$$ </dt>
<dd>Contraction coefficient (for \\(a/h_0 \\rightarrow 0\\))</dd>
<dd>Contraction coefficient sluice gate (\\(\\alpha=90^\\circ\\))</dd>
<dt> $$ \\psi_{90^\\circ}= \\frac{1}{1+0.64\\cdot \\sqrt{1-(a/h_0)^2}} \\tag{8.25}$$ </dt>
<dd>Contraction coefficient radial gate (for \\(a/h_0 \\rightarrow 0\\))</dd>
<dt> $$ \\psi_0(\\alpha)= 1.3 -0.8\\cdot\\sqrt{1-\\left(\\frac{\\alpha -205^\\circ}{220^\\circ}\\right)^2} \\tag{8.25a}$$ </dt>
</dl>
Expand Down

0 comments on commit 593eaa8

Please sign in to comment.