From da4768fe4d28822a91ee7384cbb597cd24435ee6 Mon Sep 17 00:00:00 2001 From: Mohammad Date: Mon, 9 Nov 2020 15:59:34 +0100 Subject: Update Link Calculator Add Worst Month analysis to rain loss, update gui Issue-ID: CCSDK-2888 Signed-off-by: Mohammad Change-Id: Ibac53720f252840bcfd41daa8d5edc7ddde78b0f --- .../src/actions/commonLinkCalculationActions.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'sdnr/wt/odlux/apps/linkCalculationApp/src/actions') diff --git a/sdnr/wt/odlux/apps/linkCalculationApp/src/actions/commonLinkCalculationActions.ts b/sdnr/wt/odlux/apps/linkCalculationApp/src/actions/commonLinkCalculationActions.ts index 09887f27f..e7427e4cc 100644 --- a/sdnr/wt/odlux/apps/linkCalculationApp/src/actions/commonLinkCalculationActions.ts +++ b/sdnr/wt/odlux/apps/linkCalculationApp/src/actions/commonLinkCalculationActions.ts @@ -101,4 +101,18 @@ export class updateAltitudeAction extends Action{ super(); } } +export class UpdateAbsorptionLossAction extends Action{ + constructor( + public absorptionOxygen:number, + public absorptionWater:number, + + ){ + super(); + } +} +export class UpdateWorstMonthRainAction extends Action{ + constructor(public month: string){ + super(); + } +} -- cgit 1.2.3-korg