Frequency computation
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / fixedflex / GridConstant.java
1 /*
2  * Copyright © 2020 Orange, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.transportpce.common.fixedflex;
10
11 /**
12  * Constant class common to fixed grid and flex grid.
13  *
14  */
15 public final class GridConstant {
16
17     public static final String C_BAND = "cband";
18     public static final int AVAILABLE_SLOT_VALUE = 255;
19     public static final int USED_SLOT_VALUE = 0;
20     public static final double GRANULARITY = 6.25;
21     public static final int EFFECTIVE_BITS = 768;
22     public static final double START_EDGE_FREQUENCY = 191.325;
23     public static final int NB_OCTECTS = 96;
24     public static final double CENTRAL_FREQUENCY = 193.1;
25     public static final int NB_SLOTS_100G = 8;
26     public static final int NB_SLOTS_400G = 14;
27
28     private GridConstant() {
29     }
30 }