In the NIST Multiline TRL, we need to define the line length of thru, line 1& line2.
My Thru Length: 10mm
Line1: 13.98mm
Line2: 10.92mm
So, I define the code like this:
# define the line lengths in meters (including thru)
l = [0.01, 0.01398, 0.01092]
But I'm confused; is this one correctly defined? Because in the example of scikit-rf, it is defined like that,
# define the line lengths in meters (including thru)
l = [0, 0.3e-3, 2.3e-3]
Please someone help me to figure it out.
Another question is whether we can define the length of DUT/Reflect in the code! Is there a way / Is it required?
Thank you in advance.