Fix pcb_calculator bug: fails to synthesize microstrip line, due to a not removed change which should have been removed after a test.
This commit is contained in:
parent
527c0eff8e
commit
cef8b388a5
|
@ -396,7 +396,7 @@ double MICROSTRIP::synth_width()
|
||||||
double e_r, a, b;
|
double e_r, a, b;
|
||||||
double w_h, width;
|
double w_h, width;
|
||||||
|
|
||||||
e_r = 0;//er;
|
e_r = er;
|
||||||
|
|
||||||
a = ( (Z0 / ZF0 / 2 /
|
a = ( (Z0 / ZF0 / 2 /
|
||||||
M_PI) * sqrt( (e_r + 1) / 2. ) ) + ( (e_r - 1) / (e_r + 1) * ( 0.23 + (0.11 / e_r) ) );
|
M_PI) * sqrt( (e_r + 1) / 2. ) ) + ( (e_r - 1) / (e_r + 1) * ( 0.23 + (0.11 / e_r) ) );
|
||||||
|
|
Loading…
Reference in New Issue