-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
244 lines (219 loc) · 10.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en" data-content_root="./">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Index — scikit-rf</title>
<link rel="stylesheet" type="text/css" href="_static/pygments.css?v=fa44fd50" />
<link rel="stylesheet" type="text/css" href="_static/bootstrap-sphinx.css?v=284a2d1d" />
<link rel="stylesheet" type="text/css" href="_static/bootstrap-carousel.min.css?v=fd277c8b" />
<link rel="stylesheet" type="text/css" href="_static/carousel-custom.css?v=6fe5d8c5" />
<script src="_static/documentation_options.js?v=5929fcd5"></script>
<script src="_static/doctools.js?v=888ff710"></script>
<script src="_static/sphinx_highlight.js?v=dc90522c"></script>
<script src="_static/bootstrap-carousel.min.js?v=9a6c5d3e"></script>
<link rel="author" title="About these documents" href="about.html" />
<link rel="search" title="Search" href="search.html" />
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-29068876-2', 'auto');
ga('send', 'pageview');
</script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<script>
(adsbygoogle = window.adsbygoogle || []).push({
google_ad_client: "ca-pub-5050140118519400",
enable_page_level_ads: true
});
</script>
</head><body>
<div align ="center" >
<div class="gallery_image" style="margin-top: -2em; margin-left: -10em; margin-bottom: -1em;">
<a href="#"><img src="_static/scikit-rf-title-flat.svg"/></a>
</div>
<hr width = "90%">
<div style="margin-top: -1em; margin-left: -10em; margin-bottom: -1em;">
<h4>
<a href="#">Home</a> ·
<a href="install.html">Install</a> ·
<a href="http://scikit-rf.readthedocs.org/" target="_blank">Docs</a> ·
<a href="https://github.com/scikit-rf/scikit-rf" target="_blank">Source</a> ·
<a href="support.html">Support</a> ·
<!--- <a href="users.html">Users</a> · -->
<a href="merch.html">Merch</a> ·
<a href="about.html">About</a>
</h4>
</div>
</div>
<hr width = "90%">
<div class="container">
<div class="row">
<div class="body col-md-12 content" role="main">
<style type="text/css">
h1 {
display: none;
margin: 0;
padding: 0;
}
</style><section id="index">
<h1>Index<a class="headerlink" href="#index" title="Link to this heading">¶</a></h1>
<section id="description">
<h2>Description<a class="headerlink" href="#description" title="Link to this heading">¶</a></h2>
<p><strong>scikit-rf</strong> (aka <code class="docutils literal notranslate"><span class="pre">skrf</span></code>)
is an Open Source, BSD-licensed package for RF/Microwave engineering implemented in the Python programming language. It provides a modern, object-oriented library for network analysis and calibration which is both flexible and scalable. See some of the <a class="reference internal" href="#features">features</a> below and check out the <a class="reference external" href="http://scikit-rf.readthedocs.org/">Documentation</a> for a more in-depth look at <strong>scikit-rf</strong>.</p>
</section>
<section id="getting-started">
<h2>Getting Started<a class="headerlink" href="#getting-started" title="Link to this heading">¶</a></h2>
<div style="float: left; padding-right: 2em;"><p>Plot touchstone data on a smith chart, in <strong>3 lines</strong>.</p>
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="kn">import</span> <span class="nn">skrf</span> <span class="k">as</span> <span class="nn">rf</span>
<span class="n">ntwk</span> <span class="o">=</span> <span class="n">rf</span><span class="o">.</span><span class="n">Network</span><span class="p">(</span><span class="s1">'ring slot.s2p'</span><span class="p">)</span>
<span class="n">ntwk</span><span class="o">.</span><span class="n">plot_s_smith</span><span class="p">()</span>
</pre></div>
</div>
<p>For more information, tutorials, and</p>
<p>examples, see the <a class="reference external" href="http://scikit-rf.readthedocs.org/">Documentation</a></p>
</div>
<div class="gallery_image" style="margin-top: 0; margin-bottom: 1em;">
<img src="_static/smith_chart.png"/>
</div>
<div style="clear: left;"/><iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/9ZLocBIxOJY" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></section>
<section id="some-examples">
<h2>Some Examples<a class="headerlink" href="#some-examples" title="Link to this heading">¶</a></h2>
<div class="scbs-carousel scbs-slide scbs-carousel-fade scbs-carousel-dark" id="carousel-0">
<div class="scbs-carousel-indicators">
<button aria-current="true" aria-label="Slide 1" class="scbs-active" data-bs-slide-to="0" data-bs-target="#carousel-0" type="button"></button>
<button aria-label="Slide 2" data-bs-slide-to="1" data-bs-target="#carousel-0" type="button"></button>
<button aria-label="Slide 3" data-bs-slide-to="2" data-bs-target="#carousel-0" type="button"></button>
<button aria-label="Slide 4" data-bs-slide-to="3" data-bs-target="#carousel-0" type="button"></button>
<button aria-label="Slide 5" data-bs-slide-to="4" data-bs-target="#carousel-0" type="button"></button>
<button aria-label="Slide 6" data-bs-slide-to="5" data-bs-target="#carousel-0" type="button"></button>
</div>
<div class="scbs-carousel-inner">
<div class="scbs-carousel-item scbs-active">
<img alt="_images/example1.png" class="scbs-d-block scbs-w-100" src="_images/example1.png" />
</div>
<div class="scbs-carousel-item">
<img alt="_images/example2.png" class="scbs-d-block scbs-w-100" src="_images/example2.png" />
</div>
<div class="scbs-carousel-item">
<img alt="_images/example3.png" class="scbs-d-block scbs-w-100" src="_images/example3.png" />
</div>
<div class="scbs-carousel-item">
<img alt="_images/example4.png" class="scbs-d-block scbs-w-100" src="_images/example4.png" />
</div>
<div class="scbs-carousel-item">
<img alt="_images/example5.png" class="scbs-d-block scbs-w-100" src="_images/example5.png" />
</div>
<div class="scbs-carousel-item">
<img alt="_images/example6.png" class="scbs-d-block scbs-w-100" src="_images/example6.png" />
</div>
</div>
<button class="scbs-carousel-control-prev" data-bs-slide="prev" data-bs-target="#carousel-0" type="button">
<span aria-hidden="true" class="scbs-carousel-control-prev-icon"></span>
<span class="scbs-visually-hidden">Previous</span>
</button>
<button class="scbs-carousel-control-next" data-bs-slide="next" data-bs-target="#carousel-0" type="button">
<span aria-hidden="true" class="scbs-carousel-control-next-icon"></span>
<span class="scbs-visually-hidden">Next</span>
</button>
</div>
</section>
<section id="features">
<h2>Features<a class="headerlink" href="#features" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><dl class="simple">
<dt><a class="reference external" href="https://scikit-rf.readthedocs.io/en/latest/examples/index.html#network-theory">Microwave Network Operations</a>:</dt><dd><ul>
<li><p>Read/Write touchstone (.s2p, s?p) files</p></li>
<li><p>Arithmetic operations on scattering parameters</p></li>
<li><p>Cascade/De-embed 2-port networks</p></li>
<li><p>Frequency and port slicing and concatenation.</p></li>
<li><p>Connect n-port networks</p></li>
<li><p>s/z/y/abcd/t - parameter conversion</p></li>
</ul>
</dd>
</dl>
</li>
<li><dl class="simple">
<dt><a class="reference external" href="https://scikit-rf.readthedocs.io/en/latest/tutorials/Plotting.html">Plotting abilities</a>:</dt><dd><ul>
<li><p>Rectangular Plots (dB, mag, Phase, group delay)</p></li>
<li><p>Smith Chart</p></li>
<li><p>Automated Uncertainty bounds</p></li>
</ul>
</dd>
</dl>
</li>
<li><dl class="simple">
<dt><a class="reference external" href="https://scikit-rf.readthedocs.io/en/latest/examples/index.html#metrology-and-calibration">Metrology and Offline Calibration</a>:</dt><dd><ul>
<li><p>One-Port: SOL, Least Squares, SDDL</p></li>
<li><p>Two-Port: TRL, Multiline TRL, SOLT, Unknown Thru, 8/16-Term</p></li>
<li><p>Partial : Enhanced Response, One-Port Two-Path</p></li>
</ul>
</dd>
</dl>
</li>
<li><dl class="simple">
<dt><a class="reference external" href="https://scikit-rf.readthedocs.io/en/latest/tutorials/NetworkSet.html">Sets of Networks</a>:</dt><dd><ul>
<li><p>Statistical properties of NetworkSets</p></li>
<li><p>Methods to sort and visualize set behavior</p></li>
</ul>
</dd>
</dl>
</li>
<li><p><a class="reference external" href="https://scikit-rf.readthedocs.io/en/latest/tutorials/Circuit.html">Circuit builder</a></p></li>
<li><dl class="simple">
<dt>Transmission Line Physics:</dt><dd><ul>
<li><p>Coax, CPW, Freespace, RectangularWaveguide, DistributedCircuit</p></li>
</ul>
</dd>
</dl>
</li>
<li><p><a class="reference external" href="https://scikit-rf.readthedocs.io/en/latest/tutorials/VectorFitting.html">Vector Fitting</a></p></li>
<li><p><a class="reference external" href="https://scikit-rf.readthedocs.io/en/latest/tutorials/Q-Factor.html">Q-Factor calculations</a></p></li>
<li><dl class="simple">
<dt>GUI support through <a class="reference external" href="qtapps.html">qtapps</a></dt><dd><ul>
<li><p>modular, re-useable apps</p></li>
<li><p>supports data retrieval, plotting, calibration and more.</p></li>
</ul>
</dd>
</dl>
</li>
<li><dl class="simple">
<dt>Virtual Instruments (completeness varies by model)</dt><dd><ul>
<li><p>VNAs: PNA, PNAX, ZVA, HP8510, HP8720, NanoVNAs</p></li>
<li><p>SA: HP8500</p></li>
<li><p>Others: ESP300</p></li>
</ul>
</dd>
</dl>
</li>
</ul>
</section>
<section id="help-feedback-bugs">
<h2>Help/Feedback/BUGs<a class="headerlink" href="#help-feedback-bugs" title="Link to this heading">¶</a></h2>
<ul class="simple">
<li><p>For questions about usage, suggestions, or to provide general feedback, please see the <a class="reference external" href="https://github.com/scikit-rf/scikit-rf/discussions">GitHub Discussion section</a> or post in the <a class="reference external" href="https://app.element.io/#/room/#scikit-rf:matrix.org">scikit-rf Matrix channel</a></p></li>
<li><p>If you find a problem in scikit-rf, please post an issue to the <a class="reference external" href="https://github.com/scikit-rf/scikit-rf/issues">Issue Tracker</a></p></li>
</ul>
</section>
</section>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<p class="pull-right">
<a href="#">Back to top</a>
<br/>
</p>
<p>
© Copyright 2024, the scikit-rf development team.<br/>
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 7.2.6.<br/>
</p>
</div>
</footer>
</body>
</html>