Skip to content
Snippets Groups Projects
Commit 0351fe56 authored by mathias.chouet's avatar mathias.chouet
Browse files

Fix #318 - new discharge law WeirSubmerged

parent 49de7f74
No related branches found
No related tags found
1 merge request!68Resolve "Ajout de la loi Déversoir Noyé"
......@@ -14,8 +14,4 @@ Avec :
* *H<sub>1</sub>* la charge sur la fente m&nbsp;
* *μ* le coefficient de débit (égal à 0.65 par défaut).
Le coefficient de débit *μ* peut varier de 0.65 pour une fente à arêtes vives à plus de 0.85 lorsque le profil de la fente est arrondi.
N.B.&nbsp;: la littérature propose plutôt la formule suivante pour un seuil noyé&nbsp;:
$$Q = \mu b H_2\sqrt{2g \Delta H}$$
Le coefficient de débit *μ* peut varier de 0.65 pour une fente à arêtes vives à plus de 0.85 lorsque le profil de la fente est arrondi.
\ No newline at end of file
# Formule du déversoir noyé
![Schéma du seuil noyé](seuil_noye_schema.png)
*Extrait de: Rajaratnam, N., et D. Muralidhar. « Flow below deeply submerged rectangular weirs ». Journal of Hydraulic Research 7, nᵒ 3 (1969): 355–374.*
En régime noyé, le débit dépend de la hauteur d'eau amont \(h_{amont}\) et de la hauteur aval \(h_{aval}\)&nbsp;:
$$Q = Cd \sqrt{2gH} Lh_{aval} \sqrt{h_{amont}-h_{aval}}$$
Avec&nbsp;:
* *L* la largeur du seuil en m&nbsp;
* *h<sub>amont</sub>* la charge sur le seuil à l'amont en m&nbsp;
* *h<sub>aval</sub>* la charge sur le seuil à l'aval en m&nbsp;
* *C<sub>d</sub>* le coefficient de débit (égal à 0.9 par défaut).
Cette formule n'est pas conseillée pour un ennoiement inférieur à 80%.
\ No newline at end of file
docs-fr/calculators/structures/seuil_noye_schema.png

8.26 KiB

