UNPKG

jalhyd

Version:

JaLHyd, a Javascript Library for Hydraulics

24 lines 1.04 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ParamsSectionPuiss = void 0; const internal_modules_1 = require("../../internal_modules"); const internal_modules_2 = require("../../internal_modules"); const internal_modules_3 = require("../../internal_modules"); /** * Paramètres de la section parabolique ou "puissance" */ class ParamsSectionPuiss extends internal_modules_3.ParamsSection { constructor(rk, rY, rLargeurBerge, rKs, rQ, rIf, rYB, nullParams = false) { super(rY, rLargeurBerge, rKs, rQ, rIf, rYB, nullParams); this._k = new internal_modules_1.ParamDefinition(this, "k", new internal_modules_2.ParamDomain(internal_modules_2.ParamDomainValue.INTERVAL, 0, 1), undefined, rk, undefined, undefined, nullParams); this.addParamDefinition(this._k); } /** * Coefficient de forme compris entre 0 et 1 */ get k() { return this._k; } } exports.ParamsSectionPuiss = ParamsSectionPuiss; //# sourceMappingURL=section_puissance_params.js.map