blob: ca01c6e3cbb8d4e5d82da50944f7b99067aaa84f [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
27 public static final Frequency CENTER_FREQUENCY = Frequency.ofTHz(193.1);
Marc De Leenheerb9311372015-07-09 11:36:49 -070028
29 // O band (original): 1260 to 1360 nm
30 public static final Frequency O_BAND_MIN = Frequency.ofTHz(220.436);
31 public static final Frequency O_BAND_MAX = Frequency.ofTHz(237.931);
32
33 // E band (extended): 1360 to 1460 nm
34 public static final Frequency E_BAND_MIN = Frequency.ofTHz(205.337);
35 public static final Frequency E_BAND_MAX = Frequency.ofTHz(220.436);
36
37 // S band (short wavelength): 1460 to 1530 nm
38 public static final Frequency S_BAND_MIN = Frequency.ofTHz(195.943);
39 public static final Frequency S_BAND_MAX = Frequency.ofTHz(205.337);
40
41 // C band (conventional): 1530 to 1565 nm
42 public static final Frequency C_BAND_MIN = Frequency.ofTHz(191.561);
43 public static final Frequency C_BAND_MAX = Frequency.ofTHz(195.943);
44
45 // L band (long wavelength): 1565 to 1625 nm
46 public static final Frequency L_BAND_MIN = Frequency.ofTHz(184.488);
47 public static final Frequency L_BAND_MAX = Frequency.ofTHz(191.561);
48
49 // U band (ultra-long wavelength): 1625 to 1675 nm
50 public static final Frequency U_BAND_MIN = Frequency.ofTHz(178.981);
51 public static final Frequency U_BAND_MAX = Frequency.ofTHz(184.488);
Marc De Leenheerb0fb41d2015-12-03 22:16:53 -080052
53 private Spectrum() {
54 }
Marc De Leenheerb9311372015-07-09 11:36:49 -070055}