From 9c1b36a8f2d367606062358f01658688eed7183e Mon Sep 17 00:00:00 2001 From: Balagangadhar Bathula Date: Tue, 25 Jan 2022 11:51:33 -0500 Subject: [PATCH] Correct width for 200G and 300G Currently the width for 200G and 300G is listed as 80 GHz. change it to 75 GHz as per the Optical Specs. JIRA: TRNSPRTPCE-590 Change-Id: Ic8c24676b53e4e09961f9f039785fc600187a46b Signed-off-by: Balagangadhar Bathula --- .../transportpce/common/fixedflex/GridConstant.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/src/main/java/org/opendaylight/transportpce/common/fixedflex/GridConstant.java b/common/src/main/java/org/opendaylight/transportpce/common/fixedflex/GridConstant.java index 7282bec3c..efb8fb717 100644 --- a/common/src/main/java/org/opendaylight/transportpce/common/fixedflex/GridConstant.java +++ b/common/src/main/java/org/opendaylight/transportpce/common/fixedflex/GridConstant.java @@ -98,8 +98,8 @@ public final class GridConstant { private static Table initFrequencyWidthTable() { Table frequencyWidthTable = HashBasedTable.create(); frequencyWidthTable.put(ServiceRateConstant.RATE_100, ModulationFormat.DpQpsk, String.valueOf(WIDTH_40)); - frequencyWidthTable.put(ServiceRateConstant.RATE_200, ModulationFormat.DpQpsk, String.valueOf(WIDTH_80)); - frequencyWidthTable.put(ServiceRateConstant.RATE_300, ModulationFormat.DpQam8, String.valueOf(WIDTH_80)); + frequencyWidthTable.put(ServiceRateConstant.RATE_200, ModulationFormat.DpQpsk, String.valueOf(WIDTH_75)); + frequencyWidthTable.put(ServiceRateConstant.RATE_300, ModulationFormat.DpQam8, String.valueOf(WIDTH_75)); frequencyWidthTable.put(ServiceRateConstant.RATE_400, ModulationFormat.DpQam16, String.valueOf(WIDTH_75)); return frequencyWidthTable; } -- 2.36.6