blob: c47a2ae325d95c1b3650a693c84587814669f1f8 [file] [log] [blame]
Marc De Leenheerb9311372015-07-09 11:36:49 -07001/*
2 * Copyright 2015 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16package org.onlab.util;
17
18/**
19 * Telecom optical wavelength bands: O, E, S, C, L and U bands.
20 *
21 * See ITU-T G-Series Recommendations, Supplement 39
Marc De Leenheerb0fb41d2015-12-03 22:16:53 -080022 * See ITU-T G.694.1 for center frequency definition.
Marc De Leenheerb9311372015-07-09 11:36:49 -070023 */
24public final class Spectrum {
25
Marc De Leenheerb0fb41d2015-12-03 22:16:53 -080026 // Center frequency
Sho SHIMIZU00762ee2016-01-05 16:32:24 -080027 public static final Frequency CENTER_FREQUENCY = Frequency.ofGHz(193_100);
Marc De Leenheerb9311372015-07-09 11:36:49 -070028
29 // O band (original): 1260 to 1360 nm
Sho SHIMIZU00762ee2016-01-05 16:32:24 -080030 public static final Frequency O_BAND_MIN = Frequency.ofGHz(220_436);
31 public static final Frequency O_BAND_MAX = Frequency.ofGHz(237_931);
Marc De Leenheerb9311372015-07-09 11:36:49 -070032
33 // E band (extended): 1360 to 1460 nm
Sho SHIMIZU00762ee2016-01-05 16:32:24 -080034 public static final Frequency E_BAND_MIN = Frequency.ofGHz(205_337);
35 public static final Frequency E_BAND_MAX = Frequency.ofGHz(220_436);
Marc De Leenheerb9311372015-07-09 11:36:49 -070036
37 // S band (short wavelength): 1460 to 1530 nm
Sho SHIMIZU00762ee2016-01-05 16:32:24 -080038 public static final Frequency S_BAND_MIN = Frequency.ofGHz(195_943);
39 public static final Frequency S_BAND_MAX = Frequency.ofGHz(205_337);
Marc De Leenheerb9311372015-07-09 11:36:49 -070040
41 // C band (conventional): 1530 to 1565 nm
Sho SHIMIZU00762ee2016-01-05 16:32:24 -080042 public static final Frequency C_BAND_MIN = Frequency.ofGHz(191_561);
43 public static final Frequency C_BAND_MAX = Frequency.ofGHz(195_943);
Marc De Leenheerb9311372015-07-09 11:36:49 -070044
45 // L band (long wavelength): 1565 to 1625 nm
Sho SHIMIZU00762ee2016-01-05 16:32:24 -080046 public static final Frequency L_BAND_MIN = Frequency.ofGHz(184_488);
47 public static final Frequency L_BAND_MAX = Frequency.ofGHz(191_561);
Marc De Leenheerb9311372015-07-09 11:36:49 -070048
49 // U band (ultra-long wavelength): 1625 to 1675 nm
Sho SHIMIZU00762ee2016-01-05 16:32:24 -080050 public static final Frequency U_BAND_MIN = Frequency.ofGHz(178_981);
51 public static final Frequency U_BAND_MAX = Frequency.ofGHz(184_488);
Marc De Leenheerb0fb41d2015-12-03 22:16:53 -080052
53 private Spectrum() {
54 }
Marc De Leenheerb9311372015-07-09 11:36:49 -070055}