ZR+ low and high power simulation query #500
-
Hi Team, I am simulating ZR+ 0dBm and -10dBm variants. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
dear @SaiBhyri The feature that will correctly handle transceiver output power and min roadm loss is under review here: https://review.gerrithub.io/c/Telecominfraproject/oopt-gnpy/+/1177986 in the meantime you may tweak using delta_pdb in --spectrum option with gnpy-transmission-example script or with "equalization_offset_db" in transceivers for gnpy-path-request script. Note that you need to compute the expected power offset out or ROADM for your low power channel using the min loss of the ROADM. For example, if your channel should be equalized at -20dBm out of ROADM, but your ROADM loss is minimum -15dBm, you should use min(-20, -10 -15) = -25dBm to determine the expected equalization for this channel and then report the difference vs normal channels in the delta_pdb = -5dB:
you can do exactly the same thing usind transceivers "equalization_offset_db" with the gnpy-path-request script. Note that in both cases this power offset will be repeated at each crossed ROADM, which is probably not what you want. |
Beta Was this translation helpful? Give feedback.
dear @SaiBhyri
The feature that will correctly handle transceiver output power and min roadm loss is under review here: https://review.gerrithub.io/c/Telecominfraproject/oopt-gnpy/+/1177986
in the meantime you may tweak using delta_pdb in --spectrum option with gnpy-transmission-example script or with "equalization_offset_db" in transceivers for gnpy-path-request script.
Note that you need to compute the expected power offset out or ROADM for your low power channel using the min loss of the ROADM. For example, if your channel should be equalized at -20dBm out of ROADM, but your ROADM loss is minimum -15dBm, you should use min(-20, -10 -15) = -25dBm to determine the expected equalization f…