From: Balagangadhar Bathula Date: Tue, 25 Jan 2022 16:51:33 +0000 (-0500) Subject: Correct width for 200G and 300G X-Git-Tag: 4.2.0~23 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F06%2F99606%2F1;p=transportpce.git 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 --- 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; }