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

Fix #327 - water levels on Remous chart

parent 874bf581
No related branches found
No related tags found
No related merge requests found
......@@ -21,12 +21,6 @@ export class FormComputeCourbeRemous extends FormCompute {
}
protected compute() {
const cr: CourbeRemous = this._formBase.currentNub as CourbeRemous;
const sect: acSection = cr.Sn;
this.resultYn = sect.CalcSection("Yn"); // hauteur normale
this.resultYc = sect.CalcSection("Yc"); // hauteur critique
this.reaffectResultComponents();
}
......@@ -40,9 +34,12 @@ export class FormComputeCourbeRemous extends FormCompute {
this.remousResults.extraParamSymbol = this._formBase.currentNub.properties.getPropValue("varCalc");
// calcul
// this.remousResults.result = cr.calculRemous(this.remousResults.extraParamSymbol);
this.remousResults.result = cr.CalcSerie();
const sect: acSection = cr.Sn;
this.resultYn = sect.CalcSection("Yn"); // hauteur normale
this.resultYc = sect.CalcSection("Yc"); // hauteur critique
// données du graphe
this.remousResults.hauteurNormale = this.resultYn.resultElement;
this.remousResults.hauteurCritique = this.resultYc.resultElement;
......
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