From 6775130562af31c6bc3f844906bc780d815338c3 Mon Sep 17 00:00:00 2001 From: "francois.grand" <francois.grand@irstea.fr> Date: Fri, 9 Mar 2018 10:05:23 +0100 Subject: [PATCH] exports pour les ouvrages --- src/index.ts | 6 ++++++ src/structure/factory_structure.ts | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/index.ts b/src/index.ts index f0a9323b..33eb8b28 100644 --- a/src/index.ts +++ b/src/index.ts @@ -24,3 +24,9 @@ export * from "./pab/pab_dimension"; export * from "./pab/pab_puissance"; export * from "./util/iterator"; export * from "./util/enum"; +export * from "./structure/parallel_structure"; +export * from "./structure/parallel_structure_params"; +export * from "./structure/structure"; +export * from "./structure/structure_params"; +export * from "./structure/factory_structure"; +export * from "./jalhyd_object"; diff --git a/src/structure/factory_structure.ts b/src/structure/factory_structure.ts index 3acb5d4a..3d6d4065 100644 --- a/src/structure/factory_structure.ts +++ b/src/structure/factory_structure.ts @@ -8,11 +8,17 @@ import { StructureOrificeSubmerged } from "./structure_orifice_submerged"; import { StructureWeirFree } from "./structure_weir_free"; export enum StructureType { + // loi de débit Déversoir / Orifice Cemagref 1988 Cem88d, + // loi de débit Déversoir / Vanne de fond Cemagref 1988 Cem88v, + // loi de débit Cunge 1980 Cunge80, + // loi de débit pour vanne dénoyée OrificeFree, + // loi de débit pour vanne noyée OrificeSubmerged, + // loi de débit pour seuil dénoyé WeirFree } -- GitLab