diff options
author | Mohammad <mohammad.boroon@highstreet-technologies.com> | 2020-11-09 15:59:34 +0100 |
---|---|---|
committer | Mohammad <mohammad.boroon@highstreet-technologies.com> | 2020-11-09 15:59:48 +0100 |
commit | da4768fe4d28822a91ee7384cbb597cd24435ee6 (patch) | |
tree | 01c7411b250bf36e26458e25f98a7589d9f3edfd /sdnr/wt/odlux/apps/linkCalculationApp/src/actions | |
parent | 5bfc361adaf9bb8f71a6de08883c4a2143103ec0 (diff) |
Update Link Calculator
Add Worst Month analysis to rain loss, update gui
Issue-ID: CCSDK-2888
Signed-off-by: Mohammad <mohammad.boroon@highstreet-technologies.com>
Change-Id: Ibac53720f252840bcfd41daa8d5edc7ddde78b0f
Diffstat (limited to 'sdnr/wt/odlux/apps/linkCalculationApp/src/actions')
-rw-r--r-- | sdnr/wt/odlux/apps/linkCalculationApp/src/actions/commonLinkCalculationActions.ts | 14 |
1 files changed, 14 insertions, 0 deletions
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(); + } +} |