......@@ -42,6 +42,7 @@ nav:
- calculators/structures/orifice_noye.md
- calculators/structures/orifice_denoye.md
- calculators/structures/fente_noyee.md
- calculators/structures/seuil_noye.md
- calculators/structures/dever_triang.md
- calculators/structures/dever_triang_tronque.md
- calculators/structures/cem_88_v.md
......
......@@ -34,6 +34,7 @@
"Orifice_OrificeSubmerged": "structures/orifice_noye.html",
"Orifice_OrificeFree": "structures/orifice_denoye.html",
"SeuilRectangulaire_WeirSubmergedLarinier": "structures/fente_noyee.html",
"SeuilRectangulaire_WeirSubmerged": "structures/seuil_noye.html",
"SeuilRectangulaire_WeirFree": "structures/kivi.html",
"SeuilTriangulaire_TriangularWeirFree": "structures/dever_triang.html",
"SeuilTriangulaireTrunc_TriangularTruncWeirFree": "structures/dever_triang_tronque.html"
......@@ -44,6 +45,7 @@
"ZDV",
"L",
"W",
"CdWS",
"CdWSL",
"CdWR",
"CdGR",
......
......@@ -24,6 +24,7 @@
"select_loidebit_SeuilRectangulaire_WeirCem88d": "Weir/Orifice Cemagref 88",
"select_loidebit_SeuilRectangulaire_WeirCem88v": "Weir/Undershot gate Cemagref 88",
"select_loidebit_SeuilRectangulaire_WeirSubmergedLarinier": "Submerged slot (Larinier 1992)",
"select_loidebit_SeuilRectangulaire_WeirSubmerged": "Submerged weir",
"select_loidebit_SeuilRectangulaire_WeirVillemonte": "Villemonte 1957",
"select_loidebit_SeuilRectangulaire_WeirFree": "Free flow weir",
"select_loidebit_SeuilRectangulaire_KIVI": "Kindsvater-Carter and Villemonte",
......
......@@ -24,6 +24,7 @@
"select_loidebit_SeuilRectangulaire_WeirCem88d": "Déversoir/Orifice Cemagref 88",
"select_loidebit_SeuilRectangulaire_WeirCem88v": "Déversoir/Vanne de fond Cemagref 88",
"select_loidebit_SeuilRectangulaire_WeirSubmergedLarinier": "Fente noyée (Larinier 1992)",
"select_loidebit_SeuilRectangulaire_WeirSubmerged": "Seuil noyé",
"select_loidebit_SeuilRectangulaire_WeirVillemonte": "Villemonte 1957",
"select_loidebit_SeuilRectangulaire_WeirFree": "Seuil dénoyé",
"select_loidebit_SeuilRectangulaire_KIVI": "Kindsvater-Carter et Villemonte",
......
......@@ -5,6 +5,7 @@
"WARNING_ORIFICE_FREE_DOWNSTREAM_ELEVATION_POSSIBLE_SUBMERSION": "Downstream elevation is higher than orifice center elevation (possible submersion)",
"WARNING_NOTCH_SUBMERSION_GREATER_THAN_07": "Notch formula is discouraged when submersion is greater than 0.7",
"WARNING_SLOT_SUBMERSION_NOT_BETWEEN_07_AND_09": "Slot formula is discouraged when submersion is lower than 0.7 or greater than 0.9",
"WARNING_WEIR_SUBMERSION_LOWER_THAN_08": "Sumberged weir formula is discouraged when submersion is lower than 08",
"WARNING_ERRORS_ABSTRACT": "%nb% errors occurred during calculation",
"ERROR_BIEF_Z1_CALC_FAILED": "Unable to calculate upstream elevation (calculation interrupted before upstream)",
"ERROR_BIEF_Z2_CALC_FAILED": "Unable to calculate downstream elevation (calculation interrupted before downstream)",
......@@ -203,6 +204,7 @@
"INFO_LIB_CDGR": "Discharge coefficient gate",
"INFO_LIB_CDWR": "Discharge coefficient weir",
"INFO_LIB_CDWSL": "Discharge coefficient slot",
"INFO_LIB_CDWS": "Discharge coefficient",
"INFO_LIB_CDT": "Discharge coefficient triangular weir",
"INFO_LIB_CDO": "Discharge coefficient orifice",
"INFO_LIB_CLOISON": "Cross wall #",
......
......@@ -5,6 +5,7 @@
"WARNING_ORIFICE_FREE_DOWNSTREAM_ELEVATION_POSSIBLE_SUBMERSION": "La cote de l'eau aval est plus élevée que la cote du centre de l'orifice (ennoiement possible)",
"WARNING_NOTCH_SUBMERSION_GREATER_THAN_07": "La formule de l'échancrure n'est pas conseillée pour un ennoiement supérieur à 0.7",
"WARNING_SLOT_SUBMERSION_NOT_BETWEEN_07_AND_09": "La formule de la fente n'est pas conseillée pour un ennoiement inférieur à 0.7 et supérieur à 0.9",
"WARNING_WEIR_SUBMERSION_LOWER_THAN_08": "La formule du seuil noyé n'est pas conseillé pour un ennoiement inférieur à 0.8",
"WARNING_ERRORS_ABSTRACT": "%nb% erreurs rencontrées lors du calcul",
"ERROR_BIEF_Z1_CALC_FAILED": "Impossible de calculer la cote amont (calcul interrompu avant l'amont)",
"ERROR_BIEF_Z2_CALC_FAILED": "Impossible de calculer la cote aval (calcul interrompu avant l'aval)",
......@@ -202,6 +203,7 @@
"INFO_LIB_CDGR": "Coefficient de débit vanne",
"INFO_LIB_CDWR": "Coefficient de débit seuil",
"INFO_LIB_CDWSL": "Coefficient de débit fente",
"INFO_LIB_CDWS": "Coefficient de débit",
"INFO_LIB_CDT": "Coefficient de débit seuil triangulaire",
"INFO_LIB_CDO": "Coefficient de débit orifice",
"INFO_LIB_CLOISON": "Cloison n°",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment