You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*Summary:* This example shows how to create smith charts in F#.
31
+
32
+
let's first create some data for the purpose of creating example charts:
33
+
34
+
*)
35
+
36
+
openPlotly.NET
37
+
38
+
// real coordinates
39
+
letreal=[0.5;1.;2.;3.]
40
+
41
+
// imaginary coordinates
42
+
letimaginary=[0.5;1.;2.;3.]
43
+
44
+
(**
45
+
The Smith chart, invented by Phillip H. Smith (1905–1987) and independently by Mizuhashi Tosaku, is a graphical calculator or nomogram designed for electrical and electronics engineers specializing in radio frequency (RF) engineering to assist in solving problems with transmission lines and matching circuits
46
+
47
+
The Smith chart is a mathematical transformation of the two-dimensional Cartesian complex plane. Complex numbers with positive real parts map inside the circle. Those with negative real parts map outside the circle. If we are dealing only with impedances with non-negative resistive components, our interest is focused on the area inside the circle.
0 commit comments