2006-05-22 Stefan Jahn <stefan@lkcc.org>

* textdoc.cpp (markWord): Fixed segfault bug in syntax
        highlighter.

        * qucs_jp.ts: Updated Japanese translations.  Thanks to
        Toyoyuki.

2006-05-22  Stefan Jahn  <stefan@lkcc.org>

        * tline.cpp (TLine): Changed default value of 'Alpha' to "0 dB".

2006-05-22  Stefan Jahn  <stefan@lkcc.org>

        * docs/ru/index.html: Added Russian translations of the
        internal help system.  Thanks to Igor.

        * docs/en/mathfunc.html: Documented Freq2Time() and Time2Freq().
        Also fixed descriptions of fft, iff, dft and idft.  Added the
        two-argument descriptions of arctan, max and min.


git-svn-id: https://qucs.svn.sourceforge.net/svnroot/qucs/trunk@886 b5b04e8c-4942-46c9-ab4f-83783d557d1c
This commit is contained in:
raimi 2006-05-23 09:13:19 +00:00
parent 692b39cbe3
commit 383ec88590
29 changed files with 3400 additions and 1467 deletions

View File

@ -277,6 +277,7 @@ AC_CONFIG_FILES([Makefile
qucs-help/docs/de/Makefile
qucs-help/docs/es/Makefile
qucs-help/docs/fr/Makefile
qucs-help/docs/ru/Makefile
qucs-filter/Makefile
qucs-transcalc/Makefile
qucs-transcalc/bitmaps/Makefile

View File

@ -1,3 +1,12 @@
2006-05-22 Stefan Jahn <stefan@lkcc.org>
* docs/ru/index.html: Added Russian translations of the
internal help system. Thanks to Igor.
* docs/en/mathfunc.html: Documented Freq2Time() and Time2Freq().
Also fixed descriptions of fft, iff, dft and idft. Added the
two-argument descriptions of arctan, max and min.
2006-02-05 Stefan Jahn <stefan@lkcc.org>
* docs/en/mathfunc.html: Documented new xvalue(), yvalue() and

View File

@ -22,7 +22,7 @@
# Boston, MA 02110-1301, USA.
#
SUBDIRS = en es fr de
SUBDIRS = en es fr de ru
dist_man_MANS = qucs.1 qucsdigi.1

View File

@ -32,7 +32,9 @@ Qucs equations.<br><br>
<tr><td><tt>x%y</tt></td><td>modulo (remainder of division)</td></tr>
<tr><td><tt>x^y</tt></td><td>power</td></tr>
<tr><td><tt>max(x[,range])</tt></td><td>maximum value in vector; if a <tt>range</tt> is given then <tt>x</tt> must have a single data dependency</td></tr>
<tr><td><tt>max(x,y)</tt></td><td>returns the greater of the values <tt>x</tt> and <tt>y</tt></td></tr>
<tr><td><tt>min(x[,range])</tt></td><td>minimum value in vector; if a <tt>range</tt> is given then <tt>x</tt> must have a single data dependency</td></tr>
<tr><td><tt>min(x,y)</tt></td><td>returns the lesser of the values <tt>x</tt> and <tt>y</tt></td></tr>
<tr><td><tt>avg(x[,range])</tt></td><td>arithmetic average of values in vector; if a <tt>range</tt> is given then <tt>x</tt> must have a single data dependency</td></tr>
<tr><td><tt>cumavg(x)</tt></td><td>cumulative average of values in vector</td></tr>
<tr><td><tt>runavg(x)</tt></td><td>running average of values in vector</td></tr>
@ -78,7 +80,7 @@ Qucs equations.<br><br>
<tr><td><tt>tanh(x)</tt></td><td>tangent hyperbolicus</td></tr>
<tr><td><tt>arcsin(x)</tt></td><td>arcus sine</td></tr>
<tr><td><tt>arccos(x)</tt></td><td>arcus cosine</td></tr>
<tr><td><tt>arctan(x)</tt></td><td>arcus tangent</td></tr>
<tr><td><tt>arctan(x[,y])</tt></td><td>arcus tangent</td></tr>
<tr><td><tt>arccot(x)</tt></td><td>arcus cotangent</td></tr>
<tr><td><tt>arsinh(x)</tt></td><td>area sine hyperbolicus</td></tr>
<tr><td><tt>arcosh(x)</tt></td><td>area cosine hyperbolicus</td></tr>
@ -153,10 +155,12 @@ possible values for <tt>"from"</tt> and <tt>"to"</tt> are 'Y', 'Z', 'H', 'G',
<tr><td><tt>GpCircle(S,Gp [,Arcs])</tt></td><td>circle(s) with constant operating power gain <tt>Gp</tt> in the load plane</td></tr>
<tr><td><tt>PlotVs(data,dep)</tt></td><td>returns a data item based upon <tt>data</tt> (vector or matrix vector) with dependency on the given <tt>dep</tt> vector, e.g. <tt>PlotVs(Gain,frequency/1e9)</tt></td></tr>
<tr><td><tt>interpolate(f,x[,n])</tt></td><td>returns an interpolated data vector of the real function <tt>f(x)</tt>using <tt>n</tt> equidistant datapoints, the latter can be omitted and defaults to a reasonable value</td></tr>
<tr><td><tt>fft(v,t)</tt></td><td>computes the fast fourier transformation (FFT) of the function <tt>v(t)</tt></td></tr>
<tr><td><tt>ifft(V,f)</tt></td><td>computes the inverse fast fourier transformation (IFFT) of the function <tt>V(f)</tt></td></tr>
<tr><td><tt>dft(v,t)</tt></td><td>computes the discrete fourier transformation (DFT) of the function <tt>v(t)</tt></td></tr>
<tr><td><tt>idft(V,f)</tt></td><td>computes the inverse discrete fourier transformation (IDFT) of the function <tt>V(f)</tt></td></tr>
<tr><td><tt>fft(x)</tt></td><td>computes the fast fourier transformation (FFT) of the vector <tt>x</tt></td></tr>
<tr><td><tt>ifft(x)</tt></td><td>computes the inverse fast fourier transformation (IFFT) of the vector <tt>x</tt></td></tr>
<tr><td><tt>dft(x)</tt></td><td>computes the discrete fourier transformation (DFT) of the vector <tt>x</tt></td></tr>
<tr><td><tt>idft(x)</tt></td><td>computes the inverse discrete fourier transformation (IDFT) of the vector <tt>x</tt></td></tr>
<tr><td><tt>Time2Freq(v,t)</tt></td><td>computes the discrete fourier transformation of the function <tt>v(t)</tt> interpreting it physically</td></tr>
<tr><td><tt>Freq2Time(V,f)</tt></td><td>computes the inverse discrete fourier transformation of the function <tt>V(f)</tt> interpreting it physically</td></tr>
<tr><td><tt>kbd(x [,n])</tt></td><td>Kaiser-Bessel derived window</td></tr>
<tr><td><tt>yvalue(f,xval)</tt></td><td>returns the y-value of the given vector <tt>f</tt> which is located nearest to the x-value <tt>xval</tt>; therefore the vector <tt>f</tt> must have a single data dependency</td></tr>
<tr><td><tt>xvalue(f,yval)</tt></td><td>returns the x-value which is associated with the y-value nearest to <tt>yval</tt> in the given vector <tt>f</tt>; therefore the vector <tt>f</tt> must have a single data dependency</td></tr>

View File

@ -0,0 +1,37 @@
## Process this file with automake to produce Makefile.in
#
# qucs-help/docs/ru/Makefile.am
#
# Automake input file.
#
# Copyright (C) 2006 Stefan Jahn <stefan@lkcc.org>
#
# This is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this package; see the file COPYING. If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
# Boston, MA 02110-1301, USA.
#
HTML = index.html short.html start.html mathfunc.html subcircuit.html \
programs.html internal.html characters.html matching.html start_digi.html
PIC = qucsmain.png paste.png wire.png select.png contab.png subcircuit.png \
qucsdigi.png
EXTRA_DIST = $(HTML) $(PIC)
# installation of documentation
docdatadir = ${prefix}/share/qucs/docs/ru
docdata_DATA = $(EXTRA_DIST)
CLEANFILES = *~
MAINTAINERCLEANFILES = Makefile.in

View File

@ -0,0 +1,367 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1057;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1099;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1055;&#1086;&#1095;&#1090;&#1080; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081;<br>
</h3>
<h1>&#1055;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1093; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1086;&#1074;<br>
<br>
</h1>
</center>
&#1042; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1077; "&#1058;&#1077;&#1082;&#1089;&#1090;" &#1080; &#1074; &#1090;&#1077;&#1082;&#1089;&#1090;&#1077; &#1084;&#1077;&#1090;&#1086;&#1082; &#1086;&#1089;&#1077;&#1081; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;
&#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1099;. &#1069;&#1090;&#1086; &#1076;&#1077;&#1083;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1090;&#1101;&#1075;&#1086;&#1074; LaTeX. &#1042; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1081;
&#1090;&#1072;&#1073;&#1083;&#1080;&#1094;&#1077; &#1087;&#1088;&#1080;&#1074;&#1086;&#1076;&#1080;&#1090;&#1089;&#1103; &#1087;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1086;&#1074;, &#1080;&#1084;&#1077;&#1102;&#1097;&#1080;&#1093;&#1089;&#1103; &#1074; &#1085;&#1072;&#1089;&#1090;&#1086;&#1103;&#1097;&#1077;&#1077; &#1074;&#1088;&#1077;&#1084;&#1103;.<br>
<br>
<b>&#1055;&#1088;&#1080;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;:</b> &#1055;&#1088;&#1072;&#1074;&#1080;&#1083;&#1100;&#1085;&#1086;&#1077; &#1086;&#1090;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1077; &#1101;&#1090;&#1080;&#1093; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1086;&#1074; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1090; &#1086;&#1090;
&#1096;&#1088;&#1080;&#1092;&#1090;&#1072;, &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1084;&#1086;&#1075;&#1086; Qucs!
<br>
<br>
<b>&#1057;&#1090;&#1088;&#1086;&#1095;&#1085;&#1099;&#1077; &#1075;&#1088;&#1077;&#1095;&#1077;&#1089;&#1082;&#1080;&#1077; &#1073;&#1091;&#1082;&#1074;&#1099;</b>
<table cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td>&#1058;&#1101;&#1075; LaTeX</td>
<td>&#1070;&#1085;&#1080;&#1082;&#1086;&#1076;</td>
<td>&#1054;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077;</td>
</tr>
<tr>
<td><tt>\alpha</tt></td>
<td>0x03B1</td>
<td>&#1072;&#1083;&#1100;&#1092;&#1072;</td>
</tr>
<tr>
<td><tt>\beta</tt></td>
<td>0x03B2</td>
<td>&#1073;&#1077;&#1090;&#1072;</td>
</tr>
<tr>
<td><tt>\gamma</tt></td>
<td>0x03B3</td>
<td>&#1075;&#1072;&#1084;&#1084;&#1072;</td>
</tr>
<tr>
<td><tt>\delta</tt></td>
<td>0x03B4</td>
<td>&#1076;&#1077;&#1083;&#1100;&#1090;&#1072;</td>
</tr>
<tr>
<td><tt>\epsilon</tt></td>
<td>0x03B5</td>
<td>&#1101;&#1087;&#1089;&#1080;&#1083;&#1086;&#1085;</td>
</tr>
<tr>
<td><tt>\zeta</tt></td>
<td>0x03B6</td>
<td>&#1079;&#1077;&#1090;&#1072;</td>
</tr>
<tr>
<td><tt>\eta</tt></td>
<td>0x03B7</td>
<td>&#1101;&#1090;&#1072;</td>
</tr>
<tr>
<td><tt>\theta</tt></td>
<td>0x03B8</td>
<td>&#1090;&#1077;&#1090;&#1072;<br>
</td>
</tr>
<tr>
<td><tt>\iota</tt></td>
<td>0x03B9</td>
<td>&#1081;&#1086;&#1090;&#1072;</td>
</tr>
<tr>
<td><tt>\kappa</tt></td>
<td>0x03BA</td>
<td>&#1082;&#1072;&#1087;&#1087;&#1072;</td>
</tr>
<tr>
<td><tt>\lambda</tt></td>
<td>0x03BB</td>
<td>&#1083;&#1103;&#1084;&#1073;&#1076;&#1072;</td>
</tr>
<tr>
<td><tt>\mu</tt></td>
<td>0x03BC</td>
<td>&#1084;&#1102;</td>
</tr>
<tr>
<td><tt>\textmu</tt></td>
<td>0x00B5</td>
<td>&#1084;&#1102;</td>
</tr>
<tr>
<td><tt>\nu</tt></td>
<td>0x03BD</td>
<td>&#1085;&#1102;</td>
</tr>
<tr>
<td><tt>\xi</tt></td>
<td>0x03BE</td>
<td>&#1082;&#1089;&#1080;</td>
</tr>
<tr>
<td><tt>\pi</tt></td>
<td>0x03C0</td>
<td>&#1087;&#1080;</td>
</tr>
<tr>
<td><tt>\varpi</tt></td>
<td>0x03D6</td>
<td>&#1087;&#1080;</td>
</tr>
<tr>
<td><tt>\rho</tt></td>
<td>0x03C1</td>
<td>&#1088;&#1086;<br>
</td>
</tr>
<tr>
<td><tt>\varrho</tt></td>
<td>0x03F1</td>
<td>&#1088;&#1086;</td>
</tr>
<tr>
<td><tt>\sigma</tt></td>
<td>0x03C3</td>
<td>&#1089;&#1080;&#1075;&#1084;&#1072;</td>
</tr>
<tr>
<td><tt>\tau</tt></td>
<td>0x03C4</td>
<td>&#1090;&#1072;&#1091;</td>
</tr>
<tr>
<td><tt>\upsilon</tt></td>
<td>0x03C5</td>
<td>&#1080;&#1087;&#1089;&#1080;&#1083;&#1086;&#1085;</td>
</tr>
<tr>
<td><tt>\phi</tt></td>
<td>0x03C6</td>
<td>&#1092;&#1080;</td>
</tr>
<tr>
<td><tt>\chi</tt></td>
<td>0x03C7</td>
<td>&#1093;&#1080;</td>
</tr>
<tr>
<td><tt>\psi</tt></td>
<td>0x03C8</td>
<td>&#1087;&#1089;&#1080;</td>
</tr>
<tr>
<td><tt>\omega</tt></td>
<td>0x03C9</td>
<td>&#1086;&#1084;&#1077;&#1075;&#1072;</td>
</tr>
</tbody>
</table>
<br>
<b>&#1055;&#1088;&#1086;&#1087;&#1080;&#1089;&#1085;&#1099;&#1077; &#1075;&#1088;&#1077;&#1095;&#1077;&#1089;&#1082;&#1080;&#1077; &#1073;&#1091;&#1082;&#1074;&#1099;</b>
<table cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td>&#1058;&#1101;&#1075; LaTeX</td>
<td>&#1070;&#1085;&#1080;&#1082;&#1086;&#1076;</td>
<td>&#1054;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077;</td>
</tr>
<tr>
<td><tt>\Gamma</tt></td>
<td>0x0393</td>
<td>&#1043;&#1072;&#1084;&#1084;&#1072;</td>
</tr>
<tr>
<td><tt>\Delta</tt></td>
<td>0x0394</td>
<td>&#1044;&#1077;&#1083;&#1100;&#1090;&#1072;</td>
</tr>
<tr>
<td><tt>\Theta</tt></td>
<td>0x0398</td>
<td>&#1058;&#1077;&#1090;&#1072;</td>
</tr>
<tr>
<td><tt>\Lambda</tt></td>
<td>0x039B</td>
<td>&#1051;&#1103;&#1084;&#1073;&#1076;&#1072;</td>
</tr>
<tr>
<td><tt>\Xi</tt></td>
<td>0x039E</td>
<td>&#1050;&#1089;&#1080;</td>
</tr>
<tr>
<td><tt>\Pi</tt></td>
<td>0x03A0</td>
<td>&#1055;&#1080;</td>
</tr>
<tr>
<td><tt>\Sigma</tt></td>
<td>0x03A3</td>
<td>&#1057;&#1080;&#1075;&#1084;&#1072;</td>
</tr>
<tr>
<td><tt>\Upsilon</tt></td>
<td>0x03A5</td>
<td>&#1048;&#1087;&#1089;&#1080;&#1083;&#1086;&#1085;</td>
</tr>
<tr>
<td><tt>\Phi</tt></td>
<td>0x03A6</td>
<td>&#1060;&#1080;</td>
</tr>
<tr>
<td><tt>\Psi</tt></td>
<td>0x03A8</td>
<td>&#1055;&#1089;&#1080;</td>
</tr>
<tr>
<td><tt>\Omega</tt></td>
<td>0x03A9</td>
<td>&#1054;&#1084;&#1077;&#1075;&#1072;</td>
</tr>
</tbody>
</table>
<br>
<b>&#1052;&#1072;&#1090;&#1077;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1077; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1099;</b>
<table cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td>&#1058;&#1101;&#1075; LaTeX</td>
<td>&#1070;&#1085;&#1080;&#1082;&#1086;&#1076;</td>
<td>&#1054;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077;</td>
</tr>
<tr>
<td><tt>\cdot</tt></td>
<td>0x00B7</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1091;&#1084;&#1085;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103; - &#1090;&#1086;&#1095;&#1082;&#1072; (&#1094;&#1077;&#1085;&#1090;&#1088;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1072;&#1103; &#1090;&#1086;&#1095;&#1082;&#1072;)</td>
</tr>
<tr>
<td><tt>\times</tt></td>
<td>0x00D7</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1091;&#1084;&#1085;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103; - &#1082;&#1088;&#1077;&#1089;&#1090;&#1080;&#1082;<br>
</td>
</tr>
<tr>
<td><tt>\pm</tt></td>
<td>0x00B1</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1087;&#1083;&#1102;&#1089; &#1084;&#1080;&#1085;&#1091;&#1089;<br>
</td>
</tr>
<tr>
<td><tt>\mp</tt></td>
<td>0x2213</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1084;&#1080;&#1085;&#1091;&#1089; &#1087;&#1083;&#1102;&#1089;<br>
</td>
</tr>
<tr>
<td><tt>\partial</tt></td>
<td>0x2202</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1095;&#1072;&#1089;&#1090;&#1085;&#1086;&#1075;&#1086; &#1076;&#1080;&#1092;&#1092;&#1077;&#1088;&#1077;&#1085;&#1094;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;<br>
</td>
</tr>
<tr>
<td><tt>\nabla</tt></td>
<td>0x2207</td>
<td>&#1085;&#1072;&#1073;&#1083;&#1072;-&#1086;&#1087;&#1077;&#1088;&#1072;&#1090;&#1086;&#1088;</td>
</tr>
<tr>
<td><tt>\infty</tt></td>
<td>0x221E</td>
<td>&#1089;&#1080;&#1084;&#1074;&#1086;&#1083; &#1073;&#1077;&#1089;&#1082;&#1086;&#1085;&#1077;&#1095;&#1085;&#1086;&#1089;&#1090;&#1080;<br>
</td>
</tr>
<tr>
<td><tt>\int</tt></td>
<td>0x222B</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1080;&#1085;&#1090;&#1077;&#1075;&#1088;&#1072;&#1083;&#1072;<br>
</td>
</tr>
<tr>
<td><tt>\approx</tt></td>
<td>0x2248</td>
<td>&#1089;&#1080;&#1084;&#1074;&#1086;&#1083; &#1087;&#1088;&#1080;&#1073;&#1083;&#1080;&#1078;&#1077;&#1085;&#1080;&#1103; (&#1074;&#1086;&#1083;&#1085;&#1080;&#1089;&#1090;&#1099;&#1081; &#1079;&#1085;&#1072;&#1082; &#1088;&#1072;&#1074;&#1077;&#1085;&#1089;&#1090;&#1074;&#1072;)</td>
</tr>
<tr>
<td><tt>\neq</tt></td>
<td>0x2260</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1085;&#1077; &#1088;&#1072;&#1074;&#1085;&#1086;<br>
</td>
</tr>
<tr>
<td><tt>\in</tt></td>
<td>0x220A</td>
<td>&#1089;&#1080;&#1084;&#1074;&#1086;&#1083; "&#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090;&#1089;&#1103; &#1074;"</td>
</tr>
<tr>
<td><tt>\leq</tt></td>
<td>0x2264</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1084;&#1077;&#1085;&#1100;&#1096;&#1077;-&#1088;&#1072;&#1074;&#1085;&#1086;<br>
</td>
</tr>
<tr>
<td><tt>\geq</tt></td>
<td>0x2265</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1073;&#1086;&#1083;&#1100;&#1096;&#1077;-&#1088;&#1072;&#1074;&#1085;&#1086;<br>
</td>
</tr>
<tr>
<td><tt>\sim</tt></td>
<td>0x223C</td>
<td>(&#1094;&#1077;&#1085;&#1090;&#1088;&#1072;&#1083;&#1100;&#1085;&#1086;-&#1077;&#1074;&#1088;&#1086;&#1087;&#1077;&#1081;&#1089;&#1082;&#1080;&#1081;) &#1079;&#1085;&#1072;&#1082; &#1087;&#1088;&#1086;&#1087;&#1086;&#1088;&#1094;&#1080;&#1086;&#1085;&#1072;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1080;<br>
</td>
</tr>
<tr>
<td><tt>\propto</tt></td>
<td>0x221D</td>
<td>(&#1072;&#1084;&#1077;&#1088;&#1080;&#1082;&#1072;&#1085;&#1089;&#1082;&#1080;&#1081;) &#1079;&#1085;&#1072;&#1082; &#1087;&#1088;&#1086;&#1087;&#1086;&#1088;&#1094;&#1080;&#1086;&#1085;&#1072;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1080;<br>
</td>
</tr>
<tr>
<td><tt>\diameter</tt></td>
<td>0x00F8</td>
<td>&#1079;&#1085;&#1072;&#1082; &#1076;&#1080;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072; (&#1090;&#1072;&#1082;&#1078;&#1077; &#1079;&#1085;&#1072;&#1082; &#1089;&#1088;&#1077;&#1076;&#1085;&#1077;&#1075;&#1086;)</td>
</tr>
<tr>
<td><tt>\onehalf</tt></td>
<td>0x00BD</td>
<td>&#1087;&#1086;&#1083;&#1086;&#1074;&#1080;&#1085;&#1072;</td>
</tr>
<tr>
<td><tt>\onequarter</tt></td>
<td>0x00BC</td>
<td>&#1095;&#1077;&#1090;&#1074;&#1077;&#1088;&#1090;&#1100;</td>
</tr>
<tr>
<td><tt>\twosuperior</tt></td>
<td>0x00B2</td>
<td>&#1082;&#1074;&#1072;&#1076;&#1088;&#1072;&#1090; (&#1089;&#1090;&#1077;&#1087;&#1077;&#1085;&#1100; 2)</td>
</tr>
<tr>
<td><tt>\threesuperior</tt></td>
<td>0x00B3</td>
<td>&#1089;&#1090;&#1077;&#1087;&#1077;&#1085;&#1100; 3<br>
</td>
</tr>
<tr>
<td><tt>\ohm</tt></td>
<td>0x03A9</td>
<td>&#1077;&#1076;&#1080;&#1085;&#1080;&#1094;&#1072; &#1076;&#1083;&#1103; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; (&#1079;&#1072;&#1075;&#1083;&#1072;&#1074;&#1085;&#1072;&#1103; &#1075;&#1088;&#1077;&#1095;&#1077;&#1089;&#1082;&#1072;&#1103; &#1086;&#1084;&#1077;&#1075;&#1072;)</td>
</tr>
</tbody>
</table>
<br>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a><br>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

View File

@ -0,0 +1,37 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077; &#1089;&#1087;&#1088;&#1072;&#1074;&#1082;&#1080;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1055;&#1086;&#1095;&#1090;&#1080; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081;<br>
</h3>
<h1>&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;<br>
<br>
</h1>
</center>
<a href="start.html">&#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080; &#1074; &#1072;&#1085;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1084; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;</a><br>
<a href="start_digi.html">&#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080; &#1074; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1084; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;</a><br>
<a href="short.html">&#1050;&#1088;&#1072;&#1090;&#1082;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081;</a><br>
<a href="subcircuit.html">&#1056;&#1072;&#1073;&#1086;&#1090;&#1072; &#1089; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1072;&#1084;&#1080;</a><br>
<a href="mathfunc.html">&#1050;&#1088;&#1072;&#1090;&#1082;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1084;&#1072;&#1090;&#1077;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1093; &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1081;</a><br>
<a href="characters.html">&#1055;&#1077;&#1088;&#1077;&#1095;&#1077;&#1085;&#1100; &#1089;&#1087;&#1077;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1099;&#1093; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;&#1086;&#1074;</a><br>
<a href="matching.html">&#1057;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1077; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1085;&#1099;&#1093; &#1089;&#1093;&#1077;&#1084;</a><br>
<a href="programs.html">&#1054;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074; Qucs</a><br>
<a href="internal.html">&#1054;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1086;&#1074; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074; Qucs</a><br>
<br>
&#1058;&#1077;&#1093;&#1085;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1103;, &#1082;&#1072;&#1089;&#1072;&#1102;&#1097;&#1080;&#1077;&#1089;&#1103; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088;&#1072;<br>
&nbsp;&nbsp;&nbsp; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099; &#1085;&#1072;
<a href="http://qucs.sourceforge.net/tech/technical.html">http://qucs.sourceforge.net/tech/technical.html</a><br>
<br>
<big>&#1055;&#1088;&#1080;&#1084;&#1077;&#1088;&#1099; &#1089;&#1093;&#1077;&#1084;</big><br>
&nbsp;&nbsp;&nbsp; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1099; &#1085;&#1072;
<a href="http://qucs.sourceforge.net/download.html#example">http://qucs.sourceforge.net/download.html#example</a><br>
</body>
</html>

View File

@ -0,0 +1,176 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1060;&#1086;&#1088;&#1084;&#1072;&#1090; &#1089;&#1093;&#1077;&#1084;&#1085;&#1086;&#1075;&#1086; &#1092;&#1072;&#1081;&#1083;&#1072;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1055;&#1086;&#1095;&#1090;&#1080; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081;<br>
</h3>
<h1>&#1060;&#1086;&#1088;&#1084;&#1072;&#1090; &#1089;&#1093;&#1077;&#1084;&#1085;&#1086;&#1075;&#1086; &#1092;&#1072;&#1081;&#1083;&#1072;<br>
<br>
</h1>
</center>
&#1042; &#1101;&#1090;&#1086;&#1084; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1077; &#1086;&#1087;&#1080;&#1089;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090; &#1089;&#1093;&#1077;&#1084;&#1085;&#1086;&#1075;&#1086; &#1092;&#1072;&#1081;&#1083;&#1072; Qucs. &#1069;&#1090;&#1086;&#1090; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;
&#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; &#1076;&#1083;&#1103; &#1089;&#1093;&#1077;&#1084; (&#1086;&#1073;&#1099;&#1095;&#1085;&#1086; &#1089; &#1088;&#1072;&#1089;&#1096;&#1080;&#1088;&#1077;&#1085;&#1080;&#1077;&#1084; ".sch") &#1080; &#1076;&#1083;&#1103; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1086;&#1074;
&#1076;&#1072;&#1085;&#1085;&#1099;&#1093; (&#1086;&#1073;&#1099;&#1095;&#1085;&#1086; &#1089; &#1088;&#1072;&#1089;&#1096;&#1080;&#1088;&#1077;&#1085;&#1080;&#1077;&#1084; ".dpl").
&#1042; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1084; &#1090;&#1077;&#1082;&#1089;&#1090;&#1077; &#1087;&#1088;&#1080;&#1074;&#1086;&#1076;&#1080;&#1090;&#1089;&#1103; &#1082;&#1086;&#1088;&#1086;&#1090;&#1082;&#1080;&#1081; &#1087;&#1088;&#1080;&#1084;&#1077;&#1088; &#1089;&#1093;&#1077;&#1084;&#1085;&#1086;&#1075;&#1086; &#1092;&#1072;&#1081;&#1083;&#1072;.
<br>
<br>
<tt><small>
&lt;Qucs Schematic 0.0.6&gt; <br>
&lt;Properties&gt; <br>
&nbsp;&nbsp;&lt;View=0,0,800,800,1,0,0&gt; <br>
&lt;/Properties&gt; <br>
&lt;Symbol&gt; <br>
&nbsp;&nbsp;&lt;.ID -20 14 SUB&gt; <br>
&lt;/Symbol&gt; <br>
&lt;Components&gt; <br>
&nbsp;&nbsp;&lt;R R1 1 180 150 15 -26 0 1 "50 Ohm" 1 "26.85" 0
"european" 0&gt; <br>
&nbsp;&nbsp;&lt;GND * 1 180 180 0 0 0 0&gt; <br>
&lt;/Components&gt; <br>
&lt;Wires&gt; <br>
&nbsp;&nbsp;&lt;180 100 180 120 "" 0 0 0 ""&gt; <br>
&nbsp;&nbsp;&lt;120 100 180 100 "Input" 170 70 21 ""&gt; <br>
&lt;/Wires&gt; <br>
&lt;Diagrams&gt; <br>
&nbsp;&nbsp;&lt;Polar 300 250 200 200 1 #c0c0c0 1 00 1 0 1 1 1 0 5 15 1
0 1 1 315 0 225 "" "" ""&gt; <br>
&nbsp;&nbsp;&nbsp;&nbsp;&lt;"acnoise2:S[2,1]" #0000ff 0 3 0 0 0&gt; <br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;Mkr 6e+09 118 -195 3 0 0&gt; <br>
&nbsp;&nbsp;&lt;/Polar&gt; <br>
&lt;/Diagrams&gt; <br>
&lt;Paintings&gt; <br>
&nbsp;&nbsp;&lt;Arrow 210 320 50 -100 20 8 #000000 0 1&gt; <br>
&lt;/Paintings&gt; <br>
</small></tt>
<br>
<br>
&#1042; &#1092;&#1072;&#1081;&#1083;&#1077; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083;&#1086;&#1074;. &#1042;&#1089;&#1077; &#1086;&#1085;&#1080; &#1086;&#1073;&#1098;&#1103;&#1089;&#1085;&#1103;&#1102;&#1090;&#1089;&#1103; &#1085;&#1080;&#1078;&#1077;.
&#1050;&#1072;&#1078;&#1076;&#1072;&#1103; &#1083;&#1080;&#1085;&#1080;&#1103; &#1089;&#1086;&#1089;&#1090;&#1086;&#1080;&#1090; &#1080;&#1079; &#1085;&#1077; &#1073;&#1086;&#1083;&#1077;&#1077; &#1095;&#1077;&#1084; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1080;&#1085;&#1092;&#1086;&#1088;&#1084;&#1072;&#1094;&#1080;&#1086;&#1085;&#1085;&#1086;&#1075;&#1086; &#1073;&#1083;&#1086;&#1082;&#1072;,
&#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1102;&#1097;&#1077;&#1075;&#1086;&#1089;&#1103; &#1079;&#1085;&#1072;&#1082;&#1086;&#1084; "&#1084;&#1077;&#1085;&#1100;&#1096;&#1077;" ("&lt;") &#1080; &#1079;&#1072;&#1082;&#1072;&#1085;&#1095;&#1080;&#1074;&#1072;&#1102;&#1097;&#1077;&#1075;&#1086;&#1089;&#1103; &#1079;&#1085;&#1072;&#1082;&#1086;&#1084;
"&#1073;&#1086;&#1083;&#1100;&#1096;&#1077;"
("&gt;").
<br>
<h3>Properties</h3>
&#1055;&#1077;&#1088;&#1074;&#1099;&#1081; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089; "&lt;Properties&gt;" &#1080; &#1079;&#1072;&#1082;&#1072;&#1085;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103;
"&lt;/Properties&gt;". &#1054;&#1085; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1089;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;, &#1085;&#1072;&#1093;&#1086;&#1076;&#1103;&#1097;&#1077;&#1075;&#1086;&#1089;&#1103; &#1074;
&#1092;&#1072;&#1081;&#1083;&#1077;. &#1050;&#1072;&#1078;&#1076;&#1072;&#1103; &#1089;&#1090;&#1088;&#1086;&#1082;&#1072; &#1085;&#1077;&#1086;&#1073;&#1103;&#1079;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1072;. &#1055;&#1086;&#1076;&#1076;&#1077;&#1088;&#1078;&#1080;&#1074;&#1072;&#1102;&#1090;&#1089;&#1103; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1089;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074;&#1072;:
<br>
<ul>
<li><em>&lt;View=x1,y1,x2,y2,scale,xpos,ypos&gt;</em> &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090;
&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1077; &#1074; &#1087;&#1080;&#1082;&#1089;&#1077;&#1083;&#1072;&#1093; &#1086;&#1082;&#1085;&#1072; &#1089;&#1093;&#1077;&#1084;&#1099;&nbsp; (&#1087;&#1077;&#1088;&#1074;&#1099;&#1077; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077; &#1095;&#1080;&#1089;&#1083;&#1072;),
&#1077;&#1075;&#1086; &#1090;&#1077;&#1082;&#1091;&#1097;&#1080;&#1081; &#1084;&#1072;&#1089;&#1096;&#1090;&#1072;&#1073; &#1080; &#1090;&#1077;&#1082;&#1091;&#1097;&#1077;&#1077; &#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1077; &#1074;&#1077;&#1088;&#1093;&#1085;&#1077;&#1075;&#1086; &#1083;&#1077;&#1074;&#1086;&#1075;&#1086; &#1091;&#1075;&#1083;&#1072;
(&#1076;&#1074;&#1072; &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1080;&#1093; &#1095;&#1080;&#1089;&#1083;&#1072;).</li>
<li><em>&lt;Grid=x,y,on&gt;</em> &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1096;&#1072;&#1075; &#1089;&#1077;&#1090;&#1082;&#1080; &#1074; &#1087;&#1080;&#1082;&#1089;&#1077;&#1083;&#1072;&#1093;
(&#1087;&#1077;&#1088;&#1074;&#1099;&#1077; &#1076;&#1074;&#1072; &#1095;&#1080;&#1089;&#1083;&#1072;) &#1080; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1072; &#1083;&#1080; &#1089;&#1077;&#1090;&#1082;&#1072; (&#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1077;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; =
1) &#1080;&#1083;&#1080; &#1074;&#1099;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1072; (&#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1077;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; = 0).</li>
<li><em>&lt;DataSet=name.dat&gt;</em> &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1080;&#1084;&#1103; &#1092;&#1072;&#1081;&#1083;&#1072; &#1085;&#1072;&#1073;&#1086;&#1088;&#1072;
&#1076;&#1072;&#1085;&#1085;&#1099;&#1093;, &#1089;&#1074;&#1103;&#1079;&#1072;&#1085;&#1085;&#1086;&#1075;&#1086; &#1089; &#1101;&#1090;&#1086;&#1081; &#1089;&#1093;&#1077;&#1084;&#1086;&#1081;.</li>
<li><em>&lt;DataDisplay=name.dpl&gt;</em> &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1080;&#1084;&#1103; &#1092;&#1072;&#1081;&#1083;&#1072; &#1089;&#1086;
&#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1077;&#1081; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1072; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;, &#1089;&#1074;&#1103;&#1079;&#1072;&#1085;&#1085;&#1086;&#1081; &#1089; &#1101;&#1090;&#1086;&#1081; &#1089;&#1093;&#1077;&#1084;&#1086;&#1081; (&#1080;&#1083;&#1080; &#1080;&#1084;&#1103; &#1089;&#1093;&#1077;&#1084;&#1085;&#1086;&#1075;&#1086;
&#1092;&#1072;&#1081;&#1083;&#1072;, &#1077;&#1089;&#1083;&#1080; &#1101;&#1090;&#1086;&#1090; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1086;&#1084; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;).</li>
<li><em>&lt;OpenDisplay=yes&gt;</em> &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; 1, &#1077;&#1089;&#1083;&#1080; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1072; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;
&#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1086;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080; &#1087;&#1086;&#1089;&#1083;&#1077; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1074; &#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1085;&#1086;&#1084;
&#1089;&#1083;&#1091;&#1095;&#1072;&#1077; - 0.</li>
</ul>
<br>
<h3>Symbol</h3>
&#1069;&#1090;&#1086;&#1090; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089; "&lt;Symbol&gt;" &#1080; &#1079;&#1072;&#1082;&#1072;&#1085;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103;
"&lt;/Symbol&gt;". &#1054;&#1085; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1099; &#1088;&#1080;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1089;&#1086;&#1089;&#1090;&#1072;&#1074;&#1083;&#1103;&#1102;&#1097;&#1080;&#1077; &#1089;&#1093;&#1077;&#1084;&#1085;&#1086;&#1077;
&#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1083;&#1103; &#1092;&#1072;&#1081;&#1083;&#1072;. &#1069;&#1090;&#1086; &#1086;&#1073;&#1099;&#1095;&#1085;&#1086; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1076;&#1083;&#1103; &#1089;&#1093;&#1077;&#1084;&#1085;&#1099;&#1093;
&#1092;&#1072;&#1081;&#1083;&#1086;&#1074;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1089;&#1095;&#1080;&#1090;&#1072;&#1102;&#1090;&#1089;&#1103; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1086;&#1081;.
<br>
<h3>Components</h3>
&#1069;&#1090;&#1086;&#1090; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089; "&lt;Components&gt;" &#1080; &#1079;&#1072;&#1082;&#1072;&#1085;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103;
"&lt;/Components&gt;". &#1054;&#1085; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099; &#1094;&#1077;&#1087;&#1077;&#1081; &#1089;&#1093;&#1077;&#1084;&#1099;. &#1060;&#1086;&#1088;&#1084;&#1072;&#1090;
&#1089;&#1090;&#1088;&#1086;&#1082;&#1080;:
<br>
<em>&lt;type name active x y xtext ytext mirrorX rotate "Value1"
visible "Value2" visible ...&gt;</em>
<br>
<ul>
<li>"type" ("&#1090;&#1080;&#1087;") &#1086;&#1079;&#1085;&#1072;&#1095;&#1072;&#1077;&#1090; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, "R" &#1076;&#1083;&#1103; &#1088;&#1077;&#1079;&#1080;&#1089;&#1090;&#1086;&#1088;&#1072;,
"C" &#1076;&#1083;&#1103; &#1082;&#1086;&#1085;&#1076;&#1077;&#1085;&#1089;&#1072;&#1090;&#1086;&#1088;&#1072;.</li>
<li>"name" ("&#1080;&#1084;&#1103;") - &#1091;&#1085;&#1080;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072; &#1085;&#1072; &#1089;&#1093;&#1077;&#1084;&#1077;,
&#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, "R1" &#1076;&#1083;&#1103; &#1087;&#1077;&#1088;&#1074;&#1086;&#1075;&#1086; &#1088;&#1077;&#1079;&#1080;&#1089;&#1090;&#1086;&#1088;&#1072;.</li>
<li>"1" &#1074; &#1087;&#1086;&#1083;&#1077; "active" ("&#1072;&#1082;&#1090;&#1080;&#1074;&#1085;&#1099;&#1081;") &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;, &#1095;&#1090;&#1086; &#1101;&#1090;&#1086;&#1090; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;
&#1072;&#1082;&#1090;&#1080;&#1074;&#1085;&#1099;&#1081;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; &#1074; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;. "0" &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;, &#1095;&#1090;&#1086; &#1086;&#1085;
&#1085;&#1077;&#1072;&#1082;&#1090;&#1080;&#1074;&#1085;&#1099;&#1081;.</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1076;&#1074;&#1072; &#1095;&#1080;&#1089;&#1083;&#1072; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; x &#1080; y &#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1072;&#1084;&#1080; &#1094;&#1077;&#1085;&#1090;&#1088;&#1072; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;.</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1076;&#1074;&#1072; &#1095;&#1080;&#1089;&#1083;&#1072; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; x &#1080; y &#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1072;&#1084;&#1080; &#1074;&#1077;&#1088;&#1093;&#1085;&#1077;&#1075;&#1086; &#1083;&#1077;&#1074;&#1086;&#1075;&#1086;
&#1091;&#1075;&#1083;&#1072; &#1090;&#1077;&#1082;&#1089;&#1090;&#1072; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;. &#1054;&#1085;&#1080; &#1086;&#1090;&#1089;&#1095;&#1080;&#1090;&#1099;&#1074;&#1072;&#1102;&#1090;&#1089;&#1103; &#1086;&#1090; &#1094;&#1077;&#1085;&#1090;&#1088;&#1072; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;.</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1076;&#1074;&#1072; &#1095;&#1080;&#1089;&#1083;&#1072; &#1091;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1102;&#1090; &#1085;&#1072;&nbsp; &#1079;&#1077;&#1088;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1086;&#1090;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1077;
&#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; &#1086;&#1089;&#1080; x ("1" - &#1079;&#1077;&#1088;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1086;&#1090;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1077;, "0" - &#1085;&#1077;&#1090; &#1079;&#1077;&#1088;&#1082;&#1072;&#1083;&#1100;&#1085;&#1086;&#1075;&#1086;
&#1086;&#1090;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103;) &#1080; &#1074;&#1088;&#1072;&#1097;&#1077;&#1085;&#1080;&#1077; &#1087;&#1088;&#1086;&#1090;&#1080;&#1074; &#1095;&#1072;&#1089;&#1086;&#1074;&#1086;&#1081; &#1089;&#1090;&#1088;&#1077;&#1083;&#1082;&#1080;
(&#1082;&#1088;&#1072;&#1090;&#1085;&#1086; 90 &#1075;&#1088;&#1072;&#1076;&#1091;&#1089;&#1072;&#1084;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100; 0...3).</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080; &#1089;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072; (&#1074;
&#1082;&#1072;&#1074;&#1099;&#1095;&#1082;&#1072;&#1093;), &#1079;&#1072; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084;&#1080; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; 1, &#1077;&#1089;&#1083;&#1080; &#1101;&#1090;&#1086; &#1089;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074;&#1086; &#1074;&#1080;&#1076;&#1080;&#1084;&#1086; &#1085;&#1072; &#1089;&#1093;&#1077;&#1084;&#1077; (&#1074;
&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1085;&#1086;&#1084; &#1089;&#1083;&#1091;&#1095;&#1072;&#1077; 0).</li>
</ul>
<br>
<h3>Wires</h3>
&#1069;&#1090;&#1086;&#1090; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089; "&lt;Wires&gt;" &#1080; &#1079;&#1072;&#1082;&#1072;&#1085;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103;
"&lt;/Wires&gt;". &#1054;&#1085; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1080; (&#1101;&#1083;&#1077;&#1082;&#1090;&#1088;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1077;
&#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1077;&#1085;&#1080;&#1077;&nbsp; &#1084;&#1077;&#1078;&#1076;&#1091; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;&#1084;&#1080; &#1094;&#1077;&#1087;&#1080;), &#1080;&#1093; &#1084;&#1077;&#1090;&#1082;&#1080; &#1080;&nbsp; &#1091;&#1079;&#1083;&#1099;.
&#1060;&#1086;&#1088;&#1084;&#1072;&#1090; &#1089;&#1090;&#1088;&#1086;&#1082;&#1080;:
<br>
<em>&lt;x1 y1 x2 y2 "label" xlabel ylabel dlabel "node set"&gt;</em>
<br>
<ul>
<li>&#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077; &#1095;&#1080;&#1089;&#1083;&#1072; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; &#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1080;&#1072;&#1084;&#1080; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072; &#1074; &#1087;&#1080;&#1082;&#1089;&#1077;&#1083;&#1072;&#1093;:
x-&#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1072; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1090;&#1086;&#1095;&#1082;&#1080;, y-&#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1072; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1090;&#1086;&#1095;&#1082;&#1080;t,
x-&#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1072; &#1082;&#1086;&#1085;&#1077;&#1095;&#1085;&#1086;&#1081; &#1090;&#1086;&#1095;&#1082;&#1080; &#1080; y-&#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1072; &#1082;&#1086;&#1085;&#1077;&#1095;&#1085;&#1086;&#1081; &#1090;&#1086;&#1095;&#1082;&#1080;. &#1042;&#1089;&#1077;
&#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1080; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1073;&#1099;&#1090;&#1100; &#1083;&#1080;&#1073;&#1086; &#1075;&#1086;&#1088;&#1080;&#1079;&#1086;&#1085;&#1090;&#1072;&#1083;&#1100;&#1085;&#1099;&#1084;&#1080; (&#1086;&#1073;&#1077; x-&#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1099; &#1088;&#1072;&#1074;&#1085;&#1099;),
&#1083;&#1080;&#1073;&#1086; &#1074;&#1077;&#1088;&#1090;&#1080;&#1082;&#1072;&#1083;&#1100;&#1085;&#1099;&#1084;&#1080;
(&#1086;&#1073;&#1077; y-&#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1099; &#1088;&#1072;&#1074;&#1085;&#1099;).</li>
<li>&#1055;&#1077;&#1088;&#1074;&#1072;&#1103; &#1089;&#1090;&#1088;&#1086;&#1082;&#1072; &#1074; &#1082;&#1072;&#1074;&#1099;&#1095;&#1082;&#1072;&#1093; - &#1080;&#1084;&#1103; &#1084;&#1077;&#1090;&#1082;&#1080;. &#1054;&#1085;&#1072; &#1087;&#1091;&#1089;&#1090;&#1072;&#1103;, &#1077;&#1089;&#1083;&#1080;
&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100; &#1085;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1083; &#1084;&#1077;&#1090;&#1082;&#1091; &#1085;&#1072; &#1101;&#1090;&#1086;&#1090; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;.</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1076;&#1074;&#1072; &#1095;&#1080;&#1089;&#1083;&#1072; - x- &#1080; y-&#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1099; &#1084;&#1077;&#1090;&#1082;&#1080; &#1080;&#1083;&#1080; &#1085;&#1086;&#1083;&#1100;, &#1077;&#1089;&#1083;&#1080;
&#1084;&#1077;&#1090;&#1082;&#1080; &#1085;&#1077; &#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090;.</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1088;&#1072;&#1089;&#1089;&#1090;&#1086;&#1103;&#1085;&#1080;&#1077;&#1084; &#1084;&#1077;&#1078;&#1076;&#1091; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1090;&#1086;&#1095;&#1082;&#1086;&#1081;
&#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072; &#1080; &#1090;&#1086;&#1095;&#1082;&#1086;&#1081;, &#1075;&#1076;&#1077; &#1085;&#1072; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1072; &#1084;&#1077;&#1090;&#1082;&#1072;.</li>
<li>&#1055;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1103;&#1103; &#1089;&#1090;&#1088;&#1086;&#1082;&#1072; &#1074; &#1082;&#1072;&#1074;&#1099;&#1095;&#1082;&#1072;&#1093; - &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1094;&#1077;&#1087;&#1080; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100;
&#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1077; &#1091;&#1079;&#1083;&#1072;, &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1084;&#1086;&#1077; &#1103;&#1076;&#1088;&#1086;&#1084; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088;&#1072; &#1076;&#1083;&#1103; &#1087;&#1086;&#1080;&#1089;&#1082;&#1072;
&#1088;&#1077;&#1096;&#1077;&#1085;&#1080;&#1103;. &#1069;&#1090;&#1072; &#1089;&#1090;&#1088;&#1086;&#1082;&#1072; &#1087;&#1091;&#1089;&#1090;&#1072;&#1103;, &#1077;&#1089;&#1083;&#1080; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100; &#1085;&#1077; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1080;&#1083; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099;
&#1091;&#1079;&#1083;&#1072; &#1094;&#1077;&#1087;&#1080; &#1076;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072;.</li>
</ul>
<br>
<h3>Diagrams</h3>
&#1069;&#1090;&#1086;&#1090; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089; "&lt;Diagrams&gt;" &#1080; &#1079;&#1072;&#1082;&#1072;&#1085;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103;
"&lt;/Diagrams&gt;". &#1054;&#1085; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1089; &#1080;&#1093; &#1075;&#1088;&#1072;&#1092;&#1080;&#1082;&#1072;&#1084;&#1080; &#1080; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088;&#1072;&#1084;&#1080;.
<br>
<em>&lt;x y width height grid gridcolor gridstyle log xAutoscale xmin
xstep xmax yAutoscale ymin ystep ymax zAutoscale zmin zstep zmax
xrotate yrotate zrotate "xlabel" "ylabel" "zlabel"&gt;</em>
<br>
<ul>
<li>&#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1076;&#1074;&#1072; &#1095;&#1080;&#1089;&#1083;&#1072; - &#1101;&#1090;&#1086; x- &#1080; y-&#1082;&#1086;&#1086;&#1088;&#1076;&#1080;&#1085;&#1072;&#1090;&#1099; &#1085;&#1080;&#1078;&#1085;&#1077;&#1075;&#1086; &#1083;&#1077;&#1074;&#1086;&#1075;&#1086; &#1091;&#1075;&#1083;&#1072;.</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1076;&#1074;&#1072; &#1095;&#1080;&#1089;&#1083;&#1072; - &#1096;&#1080;&#1088;&#1080;&#1085;&#1072; &#1080; &#1074;&#1099;&#1089;&#1086;&#1090;&#1072; &#1075;&#1088;&#1072;&#1085;&#1080;&#1094; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099;.</li>
<li>&#1055;&#1103;&#1090;&#1086;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; &#1088;&#1072;&#1074;&#1085;&#1086; 1, &#1077;&#1089;&#1083;&#1080; &#1089;&#1077;&#1090;&#1082;&#1072; &#1074;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1072;, &#1080; 0, &#1077;&#1089;&#1083;&#1080; &#1089;&#1077;&#1090;&#1082;&#1072;
&#1074;&#1099;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1072;.</li>
<li>&#1044;&#1072;&#1083;&#1100;&#1096;&#1077; &#1080;&#1076;&#1077;&#1090; &#1094;&#1074;&#1077;&#1090; &#1089;&#1077;&#1090;&#1082;&#1080; &#1074; &#1074;&#1080;&#1076;&#1077; 24-&#1073;&#1080;&#1090;&#1085;&#1086;&#1075;&#1086; &#1096;&#1077;&#1089;&#1090;&#1085;&#1072;&#1076;&#1094;&#1072;&#1090;&#1080;&#1088;&#1080;&#1095;&#1085;&#1086;&#1075;&#1086; RGB
&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;,
#FF0000 - &#1082;&#1088;&#1072;&#1089;&#1085;&#1099;&#1081;.</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090; &#1089;&#1090;&#1080;&#1083;&#1100; &#1089;&#1077;&#1090;&#1082;&#1080;.</li>
<li>&#1057;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090;, &#1082;&#1072;&#1082;&#1080;&#1077; &#1086;&#1089;&#1080; &#1080;&#1084;&#1077;&#1102;&#1090; &#1083;&#1086;&#1075;&#1072;&#1088;&#1080;&#1092;&#1084;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;
&#1084;&#1072;&#1089;&#1096;&#1090;&#1072;&#1073;.</li>
<li><br>
</li>
</ul>
<br>
<h3>Paintings</h3>
&#1069;&#1090;&#1086;&#1090; &#1088;&#1072;&#1079;&#1076;&#1077;&#1083; &#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089; "&lt;Paintings&gt;" &#1080; &#1079;&#1072;&#1082;&#1072;&#1085;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103;
"&lt;/Paintings&gt;". &#1054;&#1085; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1099; &#1088;&#1080;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077;
&#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1102;&#1090;&#1089;&#1103; &#1074; &#1089;&#1093;&#1077;&#1084;&#1077;.
<br>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a><br>
</body>
</html>

View File

@ -0,0 +1,70 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1057;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1085;&#1099;&#1077; &#1089;&#1093;&#1077;&#1084;&#1099;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
</h3>
<h3>&#1055;&#1086;&#1095;&#1090;&#1080; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081;</h3>
<h3><br>
</h3>
<h1>&#1057;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1094;&#1077;&#1087;&#1077;&#1081;<br>
<br>
</h1>
</center>
&#1057;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1077; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1085;&#1099;&#1093; &#1094;&#1077;&#1087;&#1077;&#1081; &#1095;&#1072;&#1089;&#1090;&#1086; &#1090;&#1088;&#1077;&#1073;&#1091;&#1077;&#1090;&#1089;&#1103; &#1074; &#1084;&#1080;&#1082;&#1088;&#1086;&#1074;&#1086;&#1083;&#1085;&#1086;&#1074;&#1086;&#1081;
&#1090;&#1077;&#1093;&#1085;&#1086;&#1083;&#1086;&#1075;&#1080;&#1080;. Qucs &#1084;&#1086;&#1078;&#1077;&#1090; &#1076;&#1077;&#1083;&#1072;&#1090;&#1100; &#1101;&#1090;&#1086; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;. &#1053;&#1077;&#1086;&#1073;&#1093;&#1086;&#1076;&#1080;&#1084;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080; &#1076;&#1083;&#1103;
&#1101;&#1090;&#1086;&#1075;&#1086;:<br>
<lu>
<li>&#1042;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; S-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1088;&#1072;&#1089;&#1089;&#1095;&#1080;&#1090;&#1072;&#1090;&#1100; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090;
&#1086;&#1090;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103;.</li>
<li>&#1042;&#1089;&#1090;&#1072;&#1074;&#1080;&#1090;&#1100; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1091;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1086;&#1090;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; (&#1090;&#1086; &#1077;&#1089;&#1090;&#1100;,
S[1,1] &#1076;&#1083;&#1103; &#1087;&#1086;&#1088;&#1090;&#1072; 1, S[2,2] &#1076;&#1083;&#1103; &#1087;&#1086;&#1088;&#1090;&#1072; 2 &#1080; &#1090;.&#1076;.)</li>
<li>&#1055;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1085;&#1072; &#1075;&#1088;&#1072;&#1092;&#1080;&#1082; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088; &#1080; &#1076;&#1074;&#1080;&#1075;&#1072;&#1090;&#1100;&#1089;&#1103; &#1096;&#1072;&#1075;&#1072;&#1084;&#1080; &#1082; &#1090;&#1088;&#1077;&#1073;&#1091;&#1077;&#1084;&#1086;&#1081; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1077;.</li>
<li>&#1053;&#1072;&#1078;&#1072;&#1090;&#1100; &#1087;&#1088;&#1072;&#1074;&#1091;&#1102; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088;&#1077; &#1080; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; "&#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;
&#1084;&#1086;&#1097;&#1085;&#1086;&#1089;&#1090;&#1080;" &#1074; &#1087;&#1086;&#1103;&#1074;&#1080;&#1074;&#1096;&#1077;&#1084;&#1089;&#1103; &#1084;&#1077;&#1085;&#1102;.</li>
<li>&#1055;&#1086;&#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086;, &#1074; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1080;&#1090;&#1100; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103;,
&#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1086;&#1087;&#1086;&#1088;&#1085;&#1086;&#1077; &#1087;&#1086;&#1083;&#1085;&#1086;&#1077; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1086; &#1086;&#1090;&#1083;&#1080;&#1095;&#1072;&#1102;&#1097;&#1080;&#1084;&#1089;&#1103;
&#1086;&#1090; 50 &#1054;&#1084;.</li>
<li>&#1055;&#1086;&#1089;&#1083;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1103; &#1085;&#1072; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; "&#1089;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100;" &#1087;&#1088;&#1086;&#1080;&#1089;&#1093;&#1086;&#1076;&#1080;&#1090; &#1074;&#1086;&#1079;&#1074;&#1088;&#1072;&#1090; &#1082; &#1089;&#1093;&#1077;&#1084;&#1077;, &#1080; &#1089;
&#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1091;&#1088;&#1089;&#1086;&#1088;&#1072; &#1084;&#1099;&#1096;&#1080; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1086; &#1084;&#1077;&#1089;&#1090;&#1086; &#1076;&#1083;&#1103; &#1074;&#1089;&#1090;&#1072;&#1074;&#1082;&#1080; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1085;&#1086;&#1081;
&#1094;&#1077;&#1087;&#1080;.</li>
</lu>
<br>
&#1051;&#1077;&#1074;&#1072;&#1103; &#1089;&#1090;&#1086;&#1088;&#1086;&#1085;&#1072; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1085;&#1086;&#1081; &#1094;&#1077;&#1087;&#1080; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1074;&#1093;&#1086;&#1076;&#1086;&#1084;, &#1072; &#1087;&#1088;&#1072;&#1074;&#1072;&#1103; &#1089;&#1090;&#1086;&#1088;&#1086;&#1085;&#1072;
&#1076;&#1086;&#1083;&#1078;&#1085;&#1072; &#1073;&#1099;&#1090;&#1100; &#1087;&#1086;&#1076;&#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1077;&#1085;&#1072; &#1082; &#1089;&#1093;&#1077;&#1084;&#1077;.
<br>
&#1045;&#1089;&#1083;&#1080; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088; &#1091;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090; &#1085;&#1072; &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1091;&#1102; &#1087;&#1086;&#1076; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084; "Sopt", &#1074; &#1084;&#1077;&#1085;&#1102;
&#1087;&#1086;&#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1086;&#1087;&#1094;&#1080;&#1103; "&#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1096;&#1091;&#1084;&#1072;". &#1054;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077; &#1074;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;, &#1095;&#1090;&#1086;
&#1077;&#1076;&#1080;&#1085;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1099;&#1084; &#1086;&#1090;&#1083;&#1080;&#1095;&#1080;&#1077;&#1084; &#1086;&#1090; "&#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1084;&#1086;&#1097;&#1085;&#1086;&#1089;&#1090;&#1080;" &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1090;&#1086;, &#1095;&#1090;&#1086;
&#1073;&#1077;&#1088;&#1077;&#1090;&#1089;&#1103; &#1089;&#1086;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1085;&#1099;&#1081; &#1082;&#1086;&#1084;&#1087;&#1083;&#1077;&#1082;&#1089;&#1085;&#1099;&#1081; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1086;&#1090;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103;.
&#1055;&#1086;&#1101;&#1090;&#1086;&#1084;&#1091;, &#1077;&#1089;&#1083;&#1080; &#1091; &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;&#1081; &#1076;&#1088;&#1091;&#1075;&#1086;&#1077; &#1080;&#1084;&#1103;, &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1096;&#1091;&#1084;&#1072; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100;
&#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1086; &#1087;&#1091;&#1090;&#1077;&#1084; &#1087;&#1077;&#1088;&#1077;&#1085;&#1072;&#1089;&#1090;&#1088;&#1086;&#1081;&#1082;&#1080; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1081; &#1074; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1084; &#1086;&#1082;&#1085;&#1077;.
<br>
&#1044;&#1080;&#1072;&#1083;&#1086;&#1075; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1080;&#1103; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1090;&#1072;&#1082;&#1078;&#1077; &#1074;&#1099;&#1079;&#1074;&#1072;&#1085; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1084;&#1077;&#1085;&#1102;
(&#1048;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;-&gt;&#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1094;&#1077;&#1087;&#1080;)
&#1080;&#1083;&#1080; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1084;&#1073;&#1080;&#1085;&#1072;&#1094;&#1080;&#1080; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096; (&lt;CTRL-5&gt;). &#1053;&#1086; &#1090;&#1086;&#1075;&#1076;&#1072; &#1074;&#1089;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103;
&#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1074;&#1074;&#1086;&#1076;&#1080;&#1090;&#1100;&#1089;&#1103; &#1074;&#1088;&#1091;&#1095;&#1085;&#1091;&#1102;.
<br>
<br>
<h3>&#1057;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077;&#1093;&#1087;&#1086;&#1083;&#1102;&#1089;&#1085;&#1080;&#1082;&#1072;<br>
</h3>
&#1045;&#1089;&#1083;&#1080; &#1080;&#1084;&#1103; &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;&#1081; &#1074; &#1090;&#1077;&#1082;&#1089;&#1090;&#1077; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088;&#1072; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; S-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1084;, &#1090;&#1086;
&#1089;&#1091;&#1097;&#1077;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100; &#1086;&#1076;&#1085;&#1086;&#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1074;&#1093;&#1086;&#1076;&#1072; &#1080; &#1074;&#1099;&#1093;&#1086;&#1076;&#1072;
&#1095;&#1077;&#1090;&#1099;&#1088;&#1077;&#1093;&#1087;&#1086;&#1083;&#1102;&#1089;&#1085;&#1086;&#1081; &#1094;&#1077;&#1087;&#1080;.
&#1069;&#1090;&#1086; &#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1077;&#1090; &#1086;&#1095;&#1077;&#1085;&#1100; &#1087;&#1086;&#1093;&#1086;&#1078;&#1077; &#1085;&#1072; &#1074;&#1099;&#1096;&#1077;&#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1085;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080;. &#1056;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;&#1086;&#1084; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103;
&#1076;&#1074;&#1077; &#1089;&#1086;&#1075;&#1083;&#1072;&#1089;&#1086;&#1074;&#1072;&#1085;&#1085;&#1099;&#1077; &#1094;&#1077;&#1087;&#1080;: &#1089;&#1072;&#1084;&#1099;&#1081; &#1083;&#1077;&#1074;&#1099;&#1081; &#1091;&#1079;&#1077;&#1083; &#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1103;&#1090;&#1100;&#1089;&#1103; &#1089; &#1087;&#1086;&#1088;&#1090;&#1086;&#1084; 1,
&#1089;&#1072;&#1084;&#1099;&#1081; &#1087;&#1088;&#1072;&#1074;&#1099;&#1081; &#1091;&#1079;&#1077;&#1083; - &#1089; &#1087;&#1086;&#1088;&#1090;&#1086;&#1084; 2, &#1072; &#1076;&#1074;&#1072; &#1091;&#1079;&#1083;&#1072; &#1074; &#1089;&#1077;&#1088;&#1077;&#1076;&#1080;&#1085;&#1077; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099;
&#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1103;&#1090;&#1100;&#1089;&#1103; &#1089; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077;&#1093;&#1087;&#1086;&#1083;&#1102;&#1089;&#1085;&#1080;&#1082;&#1086;&#1084;.
<br>
<br>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a>
</body>
</html>

View File

@ -0,0 +1,574 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1052;&#1072;&#1090;&#1077;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1077; &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1080;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1055;&#1086;&#1095;&#1090;&#1080; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081;<br>
</h3>
<h1>&#1050;&#1088;&#1072;&#1090;&#1082;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1084;&#1072;&#1090;&#1077;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1093; &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1081;<br>
<br>
</h1>
</center>
&#1042; &#1091;&#1088;&#1072;&#1074;&#1085;&#1077;&#1085;&#1080;&#1103;&#1093; Qucs &#1084;&#1086;&#1075;&#1091;&#1090; &#1087;&#1088;&#1080;&#1084;&#1077;&#1085;&#1103;&#1090;&#1100;&#1089;&#1103; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1086;&#1087;&#1077;&#1088;&#1072;&#1094;&#1080;&#1080; &#1080; &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1080;.<br>
<br>
<table cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><tt>+x</tt></td>
<td>&#1091;&#1085;&#1072;&#1088;&#1085;&#1099;&#1081; &#1087;&#1083;&#1102;&#1089;<br>
</td>
</tr>
<tr>
<td><tt>-x</tt></td>
<td>&#1091;&#1085;&#1072;&#1088;&#1085;&#1099;&#1081; &#1084;&#1080;&#1085;&#1091;&#1089;<br>
</td>
</tr>
<tr>
<td><tt>x+y</tt></td>
<td>&#1089;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1077;</td>
</tr>
<tr>
<td><tt>x-y</tt></td>
<td>&#1074;&#1099;&#1095;&#1080;&#1090;&#1072;&#1085;&#1080;&#1077;</td>
</tr>
<tr>
<td><tt>x*y</tt></td>
<td>&#1091;&#1084;&#1085;&#1086;&#1078;&#1077;&#1085;&#1080;&#1077;</td>
</tr>
<tr>
<td><tt>x/y</tt></td>
<td>&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077;</td>
</tr>
<tr>
<td><tt>x%y</tt></td>
<td>&#1086;&#1089;&#1090;&#1072;&#1090;&#1086;&#1082; &#1086;&#1090; &#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103;<br>
</td>
</tr>
<tr>
<td><tt>x^y</tt></td>
<td>&#1074;&#1086;&#1079;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1077; &#1074; &#1089;&#1090;&#1077;&#1087;&#1077;&#1085;&#1100;</td>
</tr>
<tr>
<td><tt>max(x[,range])</tt></td>
<td>&#1084;&#1072;&#1082;&#1089;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1074; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1077;; &#1077;&#1089;&#1083;&#1080; &#1076;&#1072;&#1085; &#1080;&#1085;&#1090;&#1077;&#1088;&#1074;&#1072;&#1083; <tt>range</tt>,
&#1090;&#1086; &#1091; <tt>x</tt> &#1076;&#1086;&#1083;&#1078;&#1085;&#1072; &#1073;&#1099;&#1090;&#1100; &#1086;&#1076;&#1085;&#1086;&#1079;&#1085;&#1072;&#1095;&#1085;&#1072;&#1103; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100; &#1086;&#1090; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;<br>
</td>
</tr>
<tr>
<td><tt>min(x[,range])</tt></td>
<td>&#1084;&#1080;&#1085;&#1080;&#1084;&#1072;&#1083;&#1100;&#1085;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1074; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1077;; &#1077;&#1089;&#1083;&#1080; &#1076;&#1072;&#1085; &#1080;&#1085;&#1090;&#1077;&#1088;&#1074;&#1072;&#1083; <tt>range,</tt>
&#1090;&#1086; &#1091; <tt>x</tt> &#1076;&#1086;&#1083;&#1078;&#1085;&#1072; &#1073;&#1099;&#1090;&#1100; &#1086;&#1076;&#1085;&#1086;&#1079;&#1085;&#1072;&#1095;&#1085;&#1072;&#1103; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100; &#1086;&#1090; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;</td>
</tr>
<tr>
<td><tt>sum(x)</tt></td>
<td>&#1089;&#1091;&#1084;&#1084;&#1072; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1081; &#1074; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1077;<br>
</td>
</tr>
<tr>
<td><tt>prod(x)</tt></td>
<td>&#1087;&#1088;&#1086;&#1080;&#1079;&#1074;&#1077;&#1076;&#1077;&#1085;&#1080;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1081; &#1074; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1077;<br>
</td>
</tr>
<tr>
<td><tt>avg(x[,range])</tt></td>
<td>&#1072;&#1088;&#1080;&#1092;&#1084;&#1077;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1077; &#1089;&#1088;&#1077;&#1076;&#1085;&#1077;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1081; &#1074; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1077;; &#1077;&#1089;&#1083;&#1080; &#1076;&#1072;&#1085; &#1080;&#1085;&#1090;&#1077;&#1088;&#1074;&#1072;&#1083; <tt>range</tt>,
&#1090;&#1086; &#1091; <tt>x</tt> &#1076;&#1086;&#1083;&#1078;&#1085;&#1072; &#1073;&#1099;&#1090;&#1100; &#1086;&#1076;&#1085;&#1086;&#1079;&#1085;&#1072;&#1095;&#1085;&#1072;&#1103; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100; &#1086;&#1090; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;</td>
</tr>
<tr>
<td><tt>real(x)</tt></td>
<td>&#1074;&#1077;&#1097;&#1077;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1072;&#1103; &#1095;&#1072;&#1089;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1083;&#1077;&#1082;&#1089;&#1085;&#1086;&#1075;&#1086; &#1095;&#1080;&#1089;&#1083;&#1072;</td>
</tr>
<tr>
<td><tt>imag(x)</tt></td>
<td>&#1084;&#1085;&#1080;&#1084;&#1072;&#1103; &#1095;&#1072;&#1089;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1083;&#1077;&#1082;&#1089;&#1085;&#1086;&#1075;&#1086; &#1095;&#1080;&#1089;&#1083;&#1072;</td>
</tr>
<tr>
<td><tt>abs(x)</tt></td>
<td>&#1072;&#1073;&#1089;&#1086;&#1083;&#1102;&#1090;&#1085;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;, &#1074;&#1077;&#1083;&#1080;&#1095;&#1080;&#1085;&#1072; &#1082;&#1086;&#1084;&#1087;&#1083;&#1077;&#1082;&#1089;&#1085;&#1086;&#1075;&#1086; &#1095;&#1080;&#1089;&#1083;&#1072;<br>
</td>
</tr>
<tr>
<td><tt>mag(x)</tt></td>
<td>&#1090;&#1086; &#1078;&#1077;, &#1095;&#1090;&#1086; &#1080; abs(x)</td>
</tr>
<tr>
<td><tt>norm(x)</tt></td>
<td>&#1082;&#1074;&#1072;&#1076;&#1088;&#1072;&#1090; mag(x)</td>
</tr>
<tr>
<td><tt>conj(x)</tt></td>
<td>&#1089;&#1086;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1085;&#1086;&#1077; &#1082;&#1086;&#1084;&#1087;&#1083;&#1077;&#1082;&#1089;&#1085;&#1086;&#1077; &#1095;&#1080;&#1089;&#1083;&#1086;<br>
</td>
</tr>
<tr>
<td><tt>phase(x)</tt></td>
<td>&#1092;&#1072;&#1079;&#1072; &#1074; &#1075;&#1088;&#1072;&#1076;&#1091;&#1089;&#1072;&#1093;<br>
</td>
</tr>
<tr>
<td><tt>angle(x)</tt></td>
<td>&#1092;&#1072;&#1079;&#1072; &#1074; &#1088;&#1072;&#1076;&#1080;&#1072;&#1085;&#1072;&#1093;<br>
</td>
</tr>
<tr>
<td><tt>arg(x)</tt></td>
<td>&#1090;&#1086; &#1078;&#1077;, &#1095;&#1090;&#1086; &#1080; angle(x)</td>
</tr>
<tr>
<td><tt>deg2rad(x)</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1075;&#1088;&#1072;&#1076;&#1091;&#1089;&#1099; &#1074; &#1088;&#1072;&#1076;&#1080;&#1072;&#1085;&#1099;</td>
</tr>
<tr>
<td><tt>rad2deg(x)</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1088;&#1072;&#1076;&#1080;&#1072;&#1085;&#1099; &#1074; &#1075;&#1088;&#1072;&#1076;&#1091;&#1089;&#1099;</td>
</tr>
<tr>
<td><tt>unwrap(rad[,tol])</tt></td>
<td>&#1088;&#1072;&#1079;&#1074;&#1086;&#1088;&#1072;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090; &#1091;&#1075;&#1086;&#1083; (&#1074; &#1088;&#1072;&#1076;&#1080;&#1072;&#1085;&#1072;&#1093;), &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1103; &#1085;&#1077;&#1086;&#1073;&#1103;&#1079;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;&#1077;
&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1086;&#1087;&#1091;&#1089;&#1082;&#1072; (&#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; pi)</td>
</tr>
<tr>
<td><tt>dB(x)</tt></td>
<td>&#1076;&#1077;&#1094;&#1080;&#1073;&#1077;&#1083;&#1083;&#1099; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1103;<br>
</td>
</tr>
<tr>
<td><tt>sqrt(x)</tt></td>
<td>&#1082;&#1074;&#1072;&#1076;&#1088;&#1072;&#1090;&#1085;&#1099;&#1081; &#1082;&#1086;&#1088;&#1077;&#1085;&#1100;<br>
</td>
</tr>
<tr>
<td><tt>exp(x)</tt></td>
<td>&#1101;&#1082;&#1089;&#1087;&#1086;&#1085;&#1077;&#1085;&#1094;&#1080;&#1072;&#1083;&#1100;&#1085;&#1072;&#1103; &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1103; &#1089; &#1086;&#1089;&#1085;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084; e</td>
</tr>
<tr>
<td><tt>ln(x)</tt></td>
<td>&#1085;&#1072;&#1090;&#1091;&#1088;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1083;&#1086;&#1075;&#1072;&#1088;&#1080;&#1092;&#1084;<br>
</td>
</tr>
<tr>
<td><tt>log10(x)</tt></td>
<td>&#1076;&#1077;&#1089;&#1103;&#1090;&#1080;&#1095;&#1085;&#1099;&#1081; &#1083;&#1086;&#1075;&#1072;&#1088;&#1080;&#1092;&#1084;<br>
</td>
</tr>
<tr>
<td><tt>log2(x)</tt></td>
<td>&#1076;&#1074;&#1086;&#1080;&#1095;&#1085;&#1099;&#1081; &#1083;&#1086;&#1075;&#1072;&#1088;&#1080;&#1092;&#1084;<br>
</td>
</tr>
<tr>
<td><tt>sin(x)</tt></td>
<td>&#1089;&#1080;&#1085;&#1091;&#1089;</td>
</tr>
<tr>
<td><tt>cos(x)</tt></td>
<td>&#1082;&#1086;&#1089;&#1080;&#1085;&#1091;&#1089;</td>
</tr>
<tr>
<td><tt>tan(x)</tt></td>
<td>&#1090;&#1072;&#1085;&#1075;&#1077;&#1085;&#1089;</td>
</tr>
<tr>
<td><tt>sinh(x)</tt></td>
<td>&#1089;&#1080;&#1085;&#1091;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>cosh(x)</tt></td>
<td>&#1082;&#1086;&#1080;&#1089;&#1085;&#1091;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>tanh(x)</tt></td>
<td>&#1090;&#1072;&#1085;&#1075;&#1077;&#1085;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>arcsin(x)</tt></td>
<td>&#1072;&#1088;&#1082;&#1089;&#1080;&#1085;&#1091;&#1089;</td>
</tr>
<tr>
<td><tt>arccos(x)</tt></td>
<td>&#1072;&#1088;&#1082;&#1082;&#1086;&#1089;&#1080;&#1085;&#1091;&#1089;</td>
</tr>
<tr>
<td><tt>arctan(x)</tt></td>
<td>&#1072;&#1088;&#1082;&#1090;&#1072;&#1085;&#1075;&#1077;&#1085;&#1089;</td>
</tr>
<tr>
<td><tt>arccot(x)</tt></td>
<td>&#1072;&#1088;&#1082;&#1082;&#1086;&#1090;&#1072;&#1085;&#1075;&#1077;&#1085;&#1089;</td>
</tr>
<tr>
<td><tt>arsinh(x)</tt></td>
<td>&#1072;&#1088;&#1077;&#1072;&#1089;&#1080;&#1085;&#1091;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>arcosh(x)</tt></td>
<td>&#1072;&#1088;&#1077;&#1072;&#1082;&#1086;&#1089;&#1080;&#1085;&#1091;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>artanh(x)</tt></td>
<td>&#1072;&#1088;&#1077;&#1072;&#1090;&#1072;&#1085;&#1075;&#1077;&#1085;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>arcoth(x)</tt></td>
<td>&#1072;&#1088;&#1077;&#1072;&#1082;&#1086;&#1090;&#1072;&#1085;&#1075;&#1077;&#1085;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>sec(x)</tt></td>
<td>&#1089;&#1077;&#1082;&#1072;&#1085;&#1089;<br>
</td>
</tr>
<tr>
<td><tt>cosec(x)</tt></td>
<td>&#1082;&#1086;&#1089;&#1077;&#1082;&#1072;&#1085;&#1089;</td>
</tr>
<tr>
<td><tt>cot(x)</tt></td>
<td>&#1082;&#1086;&#1090;&#1072;&#1085;&#1075;&#1077;&#1085;&#1089;</td>
</tr>
<tr>
<td><tt>sech(x)</tt></td>
<td>&#1089;&#1077;&#1082;&#1072;&#1085;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>cosech(x)</tt></td>
<td>&#1082;&#1086;&#1089;&#1077;&#1082;&#1072;&#1085;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>coth(x)</tt></td>
<td>&#1082;&#1086;&#1090;&#1072;&#1085;&#1075;&#1077;&#1085;&#1089; &#1075;&#1080;&#1087;&#1077;&#1088;&#1073;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;<br>
</td>
</tr>
<tr>
<td><tt>ztor(x[,zref])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1087;&#1086;&#1083;&#1085;&#1086;&#1077; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1074; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1086;&#1090;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; (&#1087;&#1086;
&#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; &#1086;&#1087;&#1086;&#1088;&#1085;&#1086;&#1077; &#1087;&#1086;&#1083;&#1085;&#1086;&#1077; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1088;&#1072;&#1074;&#1085;&#1086; 50 &#1054;&#1084;)</td>
</tr>
<tr>
<td><tt>rtoz(x[,zref])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1086;&#1090;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103;&nbsp; (&#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; &#1086;&#1087;&#1086;&#1088;&#1085;&#1086;&#1077;
&#1087;&#1086;&#1083;&#1085;&#1086;&#1077; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1088;&#1072;&#1074;&#1085;&#1086; 50 &#1054;&#1084;) &#1074; &#1087;&#1086;&#1083;&#1085;&#1086;&#1077; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;<br>
</td>
</tr>
<tr>
<td><tt>ytor(x[,zref])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1087;&#1086;&#1083;&#1085;&#1091;&#1102; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100; &#1074; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1086;&#1090;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; (&#1087;&#1086;
&#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; &#1086;&#1087;&#1086;&#1088;&#1085;&#1086;&#1077; &#1087;&#1086;&#1083;&#1085;&#1086;&#1077; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1088;&#1072;&#1074;&#1085;&#1086; 50 &#1054;&#1084;)</td>
</tr>
<tr>
<td><tt>rtoy(x[,zref])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1086;&#1090;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; (&#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; &#1086;&#1087;&#1086;&#1088;&#1085;&#1086;&#1077;
&#1087;&#1086;&#1083;&#1085;&#1086;&#1077; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1088;&#1072;&#1074;&#1085;&#1086; 50 &#1054;&#1084;) &#1074; &#1087;&#1086;&#1083;&#1085;&#1091;&#1102; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100;<br>
</td>
</tr>
<tr>
<td><tt>rtoswr(x)</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1086;&#1090;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; &#1074; &#1082;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1089;&#1090;&#1086;&#1103;&#1095;&#1077;&#1081; &#1074;&#1086;&#1083;&#1085;&#1099;
(&#1087;&#1086; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1102;)</td>
</tr>
<tr>
<td><tt>diff(y,x)</tt></td>
<td>&#1076;&#1080;&#1092;&#1092;&#1077;&#1088;&#1077;&#1085;&#1094;&#1080;&#1088;&#1091;&#1077;&#1090; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088; y &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; x</td>
</tr>
<tr>
<td><tt>diff(y,x,n)</tt></td>
<td>&#1076;&#1080;&#1092;&#1092;&#1077;&#1088;&#1077;&#1085;&#1094;&#1080;&#1088;&#1091;&#1077;&#1090; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088; y &#1086;&#1090;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086; x n &#1088;&#1072;&#1079;</td>
</tr>
<tr>
<td><tt>stos(s,zref[,z0])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; s-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; s-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1089;
&#1076;&#1088;&#1091;&#1075;&#1080;&#1084;(&#1080;) &#1086;&#1087;&#1086;&#1088;&#1085;&#1099;&#1084;(&#1080;) &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;&#1084;(&#1103;&#1084;&#1080;)<br>
</td>
</tr>
<tr>
<td><tt>stoy(s[,zref])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; s-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; y-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;</td>
</tr>
<tr>
<td><tt>stoz(s[,zref])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; s-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; z-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;</td>
</tr>
<tr>
<td><tt>ytos(y[,z0])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; y-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; s-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;</td>
</tr>
<tr>
<td><tt>ytoz(y)</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; y-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; z-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;</td>
</tr>
<tr>
<td><tt>ztos(z[,z0])</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; z-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; s-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;</td>
</tr>
<tr>
<td><tt>ztoy(z)</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; z-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1074; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; y-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;</td>
</tr>
<tr>
<td><tt>twoport(m,&#1080;&#1079;,&#1074;)</tt></td>
<td>&#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1091;&#1077;&#1090; &#1076;&#1072;&#1085;&#1085;&#1091;&#1102; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1091; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077;&#1093;&#1087;&#1086;&#1083;&#1102;&#1089;&#1085;&#1080;&#1082;&#1072; &#1080;&#1079; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086;
&#1087;&#1088;&#1077;&#1076;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1074; &#1076;&#1088;&#1091;&#1075;&#1086;&#1077;, &#1074;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1099;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103; &#1076;&#1083;&#1103; <tt>"&#1080;&#1079;"</tt> &#1080; <tt>"&#1074;"</tt>:
'Y', 'Z',
'H', 'G',
'A', 'S' &#1080; 'T'.</td>
</tr>
<tr>
<td><tt>sign(x)</tt></td>
<td>&#1074;&#1099;&#1095;&#1080;&#1089;&#1083;&#1103;&#1077;&#1090; &#1079;&#1085;&#1072;&#1082;<br>
</td>
</tr>
<tr>
<td><tt>sinc(x)</tt></td>
<td>&#1074;&#1086;&#1079;&#1074;&#1088;&#1072;&#1097;&#1072;&#1077;&#1090; sin(x)/x &#1080; 1 &#1087;&#1088;&#1080; x=0</td>
</tr>
<tr>
<td><tt>det(x)</tt></td>
<td>&#1076;&#1077;&#1090;&#1077;&#1088;&#1084;&#1080;&#1085;&#1072;&#1085;&#1090; x</td>
</tr>
<tr>
<td><tt>transpose(x)</tt></td>
<td>&#1090;&#1088;&#1072;&#1085;&#1089;&#1087;&#1086;&#1085;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1072;&#1103; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1072; x (&#1089;&#1090;&#1088;&#1086;&#1082;&#1080; &#1080; &#1089;&#1090;&#1086;&#1083;&#1073;&#1094;&#1099; &#1084;&#1077;&#1085;&#1103;&#1102;&#1090;&#1089;&#1103;
&#1084;&#1077;&#1089;&#1090;&#1072;&#1084;&#1080;)</td>
</tr>
<tr>
<td><tt>inverse(x)</tt></td>
<td>&#1080;&#1085;&#1074;&#1077;&#1088;&#1089;&#1085;&#1072;&#1103; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1072; x</td>
</tr>
<tr>
<td><tt>eye(n)</tt></td>
<td>n x n &#1077;&#1076;&#1080;&#1085;&#1080;&#1095;&#1085;&#1072;&#1103; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1072;<br>
</td>
</tr>
<tr>
<td><tt>adjoint(x)</tt></td>
<td>&#1082;&#1086;&#1084;&#1087;&#1083;&#1077;&#1082;&#1089;&#1085;&#1086;-&#1089;&#1086;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1085;&#1072;&#1103; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1072; x<br>
</td>
</tr>
<tr>
<td><tt>Rollet(x)</tt></td>
<td>&#1050;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1091;&#1089;&#1090;&#1086;&#1081;&#1095;&#1080;&#1074;&#1086;&#1089;&#1090;&#1080; &#1056;&#1086;&#1083;&#1083;&#1077;&#1090;&#1072; &#1076;&#1083;&#1103; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1099; x (&#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1072;
S-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077;&#1093;&#1087;&#1086;&#1083;&#1102;&#1089;&#1085;&#1080;&#1082;&#1072;)</td>
</tr>
<tr>
<td><tt>Mu(x)</tt></td>
<td>&#1050;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1091;&#1089;&#1090;&#1086;&#1081;&#1095;&#1080;&#1074;&#1086;&#1089;&#1090;&#1080; &#1052;&#1102; &#1076;&#1083;&#1103; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1099; x (&#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1072;
S-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077;&#1093;&#1087;&#1086;&#1083;&#1102;&#1089;&#1085;&#1080;&#1082;&#1072;)</td>
</tr>
<tr>
<td><tt>Mu2(x)</tt></td>
<td>&#1050;&#1086;&#1101;&#1092;&#1092;&#1080;&#1094;&#1080;&#1077;&#1085;&#1090; &#1091;&#1089;&#1090;&#1086;&#1081;&#1095;&#1080;&#1074;&#1086;&#1089;&#1090;&#1080; &#1052;&#1102;' &#1076;&#1083;&#1103; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1099; x (&#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1072;
S-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1095;&#1077;&#1090;&#1099;&#1088;&#1077;&#1093;&#1087;&#1086;&#1083;&#1102;&#1089;&#1085;&#1080;&#1082;&#1072;)</td>
</tr>
<tr>
<td><tt>linspace(from,to,n)</tt></td>
<td>&#1089;&#1086;&#1079;&#1076;&#1072;&#1077;&#1090; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088; &#1089; <tt>n</tt> &#1083;&#1080;&#1085;&#1077;&#1081;&#1085;&#1086; &#1088;&#1072;&#1089;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1084;&#1080;
&#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1072;&#1084;&#1080; &#1084;&#1077;&#1078;&#1076;&#1091; <tt>from</tt> &#1080; <tt>to</tt>, &#1086;&#1073;&#1072; &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;<br>
</td>
</tr>
<tr>
<td><tt>logspace(from,to,n)</tt></td>
<td>&#1089;&#1086;&#1079;&#1076;&#1072;&#1077;&#1090; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088; &#1089; <tt>n</tt> &#1083;&#1086;&#1075;&#1072;&#1088;&#1080;&#1092;&#1084;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080; &#1088;&#1072;&#1089;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1084;&#1080;
&#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1072;&#1084;&#1080; &#1084;&#1077;&#1078;&#1076;&#1091; <tt>from</tt> &#1080; <tt>to</tt>, &#1086;&#1073;&#1072; &#1074;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;<br>
</td>
</tr>
<tr>
<td><tt>NoiseCircle(Sopt,<br>
&nbsp;&nbsp;Fmin,Rn,F[,Arcs])</tt></td>
<td>&#1086;&#1082;&#1088;&#1091;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080; &#1089; &#1087;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1099;&#1084;(&#1080;) &#1095;&#1080;&#1089;&#1083;&#1086;&#1084;(&#1072;&#1084;&#1080;) &#1096;&#1091;&#1084;&#1072; <tt>F</tt>
(&#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1082;&#1086;&#1085;&#1089;&#1090;&#1072;&#1085;&#1090;&#1086;&#1081; &#1080;&#1083;&#1080; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1086;&#1084;), <tt>Arcs</tt> &#1079;&#1072;&#1076;&#1072;&#1077;&#1090; &#1091;&#1075;&#1083;&#1099; &#1074;
&#1075;&#1088;&#1072;&#1076;&#1091;&#1089;&#1072;&#1093;, &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1085;&#1099;&#1077;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; <tt>linspace(0,360,100)</tt>,
&#1077;&#1089;&#1083;&#1080; <tt>Arcs</tt> &#1103;&#1074;&#1103;&#1083;&#1077;&#1090;&#1089;&#1103; &#1095;&#1080;&#1089;&#1083;&#1086;&#1084;, &#1090;&#1086; &#1086;&#1085;&#1086; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090; &#1082;&#1086;&#1083;&#1080;&#1095;&#1077;&#1089;&#1090;&#1074;&#1086;
&#1088;&#1072;&#1074;&#1085;&#1086;&#1084;&#1077;&#1088;&#1085;&#1086; &#1088;&#1072;&#1089;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1089;&#1077;&#1075;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1086;&#1082;&#1088;&#1091;&#1078;&#1085;&#1086;&#1089;&#1090;&#1080;, &#1077;&#1089;&#1083;&#1080; &#1086;&#1085;&#1086; &#1086;&#1087;&#1091;&#1097;&#1077;&#1085;&#1086;, &#1090;&#1086; &#1087;&#1086;
&#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090;&#1089;&#1103; &#1087;&#1088;&#1080;&#1077;&#1084;&#1083;&#1077;&#1084;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;</td>
</tr>
<tr>
<td><tt>StabCircleS(S[,Arcs])</tt></td>
<td>&#1082;&#1088;&#1091;&#1075; &#1091;&#1089;&#1090;&#1086;&#1081;&#1095;&#1080;&#1074;&#1086;&#1089;&#1090;&#1080; &#1074; &#1087;&#1083;&#1086;&#1089;&#1082;&#1086;&#1089;&#1090;&#1080; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072;</td>
</tr>
<tr>
<td><tt>StabCircleL(S[,Arcs])</tt></td>
<td>&#1082;&#1088;&#1091;&#1075; &#1091;&#1089;&#1090;&#1086;&#1081;&#1095;&#1080;&#1074;&#1086;&#1089;&#1090;&#1080; &#1074; &#1087;&#1083;&#1086;&#1089;&#1082;&#1086;&#1089;&#1090;&#1080; &#1085;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;</td>
</tr>
<tr>
<td><tt>GaCircle(S,Ga[,Arcs])</tt></td>
<td>&#1082;&#1088;&#1091;&#1075;(&#1080;) &#1089; &#1087;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1099;&#1084; &#1091;&#1089;&#1080;&#1083;&#1077;&#1085;&#1080;&#1077;&#1084; &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1072;&#1075;&#1072;&#1077;&#1084;&#1086;&#1081; &#1084;&#1086;&#1097;&#1085;&#1086;&#1089;&#1090;&#1080; <tt>Ga</tt>
&#1074; &#1087;&#1083;&#1086;&#1089;&#1082;&#1086;&#1089;&#1090;&#1080; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1072;<br>
</td>
</tr>
<tr>
<td><tt>GpCircle(S,Gp[,Arcs])</tt></td>
<td>&#1082;&#1088;&#1091;&#1075;(&#1080;) &#1089; &#1087;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1099;&#1084; &#1091;&#1089;&#1080;&#1083;&#1077;&#1085;&#1080;&#1077;&#1084; &#1084;&#1086;&#1097;&#1085;&#1086;&#1089;&#1090;&#1080;&nbsp; <tt>Gp</tt> &#1074;
&#1087;&#1083;&#1086;&#1089;&#1082;&#1086;&#1089;&#1090;&#1080; &#1085;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080;<br>
</td>
</tr>
<tr>
<td><tt>PlotVs(data,dep)</tt></td>
<td>&#1074;&#1086;&#1079;&#1074;&#1088;&#1072;&#1097;&#1072;&#1077;&#1090; &#1076;&#1072;&#1085;&#1085;&#1099;&#1077;, &#1086;&#1089;&#1085;&#1086;&#1074;&#1072;&#1085;&#1085;&#1099;&#1077; &#1085;&#1072; <tt>data</tt> (&#1074;&#1077;&#1082;&#1090;&#1086;&#1088; &#1080;&#1083;&#1080;
&#1084;&#1072;&#1090;&#1088;&#1080;&#1095;&#1085;&#1099;&#1081; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;) &#1074; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1080; &#1086;&#1090; &#1076;&#1072;&#1085;&#1085;&#1086;&#1075;&#1086; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1072; <tt>dep</tt>,
&#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, <tt>PlotVs(Gain,frequency/1e9)</tt></td>
</tr>
<tr>
<td><tt>interpolate(f,x[,n])</tt></td>
<td>&#1074;&#1086;&#1079;&#1074;&#1088;&#1072;&#1097;&#1072;&#1077;&#1090; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088; &#1080;&#1085;&#1090;&#1077;&#1088;&#1087;&#1086;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1085;&#1099;&#1093; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1074;&#1077;&#1097;&#1077;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086;&#1081;
&#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1080; <tt>f(x)</tt> &#1089; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084; <tt>n</tt> &#1088;&#1072;&#1074;&#1085;&#1086;&#1091;&#1076;&#1072;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093;
&#1086;&#1090;&#1089;&#1095;&#1077;&#1090;&#1086;&#1074; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;, &#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1080;&#1081; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1086;&#1087;&#1091;&#1097;&#1077;&#1085;, &#1080; &#1073;&#1091;&#1076;&#1077;&#1090;
&#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1086; &#1088;&#1072;&#1079;&#1091;&#1084;&#1085;&#1086;&#1077; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102;</td>
</tr>
<tr>
<td><tt>fft(v,t)</tt></td>
<td>&#1088;&#1072;&#1089;&#1089;&#1095;&#1080;&#1090;&#1099;&#1074;&#1072;&#1077;&#1090; &#1073;&#1099;&#1089;&#1090;&#1088;&#1086;&#1077; &#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1060;&#1091;&#1088;&#1100;&#1077; (FFT) &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1080; <tt>v(t)</tt></td>
</tr>
<tr>
<td><tt>ifft(V,f)</tt></td>
<td>&#1088;&#1072;&#1089;&#1089;&#1095;&#1080;&#1090;&#1099;&#1074;&#1072;&#1077;&#1090; &#1086;&#1073;&#1088;&#1072;&#1090;&#1085;&#1086;&#1077; &#1073;&#1099;&#1089;&#1090;&#1088;&#1086;&#1077; &#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1060;&#1091;&#1088;&#1100;&#1077; (IFFT)
&#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1080; <tt>V(f)</tt></td>
</tr>
<tr>
<td><tt>dft(v,t)</tt></td>
<td>&#1088;&#1072;&#1089;&#1089;&#1095;&#1080;&#1090;&#1099;&#1074;&#1072;&#1077;&#1090; &#1076;&#1080;&#1089;&#1082;&#1088;&#1077;&#1090;&#1085;&#1086;&#1077; &#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1060;&#1091;&#1088;&#1100;&#1077; (DFT) &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1080; <tt>v(t)</tt></td>
</tr>
<tr>
<td><tt>idft(V,f)</tt></td>
<td>&#1088;&#1072;&#1089;&#1089;&#1095;&#1080;&#1090;&#1099;&#1074;&#1072;&#1077;&#1090; &#1086;&#1073;&#1088;&#1072;&#1090;&#1085;&#1086;&#1077; &#1076;&#1080;&#1089;&#1082;&#1088;&#1077;&#1090;&#1085;&#1086;&#1077; &#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1060;&#1091;&#1088;&#1100;&#1077; (IDFT)
&#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1080; <tt>V(f)</tt></td>
</tr>
<tr>
<td><tt>yvalue(f,xval)</tt></td>
<td>&#1074;&#1086;&#1079;&#1074;&#1088;&#1072;&#1097;&#1072;&#1077;&#1090; y-&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1072;&#1085;&#1085;&#1086;&#1075;&#1086; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1072; <tt>f</tt>, &#1073;&#1083;&#1080;&#1078;&#1072;&#1081;&#1096;&#1077;&#1077;
&#1082; x-&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1102; <tt>xval</tt>; &#1089;&#1083;&#1077;&#1076;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;, &#1074;&#1077;&#1082;&#1090;&#1086;&#1088; <tt>f</tt>
&#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1080;&#1084;&#1077;&#1090;&#1100; &#1086;&#1076;&#1085;&#1086;&#1079;&#1085;&#1072;&#1095;&#1085;&#1091;&#1102; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100; &#1086;&#1090; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;</td>
</tr>
<tr>
<td><tt>xvalue(f,yval)</tt></td>
<td>&#1074;&#1086;&#1079;&#1074;&#1088;&#1072;&#1097;&#1072;&#1077;&#1090; x-&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;, &#1089;&#1074;&#1103;&#1079;&#1072;&#1085;&#1085;&#1086;&#1077; &#1089; y-&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;&#1084;, &#1073;&#1083;&#1080;&#1078;&#1072;&#1081;&#1096;&#1080;&#1082; &#1082; <tt>yval</tt>
&#1074; &#1076;&#1072;&#1085;&#1085;&#1086;&#1084; &#1074;&#1077;&#1082;&#1090;&#1086;&#1088;&#1077; <tt>f</tt>; &#1089;&#1083;&#1077;&#1076;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;, &#1074;&#1077;&#1082;&#1090;&#1086;&#1088; <tt>f</tt>
&#1076;&#1086;&#1083;&#1078;&#1077;&#1085; &#1080;&#1084;&#1077;&#1090;&#1100; &#1086;&#1076;&#1085;&#1086;&#1079;&#1085;&#1072;&#1095;&#1085;&#1091;&#1102; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086;&#1089;&#1090;&#1100; &#1086;&#1090; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;</td>
</tr>
</tbody>
</table>
<br>
<b>&#1048;&#1085;&#1090;&#1077;&#1088;&#1074;&#1072;&#1083;&#1099;</b>
<table cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><tt>LO:HI</tt></td>
<td>&#1080;&#1085;&#1090;&#1077;&#1088;&#1074;&#1072;&#1083; &#1086;&#1090; <tt>LO</tt> &#1076;&#1086; <tt>HI</tt></td>
</tr>
<tr>
<td><tt>:HI</tt></td>
<td>&#1074;&#1087;&#1083;&#1086;&#1090;&#1100; &#1076;&#1086; <tt>HI</tt></td>
</tr>
<tr>
<td><tt>LO:</tt></td>
<td>&#1086;&#1090; <tt>LO</tt></td>
</tr>
<tr>
<td><tt>:</tt></td>
<td>&#1085;&#1077;&#1090; &#1075;&#1088;&#1072;&#1085;&#1080;&#1094; &#1080;&#1085;&#1090;&#1077;&#1088;&#1074;&#1072;&#1083;&#1072;<br>
</td>
</tr>
</tbody>
</table>
<br>
<b>&#1052;&#1072;&#1090;&#1088;&#1080;&#1094;&#1099;</b>
<table cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><tt>M</tt></td>
<td>&#1074;&#1089;&#1103; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1072; M</td>
</tr>
<tr>
<td><tt>M[2,3]</tt></td>
<td>&#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;, &#1085;&#1072;&#1093;&#1086;&#1076;&#1103;&#1097;&#1080;&#1081;&#1089;&#1103; &#1074;&#1086; 2-&#1081; &#1089;&#1090;&#1088;&#1086;&#1082;&#1077; &#1080; 3-&#1084; &#1089;&#1090;&#1086;&#1083;&#1073;&#1094;&#1077; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1099; M</td>
</tr>
<tr>
<td><tt>M[:,3]</tt></td>
<td>&#1074;&#1077;&#1082;&#1090;&#1086;&#1088;, &#1089;&#1086;&#1089;&#1090;&#1086;&#1103;&#1097;&#1080;&#1081; &#1080;&#1079; 3-&#1075;&#1086; &#1089;&#1090;&#1086;&#1083;&#1073;&#1094;&#1072; &#1084;&#1072;&#1090;&#1088;&#1080;&#1094;&#1099; M</td>
</tr>
</tbody>
</table>
<br>
<b>&#1048;&#1084;&#1077;&#1085;&#1072; &#1074;&#1077;&#1083;&#1080;&#1095;&#1080;&#1085;</b>
<table cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><tt>S[1,1]</tt></td>
<td>&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; S-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1072;</td>
</tr>
<tr>
<td><i>nodename</i><tt>.V</tt></td>
<td>&#1087;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1086;&#1077; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1077; &#1074; &#1091;&#1079;&#1083;&#1077; <i>nodename</i></td>
</tr>
<tr>
<td><i>name</i><tt>.I</tt></td>
<td>&#1087;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1099;&#1081; &#1090;&#1086;&#1082; &#1095;&#1077;&#1088;&#1077;&#1079; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; <i>name</i></td>
</tr>
<tr>
<td><i>nodename</i><tt>.v</tt></td>
<td>&#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;&#1077; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1077; &#1074; &#1091;&#1079;&#1083;&#1077; <i>nodename</i></td>
</tr>
<tr>
<td><i>name</i><tt>.i</tt></td>
<td>&#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1099;&#1081; &#1090;&#1086;&#1082; &#1095;&#1077;&#1088;&#1077;&#1079; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; <i>name</i></td>
</tr>
<tr>
<td><i>nodename</i><tt>.vn</tt></td>
<td>&#1096;&#1091;&#1084;&#1086;&#1074;&#1086;&#1077; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1077; &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1090;&#1086;&#1082;&#1072; &#1074; &#1091;&#1079;&#1083;&#1077; <i>nodename</i></td>
</tr>
<tr>
<td><i>name</i><tt>.in</tt></td>
<td>&#1096;&#1091;&#1084;&#1086;&#1074;&#1086;&#1081; &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1099;&#1081; &#1090;&#1086;&#1082; &#1095;&#1077;&#1088;&#1077;&#1079; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; <i>name</i></td>
</tr>
<tr>
<td><i>nodename</i><tt>.Vt</tt></td>
<td>&#1087;&#1077;&#1088;&#1077;&#1093;&#1086;&#1076;&#1085;&#1086;&#1077; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1077; &#1074; &#1091;&#1079;&#1083;&#1077; <i>nodename</i></td>
</tr>
<tr>
<td><i>name</i><tt>.It</tt></td>
<td>&#1087;&#1077;&#1088;&#1077;&#1093;&#1086;&#1076;&#1085;&#1086;&#1081; &#1090;&#1086;&#1082; &#1095;&#1077;&#1088;&#1077;&#1079; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; <i>name</i></td>
</tr>
</tbody>
</table>
&#1055;&#1088;&#1080;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;: &#1042;&#1089;&#1077; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1103; &#1080; &#1090;&#1086;&#1082;&#1080; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; &#1087;&#1080;&#1082;&#1086;&#1074;&#1099;&#1084;&#1080; &#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080;.
<br>
<br>
<b>&#1050;&#1086;&#1085;&#1089;&#1090;&#1072;&#1085;&#1090;&#1099;</b>
<table cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td><tt>j</tt></td>
<td>&#1084;&#1085;&#1080;&#1084;&#1072;&#1103; &#1077;&#1076;&#1080;&#1085;&#1080;&#1094;&#1072; ("&#1082;&#1074;&#1072;&#1076;&#1088;&#1072;&#1090;&#1085;&#1099;&#1081; &#1082;&#1086;&#1088;&#1077;&#1085;&#1100; &#1080;&#1079; -1")</td>
</tr>
<tr>
<td><tt>pi</tt></td>
<td>4*arctan(1) = 3.14159...</td>
</tr>
<tr>
<td><tt>e</tt></td>
<td>e = 2.71828...</td>
</tr>
<tr>
<td><tt>kB</tt></td>
<td>&#1055;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1072;&#1103; &#1041;&#1086;&#1083;&#1100;&#1094;&#1084;&#1072;&#1085;&#1072; = 1.38065e-23</td>
</tr>
</tbody>
</table>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a><br>
</body>
</html>

BIN
qucs-help/docs/ru/paste.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 708 B

View File

@ -0,0 +1,81 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1077; &#1092;&#1072;&#1081;&#1083;&#1099;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1059;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1085;&#1099;&#1077; &#1092;&#1072;&#1081;&#1083;&#1099;<br>
</h3>
</center>
&#1042; &#1089;&#1086;&#1089;&#1090;&#1072;&#1074; Qucs &#1074;&#1093;&#1086;&#1076;&#1103;&#1090; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;. &#1054;&#1085;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1072;&#1074;&#1083;&#1080;&#1074;&#1072;&#1102;&#1090;&#1089;&#1103; &#1074;&#1086; &#1074;&#1088;&#1077;&#1084;&#1103;
&#1087;&#1088;&#1086;&#1094;&#1077;&#1089;&#1089;&#1072; &#1080;&#1085;&#1089;&#1090;&#1072;&#1083;&#1083;&#1103;&#1094;&#1080;&#1080;. &#1055;&#1091;&#1090;&#1100;, &#1082;&#1091;&#1076;&#1072; &#1091;&#1089;&#1090;&#1072;&#1085;&#1072;&#1074;&#1083;&#1080;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; Qucs, &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1088;&#1080;
&#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; (&#1089;&#1082;&#1088;&#1080;&#1087;&#1090;&#1086;&#1084; <tt>configure</tt>). &#1042; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1093; &#1086;&#1073;&#1098;&#1103;&#1089;&#1085;&#1077;&#1085;&#1080;&#1103;&#1093;
&#1087;&#1088;&#1080;&#1085;&#1080;&#1084;&#1072;&#1077;&#1090;&#1089;&#1103; &#1087;&#1091;&#1090;&#1100; &#1087;&#1086; &#1091;&#1084;&#1086;&#1083;&#1095;&#1072;&#1085;&#1080;&#1102; (<tt>/usr/local/</tt>).
<br>
<br>
<tt>/usr/local/bin/qucs&nbsp;&nbsp;&nbsp;&nbsp; </tt> - &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;
&#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;<br>
<tt>/usr/local/bin/qucsator </tt> - &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; (&#1082;&#1086;&#1085;&#1089;&#1086;&#1083;&#1100;&#1085;&#1086;&#1077; &#1087;&#1088;&#1080;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1077;)
<br>
<tt>/usr/local/bin/qucsedit </tt> - &#1087;&#1088;&#1086;&#1089;&#1090;&#1086;&#1081; &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1074;&#1099;&#1081; &#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1086;&#1088;<br>
<tt>/usr/local/bin/qucshelp </tt> - &#1085;&#1077;&#1073;&#1086;&#1083;&#1100;&#1096;&#1072;&#1103; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1076;&#1083;&#1103;
&#1086;&#1090;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; &#1089;&#1087;&#1088;&#1072;&#1074;&#1086;&#1095;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;
<br>
<tt>/usr/local/bin/qucstrans </tt> - &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1076;&#1083;&#1103; &#1088;&#1072;&#1089;&#1095;&#1077;&#1090;&#1072; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074;
&#1083;&#1080;&#1085;&#1080;&#1081; &#1087;&#1077;&#1088;&#1077;&#1076;&#1072;&#1095;
<br>
<tt>/usr/local/bin/qucsfilter </tt> - &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; &#1089;&#1080;&#1085;&#1090;&#1077;&#1079;&#1072; &#1092;&#1080;&#1083;&#1100;&#1090;&#1088;&#1086;&#1074;
<br>
<tt>/usr/local/bin/qucsconv </tt> - &#1087;&#1088;&#1077;&#1086;&#1073;&#1088;&#1072;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100; &#1092;&#1086;&#1088;&#1084;&#1072;&#1090;&#1086;&#1074; &#1092;&#1072;&#1081;&#1083;&#1086;&#1074;
(&#1082;&#1086;&#1085;&#1089;&#1086;&#1083;&#1100;&#1085;&#1086;&#1077; &#1087;&#1088;&#1080;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1077;)
<br>
<br>
&#1042;&#1089;&#1077; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; &#1089;&#1072;&#1084;&#1086;&#1089;&#1090;&#1086;&#1103;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1084;&#1080; &#1087;&#1088;&#1080;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1103;&#1084;&#1080; &#1080; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100;
&#1079;&#1072;&#1087;&#1091;&#1097;&#1077;&#1085;&#1099; &#1085;&#1077;&#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1084;&#1086; &#1076;&#1088;&#1091;&#1075; &#1086;&#1090; &#1076;&#1088;&#1091;&#1075;&#1072;. &#1043;&#1083;&#1072;&#1074;&#1085;&#1072;&#1103; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072; (&#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081;
&#1080;&#1085;&#1090;&#1077;&#1092;&#1077;&#1081;&#1089;)
<br>
&#1074;&#1099;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090; <tt>qucsator</tt> &#1087;&#1088;&#1080; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1080; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;,
<br>
&#1074;&#1099;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090; <tt>qucsedit</tt>, &#1082;&#1086;&#1075;&#1076;&#1072; &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1102;&#1090;&#1089;&#1103; &#1090;&#1077;&#1082;&#1089;&#1090;&#1086;&#1074;&#1099;&#1077; &#1092;&#1072;&#1081;&#1083;&#1099;,
<br>
&#1074;&#1099;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090; <tt>qucshelp</tt>, &#1082;&#1086;&#1075;&#1076;&#1072; &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089;&#1087;&#1088;&#1072;&#1074;&#1086;&#1095;&#1085;&#1072;&#1103; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1072;,
<br>
&#1074;&#1099;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090; <tt>qucstrans</tt> &#1087;&#1088;&#1080; &#1074;&#1099;&#1079;&#1086;&#1074;&#1077; &#1101;&#1090;&#1086;&#1081; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1080;&#1079; &#1084;&#1077;&#1085;&#1102;
"&#1048;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;",
<br>
&#1074;&#1099;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090; <tt>qucsfilter</tt> &#1087;&#1088;&#1080; &#1074;&#1099;&#1079;&#1086;&#1074;&#1077; &#1101;&#1090;&#1086;&#1081; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1080;&#1079; &#1084;&#1077;&#1085;&#1102;
"&#1048;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099;",
<br>
&#1074;&#1099;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090; <tt>qucsconv</tt>, &#1082;&#1086;&#1075;&#1076;&#1072; &#1074;&#1089;&#1090;&#1072;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; SPICE &#1080; &#1082;&#1086;&#1075;&#1076;&#1072;
&#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1103;&#1077;&#1090;&#1089;&#1103; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1089; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;&#1084; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072; SPICE.
<br>
<br>
&#1050;&#1088;&#1086;&#1084;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1087;&#1088;&#1080; &#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1082;&#1077; &#1089;&#1086;&#1079;&#1076;&#1072;&#1102;&#1090;&#1089;&#1103; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1077; &#1087;&#1072;&#1087;&#1082;&#1080;:
<br>
<tt>/usr/local/share/qucs/bitmaps </tt> - &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090; &#1074;&#1089;&#1077; &#1088;&#1072;&#1089;&#1090;&#1088;&#1086;&#1074;&#1099;&#1077;
&#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; (&#1079;&#1085;&#1072;&#1095;&#1082;&#1080; &#1080; &#1090;.&#1076;.)
<br>
<tt>/usr/local/share/qucs/docs&nbsp;&nbsp;&nbsp; </tt> - &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090;
HTML-&#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099; &#1089;&#1087;&#1088;&#1072;&#1074;&#1086;&#1095;&#1085;&#1086;&#1081; &#1089;&#1080;&#1089;&#1090;&#1077;&#1084;&#1099;<br>
<tt>/usr/local/share/qucs/lang&nbsp;&nbsp;&nbsp; </tt> -
&#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1090;&nbsp; &#1092;&#1072;&#1081;&#1083;&#1099; &#1087;&#1077;&#1088;&#1077;&#1074;&#1086;&#1076;&#1086;&#1074;
<br>
<br>
<h4>&#1040;&#1088;&#1075;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1085;&#1086;&#1081; &#1089;&#1090;&#1088;&#1086;&#1082;&#1080;<br>
</h4>
<tt>qucs [&#1092;&#1072;&#1081;&#1083;1 [&#1092;&#1072;&#1081;&#1083;2 ...]]</tt><br>
<tt>qucsator [-b] -i &#1080;&#1084;&#1103;_&#1089;&#1093;&#1077;&#1084;&#1099; -o &#1085;&#1072;&#1073;&#1086;&#1088;_&#1076;&#1072;&#1085;&#1085;&#1099;&#1093;</tt> (b = &#1087;&#1086;&#1083;&#1086;&#1089;&#1072;
&#1087;&#1088;&#1086;&#1075;&#1088;&#1077;&#1089;&#1089;&#1072;)<br>
<tt>qucsedit [-r] [&#1092;&#1072;&#1081;&#1083;]</tt> (r = &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1076;&#1083;&#1103; &#1095;&#1090;&#1077;&#1085;&#1080;&#1103;)<br>
<tt>qucshelp</tt> (&#1085;&#1077;&#1090; &#1072;&#1088;&#1075;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;)<br>
<tt>qucsconv -if spice -of qucs -i netlist.inp -o netlist.net</tt><br>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a><br>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 543 B

View File

@ -0,0 +1,243 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1050;&#1088;&#1072;&#1090;&#1082;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1055;&#1086;&#1095;&#1090;&#1080; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081;<br>
</h3>
<h1>&#1050;&#1088;&#1072;&#1090;&#1082;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1081;<br>
<br>
</h1>
</center>
<h3>&#1044;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103; &#1086;&#1073;&#1097;&#1077;&#1075;&#1086; &#1085;&#1072;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103;<br>
</h3>
(&#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1091;&#1102;&#1090; &#1074;&#1086; &#1074;&#1089;&#1077;&#1093; &#1088;&#1077;&#1078;&#1080;&#1084;&#1072;&#1093;)<br>
<table border="2">
<tbody>
<tr>
<td>&#1082;&#1086;&#1083;&#1077;&#1089;&#1086; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1055;&#1088;&#1086;&#1082;&#1088;&#1091;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1088;&#1080;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1087;&#1086; &#1074;&#1077;&#1088;&#1090;&#1080;&#1082;&#1072;&#1083;&#1080;. &#1052;&#1086;&#1078;&#1085;&#1086; &#1090;&#1072;&#1082;&#1078;&#1077;
&#1087;&#1088;&#1086;&#1082;&#1088;&#1091;&#1095;&#1080;&#1074;&#1072;&#1090;&#1100; &#1079;&#1072; &#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1099; &#1090;&#1077;&#1082;&#1091;&#1097;&#1077;&#1075;&#1086; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1072;.</td>
</tr>
<tr>
<td>&#1082;&#1086;&#1083;&#1077;&#1089;&#1086; &#1084;&#1099;&#1096;&#1080; + &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1072; Shift <br>
</td>
<td>&#1055;&#1088;&#1086;&#1082;&#1088;&#1091;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1088;&#1080;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1087;&#1086; &#1075;&#1086;&#1088;&#1080;&#1079;&#1086;&#1085;&#1090;&#1072;&#1083;&#1080;. &#1052;&#1086;&#1078;&#1085;&#1086; &#1090;&#1072;&#1082;&#1078;&#1077;
&#1087;&#1088;&#1086;&#1082;&#1088;&#1091;&#1095;&#1080;&#1074;&#1072;&#1090;&#1100; &#1079;&#1072; &#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1099; &#1090;&#1077;&#1082;&#1091;&#1097;&#1077;&#1075;&#1086; &#1088;&#1072;&#1079;&#1084;&#1077;&#1088;&#1072;.</td>
</tr>
<tr>
<td>&#1082;&#1086;&#1083;&#1077;&#1089;&#1086; &#1084;&#1099;&#1096;&#1080; + &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1072; Ctrl</td>
<td>&#1059;&#1074;&#1077;&#1083;&#1080;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090; &#1080;&#1083;&#1080; &#1091;&#1084;&#1077;&#1085;&#1100;&#1096;&#1072;&#1077;&#1090; &#1084;&#1072;&#1089;&#1096;&#1090;&#1072;&#1073; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1080; &#1088;&#1080;&#1089;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.</td>
</tr>
<tr>
<td>&#1087;&#1077;&#1088;&#1077;&#1090;&#1072;&#1089;&#1082;&#1080;&#1074;&#1072;&#1085;&#1080;&#1077; &#1092;&#1072;&#1081;&#1083;&#1072; &#1074; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1085;&#1091;&#1102; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;<br>
</td>
<td>&#1055;&#1099;&#1090;&#1072;&#1077;&#1090;&#1089;&#1103; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1100; &#1092;&#1072;&#1081;&#1083; &#1082;&#1072;&#1082; &#1089;&#1093;&#1077;&#1084;&#1091; Qucs &#1080;&#1083;&#1080; &#1082;&#1072;&#1082; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;
&#1076;&#1072;&#1085;&#1085;&#1099;&#1093;.</td>
</tr>
</tbody>
</table>
<br>
<br>
<h3><img src="select.png"> &#1056;&#1077;&#1078;&#1080;&#1084; "&#1042;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103;"</h3>
(&#1052;&#1077;&#1085;&#1102;: &#1055;&#1088;&#1072;&#1074;&#1082;&#1072;-&gt;&#1042;&#1099;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100;)<br>
<table border="2">
<tbody>
<tr>
<td>&#1083;&#1077;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1042;&#1099;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;, &#1085;&#1072;&#1093;&#1086;&#1076;&#1103;&#1097;&#1080;&#1081;&#1089;&#1103; &#1087;&#1086;&#1076; &#1082;&#1091;&#1088;&#1089;&#1086;&#1088;&#1086;&#1084; &#1084;&#1099;&#1096;&#1080;. &#1045;&#1089;&#1083;&#1080; &#1090;&#1072;&#1084;
&#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1086; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074;, &#1090;&#1086; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1078;&#1080;&#1084;&#1072;&#1090;&#1100; &#1085;&#1072; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091;
&#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1079;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1085;&#1091;&#1078;&#1085;&#1099;&#1081;.<br>
&#1044;&#1077;&#1088;&#1078;&#1072; &#1101;&#1090;&#1091; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072;&#1078;&#1072;&#1090;&#1086;&#1081;, &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1097;&#1072;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;, &#1085;&#1072;&#1093;&#1086;&#1076;&#1103;&#1097;&#1080;&#1081;&#1089;&#1103;
&#1087;&#1086;&#1076; &#1082;&#1091;&#1088;&#1089;&#1086;&#1088;&#1086;&#1084; &#1084;&#1099;&#1096;&#1080;, &#1080; &#1074;&#1089;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;. &#1045;&#1089;&#1083;&#1080; &#1085;&#1091;&#1078;&#1085;&#1086; &#1090;&#1086;&#1095;&#1085;&#1086;
&#1088;&#1072;&#1079;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1087;&#1088;&#1080; &#1076;&#1074;&#1080;&#1078;&#1077;&#1085;&#1080;&#1080; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1091; CTRL, &#1080; &#1089;&#1077;&#1090;&#1082;&#1072; &#1073;&#1091;&#1076;&#1077;&#1090;
&#1086;&#1090;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1072;.<br>
&#1045;&#1089;&#1083;&#1080; &#1076;&#1077;&#1088;&#1078;&#1072;&#1090;&#1100; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072;&#1078;&#1072;&#1090;&#1086;&#1081; &#1073;&#1077;&#1079; &#1082;&#1072;&#1082;&#1080;&#1093;-&#1083;&#1080;&#1073;&#1086; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1087;&#1086;&#1076; &#1082;&#1091;&#1088;&#1089;&#1086;&#1088;&#1086;&#1084;,
&#1090;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1089;&#1103; &#1087;&#1088;&#1103;&#1084;&#1086;&#1091;&#1075;&#1086;&#1083;&#1100;&#1085;&#1080;&#1082;. &#1055;&#1086;&#1089;&#1083;&#1077; &#1086;&#1090;&#1087;&#1091;&#1089;&#1082;&#1072;&#1085;&#1080;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080; &#1074;&#1089;&#1077; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1099;,
&#1085;&#1072;&#1093;&#1086;&#1076;&#1103;&#1097;&#1080;&#1077;&#1089;&#1103; &#1074;&#1085;&#1091;&#1090;&#1088;&#1080; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1088;&#1103;&#1084;&#1086;&#1091;&#1075;&#1086;&#1083;&#1100;&#1085;&#1080;&#1082;&#1072;, &#1073;&#1091;&#1076;&#1091;&#1090; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1099;.<br>
&#1056;&#1072;&#1079;&#1084;&#1077;&#1088;&#1099; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1086;&#1081; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099; &#1080;&#1083;&#1080; &#1088;&#1080;&#1089;&#1091;&#1085;&#1082;&#1072; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100; &#1080;&#1079;&#1084;&#1077;&#1085;&#1077;&#1085;&#1099;, &#1077;&#1089;&#1083;&#1080;
&#1085;&#1072;&#1078;&#1072;&#1090;&#1100; &#1083;&#1077;&#1074;&#1091;&#1102; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072;&#1076; &#1086;&#1076;&#1085;&#1080;&#1084; &#1080;&#1079; &#1091;&#1075;&#1083;&#1086;&#1074; &#1080; &#1076;&#1074;&#1080;&#1075;&#1072;&#1090;&#1100; &#1082;&#1091;&#1088;&#1089;&#1086;&#1088;, &#1076;&#1077;&#1088;&#1078;&#1072;
&#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1085;&#1072;&#1078;&#1072;&#1090;&#1086;&#1081;.<br>
&#1045;&#1089;&#1083;&#1080; &#1085;&#1072;&#1078;&#1072;&#1090;&#1100; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072; &#1090;&#1077;&#1082;&#1089;&#1090;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;, &#1090;&#1086; &#1077;&#1075;&#1086; &#1084;&#1086;&#1078;&#1085;&#1086;
&#1085;&#1077;&#1087;&#1086;&#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086; &#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;. &#1053;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; Enter &#1087;&#1077;&#1088;&#1077;&#1074;&#1086;&#1076;&#1080;&#1090; &#1082;
&#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1084;&#1091; &#1089;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074;&#1091;. &#1045;&#1089;&#1083;&#1080; &#1101;&#1090;&#1086; &#1089;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074;&#1086; &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1089;&#1087;&#1080;&#1089;&#1082;&#1086;&#1084; &#1074;&#1099;&#1073;&#1086;&#1088;&#1072;, &#1090;&#1086; &#1077;&#1075;&#1086;
&#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1090;&#1086;&#1083;&#1100;&#1082;&#1086; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096; &#1091;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103; &#1082;&#1091;&#1088;&#1089;&#1086;&#1088;&#1086;&#1084; (&#1089;&#1090;&#1088;&#1077;&#1083;&#1082;&#1080;
&#1074;&#1074;&#1077;&#1088;&#1093;/&#1074;&#1085;&#1080;&#1079;).</td>
</tr>
<tr>
<td>&#1083;&#1077;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080; + &#1082;&#1083;&#1072;&#1074;&#1080;&#1096;&#1072; Ctrl <br>
</td>
<td>&#1055;&#1086;&#1079;&#1074;&#1086;&#1083;&#1103;&#1077;&#1090; &#1074;&#1099;&#1076;&#1077;&#1083;&#1080;&#1090;&#1100; &#1073;&#1086;&#1083;&#1077;&#1077; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1072;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100;, &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1077;
&#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1072; &#1085;&#1077; &#1089;&#1085;&#1080;&#1084;&#1072;&#1077;&#1090; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103; &#1089;&nbsp; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093;. &#1053;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1085;&#1072;
&#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1086;&#1084; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1077; &#1087;&#1088;&#1080;&#1074;&#1086;&#1076;&#1080;&#1090; &#1082; &#1089;&#1085;&#1103;&#1090;&#1080;&#1102; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103;. &#1069;&#1090;&#1086;&#1090; &#1088;&#1077;&#1078;&#1080;&#1084; &#1090;&#1072;&#1082;&#1078;&#1077;
&#1087;&#1088;&#1080;&#1075;&#1086;&#1076;&#1077;&#1085; &#1076;&#1083;&#1103; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1080;&#1103; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1087;&#1088;&#1103;&#1084;&#1086;&#1091;&#1075;&#1086;&#1083;&#1100;&#1085;&#1080;&#1082;&#1072; (&#1089;&#1084;. &#1087;&#1088;&#1077;&#1076;&#1099;&#1076;&#1091;&#1097;&#1080;&#1081; &#1087;&#1091;&#1085;&#1082;&#1090;).</td>
</tr>
<tr>
<td>&#1087;&#1088;&#1072;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1053;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1085;&#1072; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090; &#1086;&#1076;&#1085;&#1091; &#1087;&#1088;&#1103;&#1084;&#1091;&#1102; &#1083;&#1080;&#1085;&#1080;&#1102;, &#1072; &#1085;&#1077;
&#1074;&#1077;&#1089;&#1100; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;.</td>
</tr>
<tr>
<td>&#1076;&#1074;&#1086;&#1081;&#1085;&#1086;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1087;&#1088;&#1072;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080;</td>
<td>&#1054;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075; &#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1089;&#1074;&#1086;&#1081;&#1089;&#1090;&#1074; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1072; (&#1084;&#1077;&#1090;&#1082;&#1080;
&#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1086;&#1074;, &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074; &#1080; &#1090;.&#1076;.).</td>
</tr>
</tbody>
</table>
<br>
<br>
<h3>&#1056;&#1077;&#1078;&#1080;&#1084; "&#1042;&#1089;&#1090;&#1072;&#1074;&#1082;&#1072; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;"</h3>
(&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1085;&#1072; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;/&#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1091; &#1074; &#1083;&#1077;&#1074;&#1086;&#1081; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1080;)<br>
<table border="2">
<tbody>
<tr>
<td>&#1083;&#1077;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1055;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1085;&#1086;&#1074;&#1099;&#1081; &#1101;&#1082;&#1079;&#1077;&#1084;&#1087;&#1083;&#1103;&#1088; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072; &#1085;&#1072; &#1089;&#1093;&#1077;&#1084;&#1091;.</td>
</tr>
<tr>
<td>&#1087;&#1088;&#1072;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1042;&#1088;&#1072;&#1097;&#1072;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;. (&#1053;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1091;&#1077;&#1090; &#1085;&#1072; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099;.)</td>
</tr>
</tbody>
</table>
<br>
<br>
<h3><img src="wire.png"> &#1056;&#1077;&#1078;&#1080;&#1084; "&#1055;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;"</h3>
(&#1052;&#1077;&#1085;&#1102;: &#1042;&#1089;&#1090;&#1072;&#1074;&#1082;&#1072;-&gt;&#1055;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;)<br>
<table border="2">
<tbody>
<tr>
<td>&#1083;&#1077;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1059;&#1089;&#1090;&#1072;&#1085;&#1072;&#1074;&#1083;&#1080;&#1074;&#1072;&#1077;&#1090; &#1085;&#1072;&#1095;&#1072;&#1083;&#1100;&#1085;&#1091;&#1102;/&#1082;&#1086;&#1085;&#1077;&#1095;&#1085;&#1091;&#1102; &#1090;&#1086;&#1095;&#1082;&#1091; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072;.</td>
</tr>
<tr>
<td>&#1087;&#1088;&#1072;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1048;&#1079;&#1084;&#1077;&#1085;&#1103;&#1077;&#1090; &#1085;&#1072;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1080;&#1079;&#1075;&#1080;&#1073;&#1072; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072; (&#1089;&#1087;&#1077;&#1088;&#1074;&#1072; &#1085;&#1072;&#1083;&#1077;&#1074;&#1086;/&#1085;&#1072;&#1087;&#1088;&#1072;&#1074;&#1086;
&#1080;&#1083;&#1080; &#1089;&#1087;&#1077;&#1088;&#1074;&#1072; &#1074;&#1074;&#1077;&#1088;&#1093;/&#1074;&#1085;&#1080;&#1079;).</td>
</tr>
<tr>
<td>&#1076;&#1074;&#1086;&#1081;&#1085;&#1086;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1087;&#1088;&#1072;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1047;&#1072;&#1082;&#1072;&#1085;&#1095;&#1080;&#1074;&#1072;&#1077;&#1090; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;, &#1085;&#1077; &#1085;&#1072;&#1093;&#1086;&#1076;&#1103;&#1089;&#1100; &#1085;&#1072; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1077; &#1080;&#1083;&#1080; &#1074;&#1099;&#1074;&#1086;&#1076;&#1077;.</td>
</tr>
</tbody>
</table>
<br>
<br>
<h3><img src="paste.png"> &#1056;&#1077;&#1078;&#1080;&#1084; "&#1042;&#1089;&#1090;&#1072;&#1074;&#1082;&#1072;"</h3>
(&#1052;&#1077;&#1085;&#1102;: &#1055;&#1088;&#1072;&#1074;&#1082;&#1072;-&gt;&#1042;&#1089;&#1090;&#1072;&#1074;&#1080;&#1090;&#1100;)<br>
<table border="2">
<tbody>
<tr>
<td>&#1083;&#1077;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1055;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1099; &#1085;&#1072; &#1089;&#1093;&#1077;&#1084;&#1091; (&#1080;&#1079; &#1073;&#1091;&#1092;&#1077;&#1088;&#1072; &#1086;&#1073;&#1084;&#1077;&#1085;&#1072;).</td>
</tr>
<tr>
<td>&#1087;&#1088;&#1072;&#1074;&#1072;&#1103; &#1082;&#1085;&#1086;&#1087;&#1082;&#1072; &#1084;&#1099;&#1096;&#1080;<br>
</td>
<td>&#1042;&#1088;&#1072;&#1097;&#1072;&#1090;&#1100; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1099;.</td>
</tr>
</tbody>
</table>
<br>
<br>
<h3>&#1052;&#1099;&#1096;&#1100; &#1074;&#1086; &#1074;&#1082;&#1083;&#1072;&#1076;&#1082;&#1077; "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;"<img src="contab.png"></h3>
<br>
<table border="2">
<tbody>
<tr>
<td>&#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1083;&#1077;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080;<br>
</td>
<td>&#1042;&#1099;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090; &#1092;&#1072;&#1081;&#1083;.</td>
</tr>
<tr>
<td>&#1076;&#1074;&#1086;&#1081;&#1085;&#1086;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1083;&#1077;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080;<br>
</td>
<td>&#1054;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090; &#1092;&#1072;&#1081;&#1083;.</td>
</tr>
<tr>
<td>&#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1087;&#1088;&#1072;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080;<br>
</td>
<td>&#1054;&#1090;&#1086;&#1073;&#1088;&#1072;&#1078;&#1072;&#1077;&#1090; &#1084;&#1077;&#1085;&#1102; &#1089;:<br>
<table>
<tbody>
<tr>
<td>"&#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1100;" </td>
<td> - &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1100; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1081; &#1092;&#1072;&#1081;&#1083;</td>
</tr>
<tr>
<td>"&#1087;&#1077;&#1088;&#1077;&#1080;&#1084;&#1077;&#1085;&#1086;&#1074;&#1072;&#1090;&#1100;"</td>
<td> - &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1080;&#1084;&#1103; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1086;&#1075;&#1086; &#1092;&#1072;&#1081;&#1083;&#1072;<br>
</td>
</tr>
<tr>
<td>"&#1091;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100;"</td>
<td> - &#1091;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1081; &#1092;&#1072;&#1081;&#1083;<br>
</td>
</tr>
<tr>
<td>"&#1091;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091;"</td>
<td> - &#1091;&#1076;&#1072;&#1083;&#1080;&#1090;&#1100; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1081; &#1092;&#1072;&#1081;&#1083; &#1080; &#1090;&#1086;, &#1095;&#1090;&#1086; &#1089; &#1085;&#1080;&#1084; &#1089;&#1074;&#1103;&#1079;&#1072;&#1085;&#1086;
(&#1089;&#1093;&#1077;&#1084;&#1091;, &#1087;&#1086;&#1082;&#1072;&#1079; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;, &#1085;&#1072;&#1073;&#1086;&#1088; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;)</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<br>
<br>
<h3>&#1050;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1072;</h3>
&#1052;&#1085;&#1086;&#1075;&#1080;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100; &#1074;&#1099;&#1079;&#1074;&#1072;&#1085;&#1099;/&#1089;&#1076;&#1077;&#1083;&#1072;&#1085;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1083;&#1072;&#1074;&#1080;&#1096; &#1082;&#1083;&#1072;&#1074;&#1080;&#1072;&#1090;&#1091;&#1088;&#1099;.
&#1042;&#1099;&#1087;&#1086;&#1083;&#1085;&#1103;&#1077;&#1084;&#1099;&#1077; &#1076;&#1077;&#1081;&#1089;&#1090;&#1074;&#1080;&#1103; &#1087;&#1086;&#1103;&#1089;&#1085;&#1103;&#1102;&#1090;&#1089;&#1103; &#1074; &#1089;&#1090;&#1088;&#1086;&#1082;&#1077; &#1089;&#1090;&#1072;&#1090;&#1091;&#1089;&#1072; &#1087;&#1088;&#1080; &#1074;&#1099;&#1073;&#1086;&#1088;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1099; &#1080;&#1079;
&#1075;&#1083;&#1072;&#1074;&#1085;&#1086;&#1075;&#1086; &#1084;&#1077;&#1085;&#1102;. &#1053;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1076;&#1086;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1099;&#1077; &#1082;&#1086;&#1084;&#1072;&#1085;&#1076;&#1099;, &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1103;&#1077;&#1084;&#1099;&#1077; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
&#1082;&#1083;&#1072;&#1074;&#1080;&#1096;, &#1087;&#1088;&#1080;&#1074;&#1086;&#1076;&#1103;&#1090;&#1089;&#1103; &#1074; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1084; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077;:
<table border="2">
<tbody>
<tr>
<td>"Delete" &#1080;&#1083;&#1080; "Backspace"</td>
<td>&#1059;&#1076;&#1072;&#1083;&#1103;&#1077;&#1090; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1077; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1099; &#1080;&#1083;&#1080; &#1074;&#1093;&#1086;&#1076;&#1080;&#1090; &#1074; &#1088;&#1077;&#1078;&#1080;&#1084; &#1091;&#1076;&#1072;&#1083;&#1077;&#1085;&#1080;&#1103;, &#1077;&#1089;&#1083;&#1080;
&#1085;&#1080; &#1086;&#1076;&#1080;&#1085; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090; &#1085;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;.</td>
</tr>
<tr>
<td>&#1050;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; &#1089;&#1086; &#1089;&#1090;&#1088;&#1077;&#1083;&#1082;&#1072;&#1084;&#1080; &#1074;&#1083;&#1077;&#1074;&#1086;/&#1074;&#1087;&#1088;&#1072;&#1074;&#1086;</td>
<td>&#1048;&#1079;&#1084;&#1077;&#1085;&#1103;&#1102;&#1090; &#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088;&#1086;&#1074; &#1085;&#1072; &#1075;&#1088;&#1072;&#1092;&#1080;&#1082;&#1072;&#1093;.<br>
&#1045;&#1089;&#1083;&#1080; &#1085;&#1080; &#1086;&#1076;&#1080;&#1085; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088; &#1085;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;, &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1097;&#1072;&#1102;&#1090; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1077; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1099;.<br>
&#1045;&#1089;&#1083;&#1080; &#1085;&#1080; &#1086;&#1076;&#1080;&#1085; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090; &#1085;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;, &#1087;&#1088;&#1086;&#1082;&#1088;&#1091;&#1095;&#1080;&#1074;&#1072;&#1102;&#1090; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;. </td>
</tr>
<tr>
<td>&#1050;&#1083;&#1072;&#1074;&#1080;&#1096;&#1080; &#1089;&#1086; &#1089;&#1090;&#1088;&#1077;&#1083;&#1082;&#1072;&#1084;&#1080; &#1074;&#1074;&#1077;&#1088;&#1093;/&#1074;&#1085;&#1080;&#1079;</td>
<td>&#1048;&#1079;&#1084;&#1077;&#1085;&#1103;&#1102;&#1090; &#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1080;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1093; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088;&#1086;&#1074; &#1085;&#1072; &#1084;&#1085;&#1086;&#1075;&#1086;&#1084;&#1077;&#1088;&#1085;&#1099;&#1093;
&#1075;&#1088;&#1072;&#1092;&#1080;&#1082;&#1072;&#1093;.<br>
&#1045;&#1089;&#1083;&#1080; &#1085;&#1080; &#1086;&#1076;&#1080;&#1085; &#1084;&#1072;&#1088;&#1082;&#1077;&#1088; &#1085;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;, &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1097;&#1072;&#1102;&#1090; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;&#1085;&#1099;&#1077; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1099;.<br>
&#1045;&#1089;&#1083;&#1080; &#1085;&#1080; &#1086;&#1076;&#1080;&#1085; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090; &#1085;&#1077; &#1074;&#1099;&#1076;&#1077;&#1083;&#1077;&#1085;, &#1087;&#1088;&#1086;&#1082;&#1088;&#1091;&#1095;&#1080;&#1074;&#1072;&#1102;&#1090; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;. </td>
</tr>
<tr>
<td>&#1050;&#1083;&#1072;&#1074;&#1080;&#1096;&#1072; Tab<br>
</td>
<td>&#1055;&#1077;&#1088;&#1077;&#1093;&#1086;&#1076;&#1080;&#1090; &#1082; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1084;&#1091; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1086;&#1084;&#1091; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099; (&#1074; &#1089;&#1086;&#1086;&#1090;&#1074;&#1077;&#1090;&#1089;&#1090;&#1074;&#1080;&#1077; &#1089;&#1086;
&#1074;&#1082;&#1083;&#1072;&#1076;&#1082;&#1072;&#1084;&#1080;).</td>
</tr>
</tbody>
</table>
<br>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a><br>
</body>
</html>

View File

@ -0,0 +1,124 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1055;&#1086;&#1095;&#1090;&#1080; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081;<br>
</h3>
<h1>&#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080; &#1074;<br>
&#1072;&#1085;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1084; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;<br>
<br>
</h1>
</center>
Qucs (&#1087;&#1088;&#1086;&#1080;&#1079;&#1085;&#1086;&#1089;&#1080;&#1090;&#1089;&#1103;: kju:ks) - &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081; &#1089; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1084;
&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1089;&#1082;&#1080;&#1084; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;&#1086;&#1084;. &#1054;&#1085; &#1089;&#1087;&#1086;&#1089;&#1086;&#1073;&#1077;&#1085; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1103;&#1090;&#1100; &#1088;&#1072;&#1079;&#1083;&#1080;&#1095;&#1085;&#1099;&#1077; &#1074;&#1080;&#1076;&#1099;
&#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; (&#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1085;&#1072; &#1087;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1086;&#1084; &#1090;&#1086;&#1082;&#1077;, S-&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1086;&#1074; &#1080; &#1090;.&#1076;.).
&#1069;&#1090;&#1086;&#1090; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090; &#1076;&#1072;&#1077;&#1090; &#1082;&#1088;&#1072;&#1090;&#1082;&#1086;&#1077; &#1086;&#1087;&#1080;&#1089;&#1072;&#1085;&#1080;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1082;&#1072;&#1082; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; Qucs.
<br>
<br>
&#1055;&#1088;&#1080; &#1087;&#1077;&#1088;&#1074;&#1086;&#1084; &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1077; Qucs &#1089;&#1086;&#1079;&#1076;&#1072;&#1077;&#1090; &#1087;&#1072;&#1087;&#1082;&#1091; ".qucs" &#1074; &#1042;&#1072;&#1096;&#1077;&#1081; &#1076;&#1086;&#1084;&#1072;&#1096;&#1085;&#1077;&#1081; &#1087;&#1072;&#1087;&#1082;&#1077;.
&#1050;&#1072;&#1078;&#1076;&#1099;&#1081; &#1092;&#1072;&#1081;&#1083; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1103;&#1077;&#1090;&#1089;&#1103; &#1074; &#1101;&#1090;&#1086;&#1081; &#1087;&#1072;&#1087;&#1082;&#1077; &#1080;&#1083;&#1080; &#1074; &#1086;&#1076;&#1085;&#1086;&#1081; &#1080;&#1079; &#1077;&#1077; &#1087;&#1086;&#1076;&#1087;&#1072;&#1087;&#1086;&#1082;.
&#1055;&#1086;&#1089;&#1083;&#1077; &#1079;&#1072;&#1075;&#1088;&#1091;&#1079;&#1082;&#1080; Qucs &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1075;&#1083;&#1072;&#1074;&#1085;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1074;&#1099;&#1075;&#1083;&#1103;&#1076;&#1080;&#1090;
&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;&#1085;&#1086; &#1082;&#1072;&#1082; &#1085;&#1072; &#1088;&#1080;&#1089;.1. &#1057; &#1087;&#1088;&#1072;&#1074;&#1086;&#1081; &#1089;&#1090;&#1086;&#1088;&#1086;&#1085;&#1099; &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1072; &#1088;&#1072;&#1073;&#1086;&#1095;&#1072;&#1103; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;
(6), &#1074; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1090;&#1089;&#1103; &#1089;&#1093;&#1077;&#1084;&#1099;, &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1099; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1080; &#1090;.&#1076;.. &#1057;
&#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1074;&#1082;&#1083;&#1072;&#1076;&#1086;&#1082; (5) &#1085;&#1072;&#1076; &#1101;&#1090;&#1086;&#1081; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;&#1102; &#1084;&#1086;&#1078;&#1085;&#1086; &#1073;&#1099;&#1089;&#1090;&#1088;&#1086; &#1087;&#1077;&#1088;&#1077;&#1082;&#1083;&#1102;&#1095;&#1080;&#1090;&#1100;&#1089;&#1103; &#1085;&#1072;
&#1083;&#1102;&#1073;&#1086;&#1081; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;, &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1099;&#1081; &#1074; &#1076;&#1072;&#1085;&#1085;&#1099;&#1081; &#1084;&#1086;&#1084;&#1077;&#1085;&#1090;. &#1057; &#1083;&#1077;&#1074;&#1086;&#1081; &#1089;&#1090;&#1086;&#1088;&#1086;&#1085;&#1099; &#1075;&#1083;&#1072;&#1074;&#1085;&#1086;&#1075;&#1086; &#1086;&#1082;&#1085;&#1072;
Qucs
&#1085;&#1072;&#1093;&#1086;&#1076;&#1080;&#1090;&#1089;&#1103; &#1077;&#1097;&#1077; &#1086;&#1076;&#1085;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; (1), &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1081; &#1079;&#1072;&#1074;&#1080;&#1089;&#1080;&#1090; &#1086;&#1090; &#1089;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1080;&#1103;
&#1074;&#1082;&#1083;&#1072;&#1076;&#1086;&#1082;, &#1088;&#1072;&#1089;&#1087;&#1086;&#1083;&#1086;&#1078;&#1077;&#1085;&#1085;&#1099;&#1093; &#1085;&#1072;&#1076; &#1085;&#1077;&#1081;:
"&#1055;&#1088;&#1086;&#1077;&#1082;&#1090;&#1099;" (2), "&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;" (3) &#1080; "&#1050;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;" (4). &#1055;&#1086;&#1089;&#1083;&#1077; &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1072; Qucs
&#1072;&#1082;&#1090;&#1080;&#1074;&#1080;&#1088;&#1091;&#1077;&#1090;&#1089;&#1103; &#1074;&#1082;&#1083;&#1072;&#1076;&#1082;&#1072;&nbsp; "&#1055;&#1088;&#1086;&#1077;&#1082;&#1090;&#1099;"
(2). &#1058;&#1072;&#1082; &#1082;&#1072;&#1082; &#1042;&#1099; &#1079;&#1072;&#1087;&#1091;&#1089;&#1090;&#1080;&#1083;&#1080; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1091; &#1074; &#1087;&#1077;&#1088;&#1074;&#1099;&#1081; &#1088;&#1072;&#1079;,
&#1101;&#1090;&#1072; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1087;&#1091;&#1089;&#1090;&#1072;&#1103;, &#1087;&#1086;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1091; &#1091; &#1042;&#1072;&#1089; &#1077;&#1097;&#1077; &#1085;&#1077;&#1090; &#1085;&#1080; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1087;&#1088;&#1086;&#1077;&#1082;&#1090;&#1072;. &#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077;
&#1082;&#1085;&#1086;&#1087;&#1082;&#1091; "&#1057;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100;" &#1087;&#1088;&#1103;&#1084;&#1086; &#1085;&#1072;&#1076; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;&#1102; (1) &#1080; &#1086;&#1090;&#1082;&#1088;&#1086;&#1077;&#1090;&#1089;&#1103; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086;.
&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; &#1080;&#1084;&#1103; &#1076;&#1083;&#1103; &#1042;&#1072;&#1096;&#1077;&#1075;&#1086; &#1087;&#1077;&#1088;&#1074;&#1086;&#1075;&#1086; &#1087;&#1088;&#1086;&#1077;&#1082;&#1090;&#1072;, &#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, "firstProject" &#1080;
&#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091;&nbsp; "&#1057;&#1086;&#1079;&#1076;&#1072;&#1090;&#1100;". Qucs &#1089;&#1086;&#1079;&#1076;&#1072;&#1077;&#1090; &#1087;&#1072;&#1087;&#1082;&#1091; &#1087;&#1088;&#1086;&#1077;&#1082;&#1090;&#1072; &#1074; &#1087;&#1072;&#1087;&#1082;&#1077;
~/.qucs, &#1076;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1088;&#1080;&#1084;&#1077;&#1088;&#1072;
"firstProject_prj". &#1050;&#1072;&#1078;&#1076;&#1099;&#1081; &#1092;&#1072;&#1081;&#1083;, &#1087;&#1088;&#1080;&#1085;&#1072;&#1076;&#1083;&#1077;&#1078;&#1072;&#1097;&#1080;&#1081; &#1101;&#1090;&#1086;&#1084;&#1091; &#1085;&#1086;&#1074;&#1086;&#1084;&#1091; &#1087;&#1088;&#1086;&#1077;&#1082;&#1090;&#1091;,
&#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1077;&#1085; &#1074; &#1101;&#1090;&#1086;&#1081; &#1087;&#1072;&#1087;&#1082;&#1077;. &#1053;&#1086;&#1074;&#1099;&#1081; &#1087;&#1088;&#1086;&#1077;&#1082;&#1090; &#1085;&#1077;&#1084;&#1077;&#1076;&#1083;&#1077;&#1085;&#1085;&#1086; &#1086;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; (&#1101;&#1090;&#1086;
&#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1088;&#1086;&#1095;&#1080;&#1090;&#1072;&#1090;&#1100; &#1074; &#1079;&#1072;&#1075;&#1086;&#1083;&#1086;&#1074;&#1082;&#1077; &#1086;&#1082;&#1085;&#1072;) &#1080; &#1074;&#1082;&#1083;&#1072;&#1076;&#1082;&#1080; &#1087;&#1077;&#1088;&#1077;&#1082;&#1083;&#1102;&#1095;&#1072;&#1102;&#1090;&#1089;&#1103; &#1085;&#1072;
"&#1057;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077;" (3), &#1075;&#1076;&#1077; &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1085;&#1080;&#1077; &#1086;&#1090;&#1082;&#1088;&#1099;&#1090;&#1086;&#1075;&#1086; &#1074; &#1076;&#1072;&#1085;&#1085;&#1099;&#1081; &#1084;&#1086;&#1084;&#1077;&#1085;&#1090;
&#1087;&#1088;&#1086;&#1077;&#1082;&#1090;&#1072;. &#1059; &#1042;&#1072;&#1089; &#1077;&#1097;&#1077; &#1085;&#1077;&#1090; &#1085;&#1080; &#1086;&#1076;&#1085;&#1086;&#1075;&#1086; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;, &#1087;&#1086;&#1101;&#1090;&#1086;&#1084;&#1091; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091;
&#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1077;&#1085;&#1080;&#1103; &#1085;&#1072; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; (&#1080;&#1083;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077; &#1075;&#1083;&#1072;&#1074;&#1085;&#1086;&#1077; &#1084;&#1077;&#1085;&#1102;:
&#1060;&#1072;&#1081;&#1083;-&gt;&#1057;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100;) &#1095;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090; &#1073;&#1077;&#1079; &#1085;&#1072;&#1079;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081;
&#1079;&#1072;&#1087;&#1086;&#1083;&#1085;&#1103;&#1077;&#1090; &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; (6). &#1055;&#1086;&#1089;&#1083;&#1077; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1086;&#1103;&#1074;&#1080;&#1090;&#1089;&#1103; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086; &#1076;&#1083;&#1103;
&#1074;&#1074;&#1086;&#1076;&#1072; &#1080;&#1084;&#1077;&#1085;&#1080; &#1085;&#1086;&#1074;&#1086;&#1075;&#1086; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1072;.
&#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; "firstSchematic" &#1080; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; "&#1057;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100;".
<br>
<br>
<center>
<img src="qucsmain.png"><br>
&#1056;&#1080;&#1089;. 1 - &#1043;&#1083;&#1072;&#1074;&#1085;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086; Qucs<br>
<br>
</center>
<br>
&#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1085;&#1072;&#1084; &#1085;&#1091;&#1078;&#1085;&#1086; &#1089;&#1076;&#1077;&#1083;&#1072;&#1090;&#1100; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086;&#1077; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1085;&#1072; &#1087;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1085;&#1086;&#1084; &#1090;&#1086;&#1082;&#1077;, &#1090;&#1086;
&#1077;&#1089;&#1090;&#1100; &#1084;&#1099; &#1093;&#1086;&#1090;&#1080;&#1084; &#1087;&#1088;&#1086;&#1072;&#1085;&#1072;&#1083;&#1080;&#1079;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100; &#1089;&#1093;&#1077;&#1084;&#1091; &#1085;&#1072; &#1088;&#1080;&#1089;. 1. &#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1074;&#1082;&#1083;&#1072;&#1076;&#1082;&#1091;
"&#1050;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;" ( (4) &#1085;&#1072; &#1088;&#1080;&#1089;. 1). &#1058;&#1072;&#1084; &#1042;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1074;&#1099;&#1087;&#1072;&#1076;&#1072;&#1102;&#1097;&#1080;&#1081; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082;, &#1074;
&#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1075;&#1088;&#1091;&#1087;&#1087;&#1091; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074; &#1080;, &#1085;&#1080;&#1078;&#1077;, &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1086;&#1081;
&#1075;&#1088;&#1091;&#1087;&#1087;&#1099;. &#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; "&#1076;&#1080;&#1089;&#1082;&#1088;&#1077;&#1090;&#1085;&#1099;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;" &#1080; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1085;&#1072; &#1087;&#1077;&#1088;&#1074;&#1099;&#1081; &#1089;&#1080;&#1084;&#1074;&#1086;&#1083;:
"&#1056;&#1077;&#1079;&#1080;&#1089;&#1090;&#1086;&#1088;".
&#1055;&#1077;&#1088;&#1077;&#1084;&#1077;&#1097;&#1072;&#1103; &#1082;&#1091;&#1088;&#1089;&#1086;&#1088; &#1084;&#1099;&#1096;&#1080; &#1074; &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; (6), &#1042;&#1099; &#1087;&#1077;&#1088;&#1077;&#1085;&#1086;&#1089;&#1080;&#1090;&#1077; &#1088;&#1080;&#1089;&#1091;&#1085;&#1086;&#1082;
&#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1103; &#1088;&#1077;&#1079;&#1080;&#1089;&#1090;&#1086;&#1088;&#1072;. &#1053;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1087;&#1088;&#1072;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080; &#1074;&#1088;&#1072;&#1097;&#1072;&#1077;&#1090; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;,
&#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1083;&#1077;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080; &#1087;&#1086;&#1084;&#1077;&#1097;&#1072;&#1077;&#1090; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; &#1085;&#1072; &#1089;&#1093;&#1077;&#1084;&#1091;. &#1055;&#1086;&#1074;&#1090;&#1086;&#1088;&#1080;&#1090;&#1077; &#1101;&#1090;&#1086;&#1090;
&#1087;&#1088;&#1086;&#1094;&#1077;&#1089;&#1089; &#1076;&#1083;&#1103; &#1074;&#1089;&#1077;&#1093; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074;, &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1085;&#1085;&#1099;&#1093; &#1085;&#1072; &#1088;&#1080;&#1089;. 1. &#1048;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1103;
&#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1085;&#1072;&#1081;&#1076;&#1077;&#1085; &#1074; &#1082;&#1083;&#1072;&#1089;&#1089;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074; "&#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080;", &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;
&#1079;&#1072;&#1079;&#1077;&#1084;&#1083;&#1077;&#1085;&#1080;&#1103; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100; &#1074;&#1079;&#1103;&#1090;&#1086; &#1080;&#1079; &#1082;&#1083;&#1072;&#1089;&#1089;&#1072; "&#1076;&#1080;&#1089;&#1082;&#1088;&#1077;&#1090;&#1085;&#1099;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;" &#1080;&#1083;&#1080; &#1089;
&#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;, &#1090;&#1088;&#1077;&#1073;&#1091;&#1077;&#1084;&#1086;&#1077; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102;
&#1073;&#1086;&#1083;&#1100;&#1096;&#1080;&#1093; &#1073;&#1083;&#1086;&#1082;&#1086;&#1074; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1085;&#1072;&#1093;&#1086;&#1076;&#1103;&#1097;&#1080;&#1093;&#1089;&#1103; &#1074; &#1082;&#1083;&#1072;&#1089;&#1089;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074; "&#1074;&#1080;&#1076;&#1099;
&#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;". &#1063;&#1090;&#1086;&#1073;&#1099; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1099; &#1074;&#1090;&#1086;&#1088;&#1086;&#1075;&#1086; &#1088;&#1077;&#1079;&#1080;&#1089;&#1090;&#1086;&#1088;&#1072;, &#1089;&#1076;&#1077;&#1083;&#1072;&#1081;&#1090;&#1077;
&#1076;&#1074;&#1086;&#1081;&#1085;&#1086;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1083;&#1077;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072; &#1085;&#1077;&#1084;. &#1054;&#1090;&#1082;&#1088;&#1086;&#1077;&#1090;&#1089;&#1103; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086;,
&#1075;&#1076;&#1077; &#1084;&#1086;&#1078;&#1085;&#1086; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1089;&#1086;&#1087;&#1088;&#1086;&#1090;&#1080;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077;. &#1042;&#1074;&#1077;&#1076;&#1080;&#1090;&#1077; "100 Ohm" &#1074; &#1087;&#1086;&#1083;&#1077;
&#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1089;&#1087;&#1088;&#1072;&#1074;&#1072; &#1080; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; Enter.
<br>
<br>
&#1063;&#1090;&#1086;&#1073;&#1099; &#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1080;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;, &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1089; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1086;&#1084; &#1085;&#1072; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080;
&#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; (&#1080;&#1083;&#1080; &#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100; &#1075;&#1083;&#1072;&#1074;&#1085;&#1099;&#1084; &#1084;&#1077;&#1085;&#1102;: &#1042;&#1089;&#1090;&#1072;&#1074;&#1082;&#1072;-&gt;&#1055;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;).
&#1055;&#1077;&#1088;&#1077;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1077; &#1082;&#1091;&#1088;&#1089;&#1086;&#1088; &#1085;&#1072; &#1085;&#1077;&#1079;&#1072;&#1085;&#1103;&#1090;&#1099;&#1081; &#1074;&#1099;&#1074;&#1086;&#1076; (&#1087;&#1086;&#1084;&#1077;&#1095;&#1077;&#1085;&#1085;&#1099;&#1081; &#1084;&#1072;&#1083;&#1077;&#1085;&#1100;&#1082;&#1080;&#1084; &#1082;&#1088;&#1072;&#1089;&#1085;&#1099;&#1084;
&#1082;&#1088;&#1091;&#1078;&#1082;&#1086;&#1084;).
&#1053;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072; &#1085;&#1077;&#1084; &#1085;&#1072;&#1095;&#1080;&#1085;&#1072;&#1077;&#1090; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;. &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1087;&#1077;&#1088;&#1077;&#1076;&#1074;&#1080;&#1085;&#1100;&#1090;&#1077;
&#1082;&#1091;&#1088;&#1089;&#1086;&#1088; &#1082; &#1082;&#1086;&#1085;&#1077;&#1095;&#1085;&#1086;&#1081; &#1090;&#1086;&#1095;&#1082;&#1077; &#1080; &#1089;&#1085;&#1086;&#1074;&#1072; &#1085;&#1072;&#1078;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080;. &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;
&#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1077;&#1085;&#1099;. &#1045;&#1089;&#1083;&#1080; &#1042;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1085;&#1072;&#1087;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1077; &#1080;&#1079;&#1075;&#1080;&#1073;&#1072; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072;,
&#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1087;&#1088;&#1072;&#1074;&#1091;&#1102; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080;, &#1087;&#1088;&#1077;&#1078;&#1076;&#1077; &#1095;&#1077;&#1084; &#1076;&#1077;&#1083;&#1072;&#1090;&#1100; &#1082;&#1086;&#1085;&#1077;&#1095;&#1085;&#1091;&#1102; &#1090;&#1086;&#1095;&#1082;&#1091;. &#1042;&#1099;
&#1084;&#1086;&#1078;&#1077;&#1090;&#1077; &#1090;&#1072;&#1082;&#1078;&#1077; &#1079;&#1072;&#1082;&#1086;&#1085;&#1095;&#1080;&#1090;&#1100; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;, &#1085;&#1077; &#1085;&#1072;&#1078;&#1080;&#1084;&#1072;&#1103; &#1085;&#1080; &#1085;&#1072; &#1089;&#1074;&#1086;&#1073;&#1086;&#1076;&#1085;&#1099;&#1081; &#1074;&#1099;&#1074;&#1086;&#1076;, &#1085;&#1080;
&#1085;&#1072; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;:
&#1087;&#1088;&#1086;&#1089;&#1090;&#1086; &#1089;&#1076;&#1077;&#1083;&#1072;&#1081;&#1090;&#1077; &#1076;&#1074;&#1086;&#1081;&#1085;&#1086;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1083;&#1077;&#1074;&#1086;&#1081; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080;.
<br>
<br>
&#1053;&#1072;&#1082;&#1086;&#1085;&#1077;&#1094;, &#1086;&#1095;&#1077;&#1085;&#1100; &#1074;&#1072;&#1078;&#1085;&#1086; &#1087;&#1086;&#1084;&#1077;&#1090;&#1080;&#1090;&#1100; &#1091;&#1079;&#1077;&#1083;, &#1074; &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1084; &#1042;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077;, &#1095;&#1090;&#1086;&#1073;&#1099; Qucs
&#1088;&#1072;&#1089;&#1089;&#1095;&#1080;&#1090;&#1072;&#1083; &#1085;&#1072;&#1087;&#1088;&#1103;&#1078;&#1077;&#1085;&#1080;&#1077;.
&#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1085;&#1072; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1076;&#1083;&#1103; &#1084;&#1077;&#1090;&#1082;&#1080; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072; (&#1080;&#1083;&#1080;
&#1074;&#1086;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100; &#1084;&#1077;&#1085;&#1102;: &#1042;&#1089;&#1090;&#1072;&#1074;&#1082;&#1072;-&gt;&#1052;&#1077;&#1090;&#1082;&#1072; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1072;). &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077;
&#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072; &#1074;&#1099;&#1073;&#1088;&#1072;&#1085;&#1085;&#1086;&#1084; &#1087;&#1088;&#1086;&#1074;&#1086;&#1076;&#1085;&#1080;&#1082;&#1077;. &#1054;&#1090;&#1082;&#1088;&#1086;&#1077;&#1090;&#1089;&#1103; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086; &#1080; &#1084;&#1086;&#1078;&#1085;&#1086;
&#1074;&#1074;&#1077;&#1089;&#1090;&#1080; &#1080;&#1084;&#1103; &#1091;&#1079;&#1083;&#1072;. &#1053;&#1072;&#1087;&#1080;&#1096;&#1080;&#1090;&#1077;
"divide" &#1080; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; "Ok". &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1089;&#1093;&#1077;&#1084;&#1072; &#1076;&#1086;&#1083;&#1078;&#1085;&#1072; &#1074;&#1099;&#1075;&#1083;&#1103;&#1076;&#1077;&#1090;&#1100; &#1082;&#1072;&#1082; &#1085;&#1072;
&#1088;&#1080;&#1089;. 1.
<br>
<br>
&#1044;&#1083;&#1103; &#1079;&#1072;&#1087;&#1091;&#1089;&#1082;&#1072; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1085;&#1072; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080;
&#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; (&#1080;&#1083;&#1080; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077; &#1084;&#1077;&#1085;&#1102;: &#1052;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;-&gt;&#1052;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;).
&#1054;&#1090;&#1082;&#1088;&#1086;&#1077;&#1090;&#1089;&#1103; &#1086;&#1082;&#1085;&#1086; &#1080; &#1087;&#1086;&#1082;&#1072;&#1078;&#1077;&#1090; &#1087;&#1088;&#1086;&#1076;&#1074;&#1080;&#1078;&#1077;&#1085;&#1080;&#1077; &#1087;&#1088;&#1086;&#1094;&#1077;&#1089;&#1089;&#1072;. &#1055;&#1086;&#1089;&#1083;&#1077; &#1091;&#1089;&#1087;&#1077;&#1096;&#1085;&#1086;&#1075;&#1086;
&#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1080;&#1103; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1086;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;. &#1054;&#1073;&#1099;&#1095;&#1085;&#1086; &#1074;&#1089;&#1077;
&#1101;&#1090;&#1086; &#1087;&#1088;&#1086;&#1080;&#1089;&#1093;&#1086;&#1076;&#1080;&#1090; &#1090;&#1072;&#1082; &#1073;&#1099;&#1089;&#1090;&#1088;&#1086;, &#1095;&#1090;&#1086; &#1042;&#1099; &#1091;&#1074;&#1080;&#1076;&#1080;&#1090;&#1077; &#1083;&#1080;&#1096;&#1100; &#1073;&#1099;&#1089;&#1090;&#1088;&#1086;&#1077; &#1084;&#1077;&#1083;&#1100;&#1082;&#1072;&#1085;&#1080;&#1077;.
&#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1042;&#1072;&#1084; &#1085;&#1091;&#1078;&#1085;&#1086; &#1087;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1091;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1091;&#1074;&#1080;&#1076;&#1077;&#1090;&#1100; &#1088;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;&#1099;
&#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;. &#1057;&#1083;&#1077;&#1074;&#1072; &#1085;&#1072;&#1093;&#1086;&#1076;&#1080;&#1090;&#1089;&#1103; &#1082;&#1083;&#1072;&#1089;&#1089; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074; "&#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1099;", &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081;
&#1074;&#1099;&#1073;&#1080;&#1088;&#1072;&#1077;&#1090;&#1089;&#1103; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;. &#1053;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1085;&#1072; "&#1058;&#1072;&#1073;&#1083;&#1080;&#1095;&#1085;&#1072;&#1103;", &#1087;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077; &#1074; &#1088;&#1072;&#1073;&#1086;&#1095;&#1091;&#1102;
&#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1080; &#1087;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1077; &#1077;&#1077;, &#1085;&#1072;&#1078;&#1072;&#1074; &#1083;&#1077;&#1074;&#1091;&#1102; &#1082;&#1085;&#1086;&#1087;&#1082;&#1091; &#1084;&#1099;&#1096;&#1080;.
&#1054;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086;, &#1075;&#1076;&#1077; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100;, &#1095;&#1090;&#1086; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072;&#1090;&#1100; &#1074;
&#1085;&#1086;&#1074;&#1086;&#1081; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1077;. &#1042; &#1083;&#1077;&#1074;&#1086;&#1081; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1080; &#1074;&#1080;&#1076;&#1085;&#1086; &#1080;&#1084;&#1103; &#1091;&#1079;&#1083;&#1072;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1086;&#1077; &#1042;&#1099; &#1079;&#1072;&#1076;&#1072;&#1083;&#1080;:
"divide". &#1057;&#1076;&#1077;&#1083;&#1072;&#1081;&#1090;&#1077; &#1076;&#1074;&#1086;&#1081;&#1085;&#1086;&#1077; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; &#1084;&#1099;&#1096;&#1080; &#1085;&#1072; &#1085;&#1077;&#1084;, &#1080; &#1086;&#1085;&#1086; &#1073;&#1091;&#1076;&#1077;&#1090;
&#1087;&#1077;&#1088;&#1077;&#1085;&#1077;&#1089;&#1077;&#1085;&#1086; &#1074; &#1087;&#1088;&#1072;&#1074;&#1091;&#1102; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100;. &#1042;&#1099;&#1081;&#1076;&#1080;&#1090;&#1077; &#1080;&#1079; &#1076;&#1080;&#1072;&#1083;&#1086;&#1075;&#1072; &#1085;&#1072;&#1078;&#1072;&#1090;&#1080;&#1077;&#1084; &#1082;&#1085;&#1086;&#1087;&#1082;&#1080; "Ok".
&#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1074;&#1080;&#1076;&#1077;&#1085; &#1088;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;: 0.666667 &#1074;&#1086;&#1083;&#1100;&#1090;. &#1047;&#1072;&#1084;&#1077;&#1095;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;,
&#1087;&#1086;&#1093;&#1083;&#1086;&#1087;&#1072;&#1081;&#1090;&#1077; &#1089;&#1077;&#1073;&#1103; &#1087;&#1086; &#1087;&#1083;&#1077;&#1095;&#1091;!
<br>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a><br>
</body>
</html>

View File

@ -0,0 +1,92 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080; &#1074; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1084; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1055;&#1086;&#1095;&#1090;&#1080; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1081; &#1089;&#1080;&#1084;&#1091;&#1083;&#1103;&#1090;&#1086;&#1088; &#1094;&#1077;&#1087;&#1077;&#1081;<br>
</h3>
<h1>&#1055;&#1077;&#1088;&#1074;&#1099;&#1077; &#1096;&#1072;&#1075;&#1080; &#1074;<br>
&#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1084; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;<br>
<br>
</h1>
</center>
Qucs - &#1101;&#1090;&#1086; &#1090;&#1072;&#1082;&#1078;&#1077; &#1075;&#1088;&#1072;&#1092;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080;&#1081; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1103; &#1076;&#1083;&#1103; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1103;
&#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1075;&#1086; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.
&#1069;&#1090;&#1086;&#1090; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&nbsp; &#1074;&#1082;&#1088;&#1072;&#1090;&#1094;&#1077; &#1086;&#1087;&#1080;&#1089;&#1099;&#1074;&#1072;&#1077;&#1090;, &#1082;&#1072;&#1082; &#1076;&#1083;&#1103; &#1101;&#1090;&#1086;&#1075;&#1086; &#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100;&#1089;&#1103; Qucs.
<br>
<br>
&#1044;&#1083;&#1103; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1075;&#1086; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; Qucs &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1077;&#1090; &#1087;&#1088;&#1086;&#1075;&#1088;&#1072;&#1084;&#1084;&#1091; FreeHDL (<a
href="http://www.freehdl.seul.org">http://www.freehdl.seul.org</a>).
&#1055;&#1086;&#1101;&#1090;&#1086;&#1084;&#1091; &#1087;&#1072;&#1082;&#1077;&#1090;&nbsp; FreeHDL, &#1072; &#1090;&#1072;&#1082;&#1078;&#1077; &#1082;&#1086;&#1084;&#1087;&#1080;&#1083;&#1103;&#1090;&#1086;&#1088; GNU C++ &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1073;&#1099;&#1090;&#1100;
&#1091;&#1089;&#1090;&#1072;&#1085;&#1086;&#1074;&#1083;&#1077;&#1085;&#1099; &#1074; &#1082;&#1086;&#1084;&#1087;&#1100;&#1102;&#1090;&#1077;&#1088;&#1077;.<br>
<br>
&#1053;&#1077;&#1090; &#1073;&#1086;&#1083;&#1100;&#1096;&#1086;&#1081; &#1088;&#1072;&#1079;&#1085;&#1080;&#1094;&#1099; &#1074; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1080; &#1072;&#1085;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1075;&#1086; &#1080;&#1083;&#1080; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1075;&#1086;
&#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;. &#1055;&#1086;&#1101;&#1090;&#1086;&#1084;&#1091; &#1087;&#1086;&#1089;&#1083;&#1077; &#1087;&#1088;&#1086;&#1095;&#1090;&#1077;&#1085;&#1080;&#1103; <a href="start.html">&#1055;&#1077;&#1088;&#1074;&#1099;&#1077;
&#1096;&#1072;&#1075;&#1080; &#1074;&nbsp; &#1072;&#1085;&#1072;&#1083;&#1086;&#1075;&#1086;&#1074;&#1086;&#1084; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1080;</a> &#1083;&#1077;&#1075;&#1082;&#1086; &#1076;&#1086;&#1073;&#1080;&#1090;&#1100;&#1089;&#1103;, &#1095;&#1090;&#1086;&#1073;&#1099;
&#1088;&#1072;&#1073;&#1086;&#1090;&#1072;&#1083;&#1086; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1077; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;.
&#1044;&#1072;&#1074;&#1072;&#1081;&#1090;&#1077; &#1088;&#1072;&#1089;&#1089;&#1095;&#1080;&#1090;&#1072;&#1077;&#1084; &#1090;&#1072;&#1073;&#1083;&#1080;&#1094;&#1091; &#1080;&#1089;&#1090;&#1080;&#1085;&#1085;&#1086;&#1089;&#1090;&#1080; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086;&#1075;&#1086; &#1083;&#1086;&#1075;&#1080;&#1095;&#1077;&#1089;&#1082;&#1086;&#1075;&#1086; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1072; &#1048;.
&#1042;&#1099;&#1073;&#1077;&#1088;&#1080;&#1090;&#1077; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1099;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099; &#1074; &#1074;&#1099;&#1087;&#1072;&#1076;&#1072;&#1102;&#1097;&#1077;&#1084; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077; &#1074;&#1082;&#1083;&#1072;&#1076;&#1082;&#1080; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074;
&#1089;&#1083;&#1077;&#1074;&#1072; &#1080; &#1087;&#1086;&#1089;&#1090;&#1088;&#1086;&#1081;&#1090;&#1077; &#1089;&#1093;&#1077;&#1084;&#1091;, &#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1085;&#1091;&#1102; &#1085;&#1072; &#1088;&#1080;&#1089;. 1. &#1041;&#1083;&#1086;&#1082; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1075;&#1086;
&#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1084;&#1086;&#1078;&#1085;&#1086; &#1085;&#1072;&#1081;&#1090;&#1080; &#1089;&#1088;&#1077;&#1076;&#1080; &#1076;&#1088;&#1091;&#1075;&#1080;&#1093; &#1073;&#1083;&#1086;&#1082;&#1086;&#1074; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.<br>
&#1062;&#1080;&#1092;&#1088;&#1086;&#1074;&#1099;&#1077; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1080; <i>S1</i> &#1080; <i>S2</i> &#1087;&#1086;&#1076;&#1082;&#1083;&#1102;&#1095;&#1077;&#1085;&#1099; &#1082;&#1086; &#1074;&#1093;&#1086;&#1076;&#1072;&#1084;, &#1091;&#1079;&#1077;&#1083; &#1089;
&#1084;&#1077;&#1090;&#1082;&#1086;&#1081; <i>Output</i> &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1074;&#1099;&#1093;&#1086;&#1076;&#1086;&#1084;. &#1055;&#1086;&#1089;&#1083;&#1077; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1080;&#1103; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;
&#1086;&#1090;&#1082;&#1088;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103; &#1089;&#1090;&#1088;&#1072;&#1085;&#1080;&#1094;&#1072; &#1087;&#1086;&#1082;&#1072;&#1079;&#1072; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093;. &#1055;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1077; &#1085;&#1072; &#1085;&#1077;&#1077; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1091; "&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072;
&#1080;&#1089;&#1090;&#1080;&#1085;&#1085;&#1086;&#1089;&#1090;&#1080;" &#1080; &#1074;&#1089;&#1090;&#1072;&#1074;&#1100;&#1090;&#1077; &#1087;&#1077;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1091;&#1102; <i>Output</i>. &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1077;&#1090;&#1089;&#1103;
&#1090;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; &#1080;&#1089;&#1090;&#1080;&#1085;&#1085;&#1086;&#1089;&#1090;&#1080; &#1076;&#1074;&#1091;&#1093;-&#1074;&#1093;&#1086;&#1076;&#1086;&#1074;&#1086;&#1075;&#1086; &#1101;&#1083;&#1077;&#1084;&#1077;&#1085;&#1090;&#1072; &#1048;. &#1055;&#1086;&#1079;&#1076;&#1088;&#1072;&#1074;&#1083;&#1077;&#1085;&#1080;&#1103;, &#1087;&#1077;&#1088;&#1074;&#1086;&#1077;
&#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1086;&#1077; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077; &#1089;&#1076;&#1077;&#1083;&#1072;&#1085;&#1086;!
<br>
<br>
<center>
<img src="qucsdigi.png"><br>
&#1056;&#1080;&#1089;. 1 - &#1043;&#1083;&#1072;&#1074;&#1085;&#1086;&#1077; &#1086;&#1082;&#1085;&#1086; Qucs<br>
<br>
</center>
<br>
&#1058;&#1072;&#1073;&#1083;&#1080;&#1094;&#1072; &#1080;&#1089;&#1090;&#1080;&#1085;&#1085;&#1086;&#1089;&#1090;&#1080; - &#1085;&#1077; &#1077;&#1076;&#1080;&#1085;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1099;&#1081; &#1074;&#1080;&#1076; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1081; &#1084;&#1086;&#1078;&#1077;&#1090;
&#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; Qucs.
&#1042;&#1086;&#1079;&#1084;&#1086;&#1078;&#1085;&#1086; &#1090;&#1072;&#1082;&#1078;&#1077; &#1087;&#1086;&#1076;&#1072;&#1090;&#1100; &#1074; &#1089;&#1093;&#1077;&#1084;&#1091; &#1089;&#1083;&#1091;&#1095;&#1072;&#1081;&#1085;&#1099;&#1081; &#1089;&#1080;&#1075;&#1085;&#1072;&#1083; &#1080; &#1087;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1074;&#1099;&#1093;&#1086;&#1076;&#1085;&#1086;&#1081;
&#1089;&#1080;&#1075;&#1085;&#1072;&#1083; &#1074;&#1086; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1086;&#1081; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1077;. &#1063;&#1090;&#1086;&#1073;&#1099; &#1101;&#1090;&#1086; &#1089;&#1076;&#1077;&#1083;&#1072;&#1090;&#1100;, &#1085;&#1091;&#1078;&#1085;&#1086; &#1080;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100;
&#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088; <i>Type</i>
&#1073;&#1083;&#1086;&#1082;&#1072; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1085;&#1072; <i>TimeList</i> &#1080; &#1074; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1084; &#1087;&#1072;&#1088;&#1072;&#1084;&#1077;&#1090;&#1088;&#1077; &#1085;&#1091;&#1078;&#1085;&#1086;
&#1074;&#1074;&#1077;&#1089;&#1090;&#1080; &#1087;&#1088;&#1086;&#1076;&#1086;&#1083;&#1078;&#1080;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1100; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103;.
&#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1091; &#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1099;&#1093; &#1080;&#1089;&#1090;&#1086;&#1095;&#1085;&#1080;&#1082;&#1086;&#1074; &#1076;&#1088;&#1091;&#1075;&#1086;&#1081; &#1089;&#1084;&#1099;&#1089;&#1083;: &#1086;&#1085;&#1080; &#1084;&#1086;&#1075;&#1091;&#1090; &#1074;&#1099;&#1076;&#1072;&#1074;&#1072;&#1090;&#1100; &#1089;&#1083;&#1091;&#1095;&#1072;&#1081;&#1085;&#1091;&#1102;
&#1087;&#1086;&#1089;&#1083;&#1077;&#1076;&#1086;&#1074;&#1072;&#1090;&#1077;&#1083;&#1100;&#1085;&#1086;&#1089;&#1090;&#1100; &#1073;&#1080;&#1090;&#1086;&#1074;, &#1076;&#1083;&#1103; &#1095;&#1077;&#1075;&#1086; &#1080;&#1084; &#1085;&#1091;&#1078;&#1085;&#1086; &#1079;&#1072;&#1076;&#1072;&#1090;&#1100; &#1087;&#1077;&#1088;&#1074;&#1099;&#1081; &#1073;&#1080;&#1090; (&#1085;&#1080;&#1079;&#1082;&#1080;&#1081;
&#1080;&#1083;&#1080; &#1074;&#1099;&#1089;&#1086;&#1082;&#1080;&#1081;) &#1080; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1084;&#1086;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1080; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1077;&#1081; &#1089;&#1084;&#1077;&#1085;&#1099; &#1089;&#1086;&#1089;&#1090;&#1086;&#1103;&#1085;&#1080;&#1103;.
&#1054;&#1073;&#1088;&#1072;&#1090;&#1080;&#1090;&#1077; &#1074;&#1085;&#1080;&#1084;&#1072;&#1085;&#1080;&#1077;, &#1095;&#1090;&#1086; &#1101;&#1090;&#1086;&#1090; &#1089;&#1087;&#1080;&#1089;&#1086;&#1082; &#1087;&#1086;&#1074;&#1090;&#1086;&#1088;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1086;&#1089;&#1083;&#1077; &#1082;&#1086;&#1085;&#1094;&#1072;. &#1055;&#1086;&#1101;&#1090;&#1086;&#1084;&#1091;,
&#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1090;&#1072;&#1082;&#1090;&#1086;&#1074;&#1099;&#1077; &#1080;&#1084;&#1087;&#1091;&#1083;&#1100;&#1089;&#1099; &#1089; &#1095;&#1072;&#1089;&#1090;&#1086;&#1090;&#1086;&#1081; 1 &#1043;&#1043;&#1094; &#1080; &#1089;&#1082;&#1074;&#1072;&#1078;&#1085;&#1086;&#1089;&#1090;&#1100;&#1102; 1:1, &#1074;
&#1101;&#1090;&#1086;&#1084; &#1089;&#1087;&#1080;&#1089;&#1082;&#1077; &#1076;&#1086;&#1083;&#1078;&#1085;&#1086; &#1073;&#1099;&#1090;&#1100; &#1079;&#1072;&#1087;&#1080;&#1089;&#1072;&#1085;&#1086;: 0.5ns; 0.5ns.<br>
&#1044;&#1083;&#1103; &#1086;&#1090;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1080;&#1103; &#1088;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;&#1086;&#1074; &#1101;&#1090;&#1086;&#1075;&#1086; &#1090;&#1080;&#1087;&#1072; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1077;&#1089;&#1090;&#1100; "&#1074;&#1088;&#1077;&#1084;&#1077;&#1085;&#1085;&#1040;&#1103;
&#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1072;". &#1042; &#1085;&#1077;&#1081; &#1088;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;&#1099; &#1074;&#1089;&#1077;&#1093; &#1074;&#1099;&#1093;&#1086;&#1076;&#1085;&#1099;&#1093; &#1089;&#1080;&#1075;&#1085;&#1072;&#1083;&#1086;&#1074; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100;
&#1080;&#1079;&#1086;&#1073;&#1088;&#1072;&#1078;&#1077;&#1085;&#1099; &#1087;&#1086;&#1089;&#1090;&#1088;&#1086;&#1095;&#1085;&#1086; &#1074; &#1086;&#1076;&#1085;&#1086;&#1081; &#1076;&#1080;&#1072;&#1075;&#1088;&#1072;&#1084;&#1084;&#1077;. &#1058;&#1072;&#1082; &#1095;&#1090;&#1086; &#1091;&#1089;&#1087;&#1077;&#1093;&#1086;&#1074; &#1074; &#1101;&#1090;&#1086;&#1084; &#1076;&#1077;&#1083;&#1077;...
<br>
<br>
<h3>&#1060;&#1072;&#1081;&#1083;&#1086;&#1074;&#1099;&#1081; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; VHDL</h3>
&#1041;&#1086;&#1083;&#1077;&#1077; &#1089;&#1083;&#1086;&#1078;&#1085;&#1099;&#1077; &#1080; &#1073;&#1086;&#1083;&#1077;&#1077; &#1091;&#1085;&#1080;&#1074;&#1077;&#1088;&#1089;&#1072;&#1083;&#1100;&#1085;&#1099;&#1077; &#1074;&#1080;&#1076;&#1099; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100;
&#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1077;&#1085;&#1099; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072; "&#1092;&#1072;&#1081;&#1083; VHDL". &#1069;&#1090;&#1086;&#1090; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; &#1084;&#1086;&#1078;&#1077;&#1090; &#1073;&#1099;&#1090;&#1100;
&#1074;&#1079;&#1103;&#1090; &#1080;&#1079; &#1089;&#1087;&#1080;&#1089;&#1082;&#1072; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074; (&#1088;&#1072;&#1079;&#1076;&#1077;&#1083; "&#1094;&#1080;&#1092;&#1088;&#1086;&#1074;&#1099;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099;"). &#1058;&#1077;&#1084; &#1085;&#1077;
&#1084;&#1077;&#1085;&#1077;&#1077;, &#1088;&#1077;&#1082;&#1086;&#1084;&#1077;&#1085;&#1076;&#1091;&#1077;&#1090;&#1089;&#1103; &#1089;&#1083;&#1077;&#1076;&#1091;&#1102;&#1097;&#1080;&#1081; &#1089;&#1087;&#1086;&#1089;&#1086;&#1073;: &#1092;&#1072;&#1081;&#1083; VHDL &#1076;&#1086;&#1083;&#1078;&#1077;&#1085;
&#1073;&#1099;&#1090;&#1100; &#1074; &#1089;&#1086;&#1089;&#1090;&#1072;&#1074;&#1077; &#1087;&#1088;&#1086;&#1077;&#1082;&#1090;&#1072;.
&#1047;&#1072;&#1090;&#1077;&#1084; &#1087;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077; &#1074; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1075;&#1086; &#1087;&#1088;&#1086;&#1077;&#1082;&#1090;&#1072; &#1080; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1085;&#1072; &#1080;&#1084;&#1103; &#1092;&#1072;&#1081;&#1083;&#1072;.
&#1042;&#1086;&#1081;&#1076;&#1103; &#1074; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1087;&#1086;&#1089;&#1090;&#1088;&#1086;&#1077;&#1085;&#1080;&#1103; &#1089;&#1093;&#1077;&#1084;, &#1087;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090; VHDL.<br>
&#1055;&#1086;&#1089;&#1083;&#1077;&#1076;&#1085;&#1080;&#1081; &#1086;&#1073;&#1098;&#1077;&#1082;&#1090;&#1085;&#1099;&#1081; &#1073;&#1083;&#1086;&#1082; &#1074; &#1092;&#1072;&#1081;&#1083;&#1077; VHDL &#1086;&#1087;&#1088;&#1077;&#1076;&#1077;&#1083;&#1103;&#1077;&#1090; &#1080;&#1085;&#1090;&#1077;&#1088;&#1092;&#1077;&#1081;&#1089;, &#1090;&#1086; &#1077;&#1089;&#1090;&#1100;
&#1079;&#1076;&#1077;&#1089;&#1100; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1073;&#1099;&#1090;&#1100; &#1086;&#1073;&#1098;&#1103;&#1074;&#1083;&#1077;&#1085;&#1099; &#1074;&#1089;&#1077; &#1074;&#1093;&#1086;&#1076;&#1085;&#1099;&#1077; &#1080; &#1074;&#1099;&#1093;&#1086;&#1076;&#1085;&#1099;&#1077; &#1074;&#1099;&#1074;&#1086;&#1076;&#1099;. &#1069;&#1090;&#1080; &#1074;&#1099;&#1074;&#1086;&#1076;&#1099;
&#1087;&#1086;&#1082;&#1072;&#1079;&#1099;&#1074;&#1072;&#1102;&#1090;&#1089;&#1103; &#1090;&#1072;&#1082;&#1078;&#1077; &#1085;&#1072; &#1089;&#1093;&#1077;&#1084;&#1085;&#1086;&#1084; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1080; &#1080; &#1084;&#1086;&#1075;&#1091;&#1090; &#1073;&#1099;&#1090;&#1100; &#1089;&#1086;&#1077;&#1076;&#1080;&#1085;&#1077;&#1085;&#1099; &#1089;
&#1086;&#1089;&#1090;&#1072;&#1083;&#1100;&#1085;&#1086;&#1081; &#1089;&#1093;&#1077;&#1084;&#1086;&#1081;.
&#1042;&#1086; &#1074;&#1088;&#1077;&#1084;&#1103; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1080;&#1089;&#1093;&#1086;&#1076;&#1085;&#1099;&#1081; &#1082;&#1086;&#1076; &#1092;&#1072;&#1081;&#1083;&#1072; VHDL &#1087;&#1086;&#1084;&#1077;&#1097;&#1072;&#1077;&#1090;&#1089;&#1103; &#1074;&nbsp;
VHDL-&#1092;&#1072;&#1081;&#1083; &#1074;&#1077;&#1088;&#1093;&#1085;&#1077;&#1075;&#1086; &#1091;&#1088;&#1086;&#1074;&#1085;&#1103;. &#1069;&#1090;&#1086; &#1089;&#1083;&#1077;&#1076;&#1091;&#1077;&#1090; &#1091;&#1095;&#1080;&#1090;&#1099;&#1074;&#1072;&#1090;&#1100;, &#1087;&#1086;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1091; &#1101;&#1090;&#1086;
&#1087;&#1088;&#1080;&#1074;&#1086;&#1076;&#1080;&#1090; &#1082; &#1085;&#1077;&#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1084; &#1086;&#1075;&#1088;&#1072;&#1085;&#1080;&#1095;&#1077;&#1085;&#1080;&#1103;&#1084;. &#1053;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1080;&#1084;&#1077;&#1085;&#1072; &#1086;&#1073;&#1098;&#1077;&#1082;&#1090;&#1086;&#1074; &#1074;
VHDL-&#1092;&#1072;&#1081;&#1083;&#1077; &#1076;&#1086;&#1083;&#1078;&#1085;&#1099; &#1086;&#1090;&#1083;&#1080;&#1095;&#1072;&#1090;&#1100;&#1089;&#1103; &#1086;&#1090; &#1080;&#1084;&#1077;&#1085;, &#1091;&#1078;&#1077; &#1076;&#1072;&#1085;&#1085;&#1099;&#1093; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1072;&#1084;. (&#1055;&#1086;&#1089;&#1083;&#1077;
&#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1103; &#1087;&#1086;&#1083;&#1085;&#1099;&#1081; &#1080;&#1089;&#1093;&#1086;&#1076;&#1085;&#1099;&#1081; &#1082;&#1086;&#1076; &#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1074;&#1080;&#1076;&#1077;&#1090;&#1100;, &#1085;&#1072;&#1078;&#1072;&#1074; F6. &#1055;&#1086;&#1083;&#1100;&#1079;&#1091;&#1081;&#1090;&#1077;&#1089;&#1100;
&#1101;&#1090;&#1080;&#1084;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1087;&#1088;&#1086;&#1095;&#1091;&#1074;&#1089;&#1090;&#1074;&#1086;&#1074;&#1072;&#1090;&#1100; &#1087;&#1088;&#1086;&#1094;&#1077;&#1076;&#1091;&#1088;&#1091;.)
<br>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a><br>
</body>
</html>

View File

@ -0,0 +1,58 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<meta name="Author" content="Michael Margraf">
<title>Qucs - &#1056;&#1072;&#1073;&#1086;&#1090;&#1072; &#1089; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1072;&#1084;&#1080;</title>
</head>
<body>
<a name="top" id="top"></a>
<center>
<h3>- Qucs -<br>
&#1056;&#1072;&#1073;&#1086;&#1090;&#1072; &#1089; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1072;&#1084;&#1080;<br>
</h3>
</center>
&#1055;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1099; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1091;&#1102;&#1090;&#1089;&#1103;, &#1095;&#1090;&#1086;&#1073;&#1099; &#1074;&#1085;&#1077;&#1089;&#1090;&#1080; &#1073;&#1086;&#1083;&#1100;&#1096;&#1091;&#1102; &#1103;&#1089;&#1085;&#1086;&#1089;&#1090;&#1100; &#1074; &#1089;&#1093;&#1077;&#1084;&#1091;. &#1069;&#1090;&#1086; &#1086;&#1095;&#1077;&#1085;&#1100;
&#1087;&#1086;&#1083;&#1077;&#1079;&#1085;&#1086; &#1074; &#1073;&#1086;&#1083;&#1100;&#1096;&#1080;&#1093; &#1089;&#1093;&#1077;&#1084;&#1072;&#1093; &#1080;&#1083;&#1080; &#1074; &#1089;&#1093;&#1077;&#1084;&#1072;&#1093;, &#1074;&nbsp; &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1093; &#1082;&#1072;&#1082;&#1086;&#1081;-&#1083;&#1080;&#1073;&#1086; &#1073;&#1083;&#1086;&#1082;
&#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074; &#1087;&#1086;&#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1085;&#1077;&#1089;&#1082;&#1086;&#1083;&#1100;&#1082;&#1086; &#1088;&#1072;&#1079;.<br>
&#1042; Qucs &#1082;&#1072;&#1078;&#1076;&#1072;&#1103; &#1089;&#1093;&#1077;&#1084;&#1072;, &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1072;&#1097;&#1072;&#1103; &#1074;&#1099;&#1074;&#1086;&#1076; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1099;, &#1103;&#1074;&#1083;&#1103;&#1077;&#1090;&#1089;&#1103; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1086;&#1081;.
&#1042;&#1099;&#1074;&#1086;&#1076; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1099; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1083;&#1091;&#1095;&#1080;&#1090;&#1100; &#1089; &#1087;&#1086;&#1084;&#1086;&#1097;&#1100;&#1102; &#1087;&#1072;&#1085;&#1077;&#1083;&#1080; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;, &#1089;&#1087;&#1080;&#1089;&#1082;&#1072;
&#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1086;&#1074; (&#1074; &#1076;&#1080;&#1089;&#1082;&#1088;&#1077;&#1090;&#1085;&#1099;&#1093; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072;&#1093;) &#1080;&#1083;&#1080; &#1084;&#1077;&#1085;&#1102; (&#1042;&#1089;&#1090;&#1072;&#1074;&#1082;&#1072;-&gt;&#1042;&#1089;&#1090;&#1072;&#1074;&#1080;&#1090;&#1100;
&#1074;&#1099;&#1074;&#1086;&#1076;).
&#1055;&#1086;&#1089;&#1083;&#1077; &#1090;&#1086;&#1075;&#1086;, &#1082;&#1072;&#1082; &#1074;&#1089;&#1090;&#1072;&#1074;&#1083;&#1077;&#1085;&#1099; &#1074;&#1089;&#1077; &#1074;&#1099;&#1074;&#1086;&#1076;&#1099; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1099; (&#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1076;&#1074;&#1072;), &#1085;&#1091;&#1078;&#1085;&#1086;
&#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1100; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1091; (&#1085;&#1072;&#1087;&#1088;&#1080;&#1084;&#1077;&#1088;, &#1085;&#1072;&#1078;&#1072;&#1074; CTRL-S). &#1045;&#1089;&#1083;&#1080; &#1087;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077;&#1090;&#1100; &#1074; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;
&#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1075;&#1086; &#1087;&#1088;&#1086;&#1077;&#1082;&#1090;&#1072; (&#1088;&#1080;&#1089;. 1), &#1084;&#1086;&#1078;&#1085;&#1086; &#1091;&#1074;&#1080;&#1076;&#1077;&#1090;&#1100;, &#1095;&#1090;&#1086; &#1090;&#1077;&#1087;&#1077;&#1088;&#1100; &#1089;&#1087;&#1088;&#1072;&#1074;&#1072; &#1086;&#1090; &#1080;&#1084;&#1077;&#1085;&#1080;
&#1089;&#1093;&#1077;&#1084;&#1099; &#1089;&#1090;&#1086;&#1080;&#1090; "2-&#1087;&#1086;&#1088;&#1090;&#1086;&#1074;&#1099;&#1081;" (&#1089;&#1090;&#1086;&#1083;&#1073;&#1077;&#1094; "&#1055;&#1088;&#1080;&#1084;&#1077;&#1095;&#1072;&#1085;&#1080;&#1077;"). &#1069;&#1090;&#1072; &#1087;&#1086;&#1084;&#1077;&#1090;&#1082;&#1072; &#1077;&#1089;&#1090;&#1100; &#1091;
&#1074;&#1089;&#1077;&#1093; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;, &#1082;&#1086;&#1090;&#1086;&#1088;&#1099;&#1077; &#1103;&#1074;&#1083;&#1103;&#1102;&#1090;&#1089;&#1103; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1072;&#1084;&#1080;. &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1087;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077; &#1074;
&#1089;&#1093;&#1077;&#1084;&#1091;, &#1075;&#1076;&#1077; &#1042;&#1099; &#1093;&#1086;&#1090;&#1080;&#1090;&#1077; &#1080;&#1089;&#1087;&#1086;&#1083;&#1100;&#1079;&#1086;&#1074;&#1072;&#1090;&#1100; &#1101;&#1090;&#1091; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1091;. &#1047;&#1072;&#1090;&#1077;&#1084; &#1085;&#1072;&#1078;&#1084;&#1080;&#1090;&#1077; &#1085;&#1072; &#1080;&#1084;&#1103;
&#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1099; (&#1074; &#1087;&#1088;&#1086;&#1089;&#1084;&#1086;&#1090;&#1088;&#1077; &#1089;&#1086;&#1076;&#1077;&#1088;&#1078;&#1080;&#1084;&#1086;&#1075;&#1086;). &#1057;&#1085;&#1086;&#1074;&#1072; &#1074;&#1086;&#1081;&#1076;&#1103; &#1074; &#1086;&#1073;&#1083;&#1072;&#1089;&#1090;&#1100; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074;,
&#1042;&#1099;
&#1074;&#1080;&#1076;&#1080;&#1090;&#1077;, &#1095;&#1090;&#1086; &#1090;&#1077;&#1087;&#1077;&#1088;&#1100; &#1084;&#1086;&#1078;&#1085;&#1086; &#1087;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1091; &#1074; &#1075;&#1083;&#1072;&#1074;&#1085;&#1091;&#1102; &#1089;&#1093;&#1077;&#1084;&#1091;. &#1057;&#1076;&#1077;&#1083;&#1072;&#1081;&#1090;&#1077;
&#1090;&#1072;&#1082; &#1080; &#1079;&#1072;&#1082;&#1086;&#1085;&#1095;&#1080;&#1090;&#1077; &#1089;&#1093;&#1077;&#1084;&#1091;. &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1099;&#1087;&#1086;&#1083;&#1085;&#1080;&#1090;&#1100; &#1084;&#1086;&#1076;&#1077;&#1083;&#1080;&#1088;&#1086;&#1074;&#1072;&#1085;&#1080;&#1077;. &#1056;&#1077;&#1079;&#1091;&#1083;&#1100;&#1090;&#1072;&#1090;
&#1073;&#1091;&#1076;&#1077;&#1090; &#1090;&#1072;&#1082;&#1086;&#1081; &#1078;&#1077;, &#1082;&#1072;&#1082; &#1077;&#1089;&#1083;&#1080; &#1073;&#1099; &#1074;&#1089;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1099; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1099; &#1073;&#1099;&#1083;&#1080; &#1087;&#1086;&#1084;&#1077;&#1097;&#1077;&#1085;&#1099;
&#1085;&#1077;&#1087;&#1086;&#1089;&#1088;&#1077;&#1076;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086; &#1085;&#1072; &#1089;&#1093;&#1077;&#1084;&#1091;.<br>
<center>
<img src="subcircuit.png"><br>
&#1056;&#1080;&#1089;. 1 - &#1055;&#1086;&#1083;&#1091;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1072; &#1082; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1077;<br>
<br>
</center>
&#1045;&#1089;&#1083;&#1080; &#1074;&#1099;&#1073;&#1088;&#1072;&#1090;&#1100; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;-&#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1091; (&#1085;&#1072;&#1078;&#1072;&#1074; &#1085;&#1072; &#1077;&#1077; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1074; &#1089;&#1093;&#1077;&#1084;&#1077;), &#1090;&#1086;
&#1084;&#1086;&#1078;&#1085;&#1086; &#1074;&#1086;&#1081;&#1090;&#1080; &#1074; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1091;, &#1085;&#1072;&#1078;&#1072;&#1074; CTRL-I (&#1082;&#1086;&#1085;&#1077;&#1095;&#1085;&#1086;, &#1101;&#1090;&#1072; &#1092;&#1091;&#1085;&#1082;&#1094;&#1080;&#1103; &#1076;&#1086;&#1089;&#1090;&#1091;&#1087;&#1085;&#1072;
&#1095;&#1077;&#1088;&#1077;&#1079; &#1087;&#1072;&#1085;&#1077;&#1083;&#1100; &#1080;&#1085;&#1089;&#1090;&#1088;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1074; &#1080; &#1095;&#1077;&#1088;&#1077;&#1079; &#1084;&#1077;&#1085;&#1102;). &#1052;&#1086;&#1078;&#1085;&#1086; &#1074;&#1077;&#1088;&#1085;&#1091;&#1090;&#1100;&#1089;&#1103;, &#1085;&#1072;&#1078;&#1072;&#1074; CTRL-H.
<br>
<br>
<br>
&#1045;&#1089;&#1083;&#1080; &#1042;&#1072;&#1084; &#1085;&#1077; &#1085;&#1088;&#1072;&#1074;&#1080;&#1090;&#1089;&#1103; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1099;, &#1090;&#1086; &#1042;&#1099; &#1084;&#1086;&#1078;&#1077;&#1090;&#1077;
&#1085;&#1072;&#1088;&#1080;&#1089;&#1086;&#1074;&#1072;&#1090;&#1100; &#1089;&#1074;&#1086;&#1077; &#1089;&#1086;&#1073;&#1089;&#1090;&#1074;&#1077;&#1085;&#1085;&#1086;&#1077; &#1080; &#1087;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1100; &#1090;&#1077;&#1082;&#1089;&#1090; &#1082;&#1086;&#1084;&#1087;&#1086;&#1085;&#1077;&#1085;&#1090;&#1072; &#1090;&#1091;&#1076;&#1072;, &#1075;&#1076;&#1077; &#1042;&#1072;&#1084;
&#1085;&#1088;&#1072;&#1074;&#1080;&#1090;&#1089;&#1103;. &#1055;&#1088;&#1086;&#1089;&#1090;&#1086; &#1089;&#1076;&#1077;&#1083;&#1072;&#1081;&#1090;&#1077; &#1089;&#1093;&#1077;&#1084;&#1091; &#1087;&#1086;&#1076;&#1089;&#1093;&#1077;&#1084;&#1099; &#1090;&#1077;&#1082;&#1091;&#1097;&#1080;&#1084; &#1076;&#1086;&#1082;&#1091;&#1084;&#1077;&#1085;&#1090;&#1086;&#1084; &#1080; &#1087;&#1077;&#1088;&#1077;&#1081;&#1076;&#1080;&#1090;&#1077;
&#1082; &#1084;&#1077;&#1085;&#1102;: &#1060;&#1072;&#1081;&#1083;-&gt;&#1048;&#1079;&#1084;&#1077;&#1085;&#1080;&#1090;&#1100; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1089;&#1093;&#1077;&#1084;&#1099;. &#1045;&#1089;&#1083;&#1080; &#1042;&#1099; &#1091;&#1078;&#1077; &#1085;&#1077; &#1085;&#1072;&#1088;&#1080;&#1089;&#1086;&#1074;&#1072;&#1083;&#1080;
&#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1076;&#1083;&#1103; &#1101;&#1090;&#1086;&#1081; &#1089;&#1093;&#1077;&#1084;&#1099;, &#1090;&#1086; &#1072;&#1074;&#1090;&#1086;&#1084;&#1072;&#1090;&#1080;&#1095;&#1077;&#1089;&#1082;&#1080; &#1073;&#1091;&#1076;&#1077;&#1090; &#1089;&#1086;&#1079;&#1076;&#1072;&#1085;&#1086; &#1087;&#1088;&#1086;&#1089;&#1090;&#1086;&#1077;
&#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;. &#1069;&#1090;&#1086; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077; &#1084;&#1086;&#1078;&#1085;&#1086; &#1088;&#1077;&#1076;&#1072;&#1082;&#1090;&#1080;&#1088;&#1086;&#1074;&#1072;&#1090;&#1100;, &#1088;&#1080;&#1089;&#1091;&#1103; &#1083;&#1080;&#1085;&#1080;&#1080; &#1080; &#1076;&#1091;&#1075;&#1080;.
&#1055;&#1086;&#1089;&#1083;&#1077; &#1079;&#1072;&#1074;&#1077;&#1088;&#1096;&#1077;&#1085;&#1080;&#1103;, &#1089;&#1086;&#1093;&#1088;&#1072;&#1085;&#1080;&#1090;&#1077; &#1077;&#1075;&#1086;. &#1058;&#1077;&#1087;&#1077;&#1088;&#1100; &#1087;&#1086;&#1084;&#1077;&#1089;&#1090;&#1080;&#1090;&#1077; &#1077;&#1075;&#1086; &#1085;&#1072; &#1076;&#1088;&#1091;&#1075;&#1091;&#1102; &#1089;&#1093;&#1077;&#1084;&#1091;, <span
style="font-style: italic;">et voila</span>, &#1091; &#1042;&#1072;&#1089; &#1085;&#1086;&#1074;&#1086;&#1077; &#1086;&#1073;&#1086;&#1079;&#1085;&#1072;&#1095;&#1077;&#1085;&#1080;&#1077;.
<br>
<br>
<a href="#top">&#1085;&#1072;&#1074;&#1077;&#1088;&#1093;</a><br>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

BIN
qucs-help/docs/ru/wire.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

View File

@ -1,3 +1,11 @@
2006-05-22 Stefan Jahn <stefan@lkcc.org>
* textdoc.cpp (markWord): Fixed segfault bug in syntax
highlighter.
* qucs_jp.ts: Updated Japanese translations. Thanks to
Toyoyuki.
2006-05-20 Michael Margraf <michael.margraf@alumni.tu-berlin.de>
* new action: select all markers

View File

@ -1,3 +1,7 @@
2006-05-22 Stefan Jahn <stefan@lkcc.org>
* tline.cpp (TLine): Changed default value of 'Alpha' to "0 dB".
2006-04-27 Stefan Jahn <stefan@lkcc.org>
* sparamfile.cpp (SParamFile): Added new 'duringDC' property.

View File

@ -45,7 +45,7 @@ TLine::TLine()
QObject::tr("characteristic impedance")));
Props.append(new Property("L", "1 mm", true,
QObject::tr("electrical length of the line")));
Props.append(new Property("Alpha", "0", false,
Props.append(new Property("Alpha", "0 dB", false,
QObject::tr("attenuation factor per length in 1/m")));
Props.append(new Property("Temp", "26.85", false,
QObject::tr("simulation temperature in degree Celsius")));

File diff suppressed because it is too large Load Diff

View File

@ -6036,17 +6036,19 @@ Deaktivieren/Aktivieren der ausgewählten Komponenten</translation>
</message>
<message>
<source>Select Markers</source>
<translation type="unfinished"></translation>
<translation>Markierungen auswählen</translation>
</message>
<message>
<source>Selects all markers</source>
<translation type="unfinished"></translation>
<translation>Wählt alle Markierungen aus</translation>
</message>
<message>
<source>Select Markers
Selects all diagram markers of the document</source>
<translation type="unfinished"></translation>
<translation>Markierungen auswählen
Wählt alle Diagramm-Markierungen im Dokument aus</translation>
</message>
</context>
<context>

File diff suppressed because it is too large Load Diff

View File

@ -434,7 +434,8 @@ pChar List_Units[] = {"fs", "ps", "ns", "us", "ms", "sec", "min", "hr", 0};
void SyntaxHighlighter::markWord(const QString& text, int start, int len)
{
QString Word = text.mid(start, len).lower();
pChar *List = WordList[(int)(Word.at(0).latin1() - 'a')];
int idx = (int)(Word.at(0).latin1() - 'a');
pChar *List = (idx >= 0 && idx <= 25) ? WordList[idx] : NULL;
if(List)
for( ; *List != 0; List++)