<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>JIMO|博客</title><link>https://bk.jimo.fun/</link><description>以我所想，创你所享！</description><item><title>(A卷,100分)- 字母组合（Java &amp;amp; JS &amp;amp; Python &amp;amp; C）</title><link>https://bk.jimo.fun/?id=35</link><description>&lt;meta charset=&quot;UTF-8&quot;/&gt;&lt;style&gt;.nodata  main {width:1000px;margin: auto;}&lt;/style&gt;&lt;div class=&quot;main_father clearfix d-flex justify-content-center &quot; style=&quot;height:100%;&quot;&gt;&lt;div class=&quot;container clearfix &quot; id=&quot;mainBox&quot;&gt;&lt;main&gt;&lt;div class=&quot;blog-content-box&quot;&gt;&lt;div class=&quot;article-header-box&quot;&gt;&lt;div class=&quot;article-header&quot;&gt;&lt;div class=&quot;article-title-box&quot;&gt;&lt;h1 class=&quot;title-article&quot; id=&quot;articleContentId&quot;&gt;(A卷,100分)- 字母组合（Java &amp;amp; JS &amp;amp; Python &amp;amp; C）&lt;/h1&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;blogHuaweiyunAdvert&quot;&gt;&lt;/div&gt;&lt;div id=&quot;article_content&quot; class=&quot;article_content clearfix&quot;&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;https://csdnimg.cn/release/blogv2/dist/mdeditor/css/editerView/kdoc_html_views-1a98987dfd.css&quot;/&gt;&lt;link rel=&quot;stylesheet&quot; href=&quot;https://csdnimg.cn/release/blogv2/dist/mdeditor/css/editerView/ck_htmledit_views-044f2cf1dc.css&quot;/&gt;&lt;div id=&quot;content_views&quot; class=&quot;htmledit_views&quot;&gt;&lt;h4 id=&quot;main-toc&quot;&gt;题目描述&lt;/h4&gt;&lt;p&gt;每个数字关联多个字母&amp;amp;#xff0c;关联关系如下&amp;amp;#xff1a;&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;0 关联 “a”,”b”,”c”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;1 关联 “d”,”e”,”f”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;2 关联 “g”,”h”,”i”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;3 关联 “j”,”k”,”l”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;4 关联 “m”,”n”,”o”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;5 关联 “p”,”q”,”r”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;6 关联 “s”,”t”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;7 关联 “u”,”v”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;8 关联 “w”,”x”&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;9 关联 “y”,”z”&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;输入一串数字后&amp;amp;#xff0c;通过数字和字母的对应关系可以得到多个字母字符串&amp;amp;#xff08;要求按照数字的顺序组合字母字符串&amp;amp;#xff09;&amp;amp;#xff1b;&lt;/p&gt;&lt;p&gt;屏蔽字符串&amp;amp;#xff1a;屏蔽字符串中的所有字母不能同时在输出的字符串出现&amp;amp;#xff0c;如屏蔽字符串是abc&amp;amp;#xff0c;则要求字符串中不能同时出现a,b,c&amp;amp;#xff0c;但是允许同时出现a,b或a,c或b,c等&amp;amp;#xff1b;&lt;/p&gt;&lt;p&gt;给定一个数字字符串和一个屏蔽字符串&amp;amp;#xff0c;输出所有可能的字符组合&amp;amp;#xff1b;&lt;/p&gt;&lt;p&gt;例如输入数字字符串78和屏蔽字符串ux&amp;amp;#xff0c;输出结果为uw&amp;amp;#xff0c;vw&amp;amp;#xff0c;vx&amp;amp;#xff1b;数字字符串78&amp;amp;#xff0c;可以得到如下字符串uw&amp;amp;#xff0c;ux&amp;amp;#xff0c;vw&amp;amp;#xff0c;vx&amp;amp;#xff1b;由于ux是屏蔽字符串&amp;amp;#xff0c;因此排除ux&amp;amp;#xff0c;最终的输出是uw&amp;amp;#xff0c;vw&amp;amp;#xff0c;vx;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h4 id=&quot;%E8%BE%93%E5%85%A5%E6%8F%8F%E8%BF%B0&quot;&gt;输入描述&lt;/h4&gt;&lt;p&gt;第一行输入为一串数字字符串&amp;amp;#xff0c;数字字符串中的数字不允许重复&amp;amp;#xff0c;数字字符串的长度大于0&amp;amp;#xff0c;小于等于5&amp;amp;#xff1b;&lt;/p&gt;&lt;p&gt;第二行输入是屏蔽字符串&amp;amp;#xff0c;屏蔽字符串的长度一定小于数字字符串的长度&amp;amp;#xff0c;屏蔽字符串中字符不会重复&amp;amp;#xff1b;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h4 id=&quot;%E8%BE%93%E5%87%BA%E6%8F%8F%E8%BF%B0&quot;&gt;输出描述&lt;/h4&gt;&lt;p&gt;输出可能的字符串组合&lt;/p&gt;&lt;p&gt;注&amp;amp;#xff1a;字符串之间使用逗号隔开&amp;amp;#xff0c;最后一个字符串后携带逗号&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h4 id=&quot;%E7%94%A8%E4%BE%8B&quot;&gt;用例&lt;/h4&gt;&lt;table border=&quot;1&quot; cellpadding=&quot;1&quot; cellspacing=&quot;1&quot; style=&quot;width:500px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width:86px;&quot;&gt;输入&lt;/td&gt;&lt;td style=&quot;width:412px;&quot;&gt;78&lt;br/&gt; ux&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width:86px;&quot;&gt;输出&lt;/td&gt;&lt;td style=&quot;width:412px;&quot;&gt;uw,vw,vx,&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width:86px;&quot;&gt;说明&lt;/td&gt;&lt;td style=&quot;width:412px;&quot;&gt;无&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;table border=&quot;1&quot; cellpadding=&quot;1&quot; cellspacing=&quot;1&quot; style=&quot;width:500px;&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;width:87px;&quot;&gt;输入&lt;/td&gt;&lt;td style=&quot;width:411px;&quot;&gt;&lt;p&gt;78&lt;br/&gt; x&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width:87px;&quot;&gt;输出&lt;/td&gt;&lt;td style=&quot;width:411px;&quot;&gt;uw,vw,&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style=&quot;width:87px;&quot;&gt;说明&lt;/td&gt;&lt;td style=&quot;width:411px;&quot;&gt;无&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;h4 id=&quot;%E9%A2%98%E7%9B%AE%E8%A7%A3%E6%9E%90&quot;&gt;题目解析&lt;/h4&gt;&lt;p&gt;本题由两块逻辑组成&amp;amp;#xff1a;&lt;/p&gt;&lt;p&gt;1、根据提供的数字字符串&amp;amp;#xff0c;得到字母组合字符串。这块其实就是求组合问题&amp;amp;#xff0c;可以使用回溯算法&amp;amp;#xff0c;逻辑可以参考&amp;amp;#xff1a;&lt;a href=&quot;https://blog.csdn.net/qfc_128220/article/details/127293561&quot; title=&quot;LeetCode - 17 电话号码的字母组合_伏城之外的博客-CSDN博客&quot;&gt;LeetCode - 17 电话号码的字母组合_伏城之外的博客-CSDN博客&lt;/a&gt;&lt;/p&gt;&lt;p&gt;2、排除包含屏蔽字符串的字母组合字符串&amp;amp;#xff0c;而本题中判断一个字符串是否包含另一个字符串的逻辑是&amp;amp;#xff1a;屏蔽字符串中的所有字母不能同时在输出的字符串中出现&lt;/p&gt;&lt;blockquote&gt;&lt;p&gt;数字字符串中的数字不允许重复&lt;/p&gt;&lt;p&gt;屏蔽字符串中字符不会重复&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h4 id=&quot;%E7%AE%97%E6%B3%95%E6%BA%90%E7%A0%81&quot;&gt;JS算法源码&lt;/h4&gt;&lt;pre&gt;const&amp;nbsp;rl&amp;nbsp;=&amp;nbsp;require(&amp;quot;readline&amp;quot;).createInterface({&amp;nbsp;input:&amp;nbsp;process.stdin&amp;nbsp;});
var&amp;nbsp;iter&amp;nbsp;=&amp;nbsp;rl[Symbol.asyncIterator]();
const&amp;nbsp;readline&amp;nbsp;=&amp;nbsp;async&amp;nbsp;()&amp;nbsp;=&amp;gt;&amp;nbsp;(await&amp;nbsp;iter.next()).value;

void&amp;nbsp;(async&amp;nbsp;function&amp;nbsp;()&amp;nbsp;{
&amp;nbsp;&amp;nbsp;const&amp;nbsp;nums&amp;nbsp;=&amp;nbsp;await&amp;nbsp;readline();
&amp;nbsp;&amp;nbsp;const&amp;nbsp;filter&amp;nbsp;=&amp;nbsp;await&amp;nbsp;readline();

&amp;nbsp;&amp;nbsp;const&amp;nbsp;map&amp;nbsp;=&amp;nbsp;[
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;abc&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;def&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;ghi&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;jkl&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;mno&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;pqr&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;st&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;uv&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;wx&amp;quot;,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;yz&amp;quot;,
&amp;nbsp;&amp;nbsp;];

&amp;nbsp;&amp;nbsp;const&amp;nbsp;result&amp;nbsp;=&amp;nbsp;[];

&amp;nbsp;&amp;nbsp;/**
&amp;nbsp;&amp;nbsp;&amp;nbsp;*&amp;nbsp;回溯算法求组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;*&amp;nbsp;@param&amp;nbsp;{*}&amp;nbsp;level&amp;nbsp;组合的层级
&amp;nbsp;&amp;nbsp;&amp;nbsp;*&amp;nbsp;@param&amp;nbsp;{*}&amp;nbsp;path&amp;nbsp;记录组合字符串
&amp;nbsp;&amp;nbsp;&amp;nbsp;*/
&amp;nbsp;&amp;nbsp;function&amp;nbsp;dfs(level,&amp;nbsp;path)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;组合层数到达要求时&amp;amp;#xff0c;当前组合字符串完成
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;(level&amp;nbsp;==&amp;nbsp;nums.length)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;const&amp;nbsp;set&amp;nbsp;=&amp;nbsp;new&amp;nbsp;Set(path);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for&amp;nbsp;(let&amp;nbsp;c&amp;nbsp;of&amp;nbsp;filter)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;(!set.has(c))&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;result.push(path.join(&amp;quot;&amp;quot;));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;当前层级的数字
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;const&amp;nbsp;num&amp;nbsp;=&amp;nbsp;nums[level]&amp;nbsp;-&amp;nbsp;&amp;quot;0&amp;quot;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;该数字关联的多个字母
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;const&amp;nbsp;letters&amp;nbsp;=&amp;nbsp;map[num];

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;遍历当前层级可选的字母
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for&amp;nbsp;(let&amp;nbsp;i&amp;nbsp;=&amp;nbsp;0;&amp;nbsp;i&amp;nbsp;&amp;lt;&amp;nbsp;letters.length;&amp;nbsp;i++)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;选择字母加入当前组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;const&amp;nbsp;letter&amp;nbsp;=&amp;nbsp;letters[i];

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path.push(letter);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;继续组合下一个层级的字母选择
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dfs(level&amp;nbsp;+&amp;nbsp;1,&amp;nbsp;path);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path.pop();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;//&amp;nbsp;回溯算法求组合
&amp;nbsp;&amp;nbsp;dfs(0,&amp;nbsp;[],&amp;nbsp;result);

&amp;nbsp;&amp;nbsp;//&amp;nbsp;拼接结果字符串
&amp;nbsp;&amp;nbsp;console.log(result.join(&amp;quot;,&amp;quot;)&amp;nbsp;+&amp;nbsp;&amp;quot;,&amp;quot;);
})();&lt;/pre&gt; &lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h4&gt;Java算法源码&lt;/h4&gt;&lt;pre&gt;import&amp;nbsp;java.util.ArrayList;
import&amp;nbsp;java.util.HashSet;
import&amp;nbsp;java.util.LinkedList;
import&amp;nbsp;java.util.Scanner;

public&amp;nbsp;class&amp;nbsp;Main&amp;nbsp;{
&amp;nbsp;&amp;nbsp;static&amp;nbsp;String&amp;nbsp;nums;
&amp;nbsp;&amp;nbsp;static&amp;nbsp;String&amp;nbsp;filter;
&amp;nbsp;&amp;nbsp;static&amp;nbsp;String[]&amp;nbsp;map&amp;nbsp;=&amp;nbsp;{&amp;quot;abc&amp;quot;,&amp;nbsp;&amp;quot;def&amp;quot;,&amp;nbsp;&amp;quot;ghi&amp;quot;,&amp;nbsp;&amp;quot;jkl&amp;quot;,&amp;nbsp;&amp;quot;mno&amp;quot;,&amp;nbsp;&amp;quot;pqr&amp;quot;,&amp;nbsp;&amp;quot;st&amp;quot;,&amp;nbsp;&amp;quot;uv&amp;quot;,&amp;nbsp;&amp;quot;wx&amp;quot;,&amp;nbsp;&amp;quot;yz&amp;quot;};

&amp;nbsp;&amp;nbsp;static&amp;nbsp;ArrayList&amp;lt;String&amp;gt;&amp;nbsp;result&amp;nbsp;=&amp;nbsp;new&amp;nbsp;ArrayList&amp;lt;&amp;gt;();

&amp;nbsp;&amp;nbsp;public&amp;nbsp;static&amp;nbsp;void&amp;nbsp;main(String[]&amp;nbsp;args)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Scanner&amp;nbsp;sc&amp;nbsp;=&amp;nbsp;new&amp;nbsp;Scanner(System.in);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;nums&amp;nbsp;=&amp;nbsp;sc.nextLine();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;filter&amp;nbsp;=&amp;nbsp;sc.nextLine();

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;System.out.println(getResult());
&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;public&amp;nbsp;static&amp;nbsp;String&amp;nbsp;getResult()&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;回溯算法求组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dfs(0,&amp;nbsp;new&amp;nbsp;LinkedList&amp;lt;&amp;gt;());

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;拼接结果字符串
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;StringBuilder&amp;nbsp;sb&amp;nbsp;=&amp;nbsp;new&amp;nbsp;StringBuilder();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;result.forEach(s&amp;nbsp;-&amp;gt;&amp;nbsp;sb.append(s).append(&amp;quot;,&amp;quot;));
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;sb.toString();
&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;/**
&amp;nbsp;&amp;nbsp;&amp;nbsp;*&amp;nbsp;回溯算法求组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;*
&amp;nbsp;&amp;nbsp;&amp;nbsp;*&amp;nbsp;@param&amp;nbsp;level&amp;nbsp;组合的层级
&amp;nbsp;&amp;nbsp;&amp;nbsp;*&amp;nbsp;@param&amp;nbsp;path&amp;nbsp;记录组合字符串
&amp;nbsp;&amp;nbsp;&amp;nbsp;*/
&amp;nbsp;&amp;nbsp;public&amp;nbsp;static&amp;nbsp;void&amp;nbsp;dfs(int&amp;nbsp;level,&amp;nbsp;LinkedList&amp;lt;Character&amp;gt;&amp;nbsp;path)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;组合层数到达要求时&amp;amp;#xff0c;当前组合字符串完成
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;(level&amp;nbsp;==&amp;nbsp;nums.length())&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;HashSet&amp;lt;Character&amp;gt;&amp;nbsp;set&amp;nbsp;=&amp;nbsp;new&amp;nbsp;HashSet&amp;lt;&amp;gt;(path);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for&amp;nbsp;(int&amp;nbsp;i&amp;nbsp;=&amp;nbsp;0;&amp;nbsp;i&amp;nbsp;&amp;lt;&amp;nbsp;filter.length();&amp;nbsp;i++)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;(!set.contains(filter.charAt(i)))&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;StringBuilder&amp;nbsp;sb&amp;nbsp;=&amp;nbsp;new&amp;nbsp;StringBuilder();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path.forEach(sb::append);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;result.add(sb.toString());
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;当前层级的数字
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;int&amp;nbsp;num&amp;nbsp;=&amp;nbsp;nums.charAt(level)&amp;nbsp;-&amp;nbsp;&amp;#39;0&amp;#39;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;该数字关联的多个字母
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;String&amp;nbsp;letters&amp;nbsp;=&amp;nbsp;map[num];

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;遍历当前层级可选的字母
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for&amp;nbsp;(int&amp;nbsp;i&amp;nbsp;=&amp;nbsp;0;&amp;nbsp;i&amp;nbsp;&amp;lt;&amp;nbsp;letters.length();&amp;nbsp;i++)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;选择字母加入当前组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;char&amp;nbsp;letter&amp;nbsp;=&amp;nbsp;letters.charAt(i);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path.addLast(letter);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;继续组合下一个层级的字母选择
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dfs(level&amp;nbsp;+&amp;nbsp;1,&amp;nbsp;path);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path.removeLast();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;}
}&lt;/pre&gt; &lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h4&gt;Python算法源码&lt;/h4&gt;&lt;pre&gt;#&amp;nbsp;输入获取
numsStr&amp;nbsp;=&amp;nbsp;input()
filterStr&amp;nbsp;=&amp;nbsp;input()

dic&amp;nbsp;=&amp;nbsp;[&amp;quot;abc&amp;quot;,&amp;nbsp;&amp;quot;def&amp;quot;,&amp;nbsp;&amp;quot;ghi&amp;quot;,&amp;nbsp;&amp;quot;jkl&amp;quot;,&amp;nbsp;&amp;quot;mno&amp;quot;,&amp;nbsp;&amp;quot;pqr&amp;quot;,&amp;nbsp;&amp;quot;st&amp;quot;,&amp;nbsp;&amp;quot;uv&amp;quot;,&amp;nbsp;&amp;quot;wx&amp;quot;,&amp;nbsp;&amp;quot;yz&amp;quot;]
result&amp;nbsp;=&amp;nbsp;[]


#&amp;nbsp;算法入口
def&amp;nbsp;getResult():
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;回溯算法求组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dfs(0,&amp;nbsp;[])
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;拼接结果字符串
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;&amp;quot;,&amp;quot;.join(result)&amp;nbsp;+&amp;nbsp;&amp;quot;,&amp;quot;


def&amp;nbsp;dfs(level,&amp;nbsp;path):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;&amp;quot;&amp;quot;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;回溯算法求组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;:param&amp;nbsp;level:&amp;nbsp;组合的层级
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;:param&amp;nbsp;path:&amp;nbsp;记录组合字符串
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;quot;&amp;quot;&amp;quot;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;level&amp;nbsp;==&amp;nbsp;len(numsStr):&amp;nbsp;&amp;nbsp;#&amp;nbsp;组合层数到达要求时&amp;amp;#xff0c;当前组合字符串完成
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;pathSet&amp;nbsp;=&amp;nbsp;set(path)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for&amp;nbsp;c&amp;nbsp;in&amp;nbsp;filterStr:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;c&amp;nbsp;not&amp;nbsp;in&amp;nbsp;pathSet:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;result.append(&amp;quot;&amp;quot;.join(path))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;当前层级的数字
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;num&amp;nbsp;=&amp;nbsp;ord(numsStr[level])&amp;nbsp;-&amp;nbsp;ord(&amp;#39;0&amp;#39;)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;该数字关联的多个字母
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;letters&amp;nbsp;=&amp;nbsp;dic[num]

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;遍历当前层级可选的字母
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for&amp;nbsp;letter&amp;nbsp;in&amp;nbsp;letters:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;选择字母加入当前组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path.append(letter)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;继续组合下一个层级的字母选择
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dfs(level&amp;nbsp;+&amp;nbsp;1,&amp;nbsp;path)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path.pop()


#&amp;nbsp;算法调用
print(getResult())&lt;/pre&gt; &lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h4&gt;C算法源码&lt;/h4&gt;&lt;pre&gt;#include&amp;nbsp;&amp;lt;stdio.h&amp;gt;
#include&amp;nbsp;&amp;lt;string.h&amp;gt;

#define&amp;nbsp;MAX_SIZE&amp;nbsp;6

char&amp;nbsp;nums[MAX_SIZE];
char&amp;nbsp;filter[MAX_SIZE];

char&amp;nbsp;*map[]&amp;nbsp;=&amp;nbsp;{&amp;quot;abc&amp;quot;,&amp;nbsp;&amp;quot;def&amp;quot;,&amp;nbsp;&amp;quot;ghi&amp;quot;,&amp;nbsp;&amp;quot;jkl&amp;quot;,&amp;nbsp;&amp;quot;mno&amp;quot;,&amp;nbsp;&amp;quot;pqr&amp;quot;,&amp;nbsp;&amp;quot;st&amp;quot;,&amp;nbsp;&amp;quot;uv&amp;quot;,&amp;nbsp;&amp;quot;wx&amp;quot;,&amp;nbsp;&amp;quot;yz&amp;quot;};

void&amp;nbsp;dfs(int&amp;nbsp;level,&amp;nbsp;char&amp;nbsp;path[],&amp;nbsp;int&amp;nbsp;path_size)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;组合层数到达要求时&amp;amp;#xff0c;当前组合字符串完成
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;(nums[level]&amp;nbsp;==&amp;nbsp;&amp;#39;\0&amp;#39;)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;int&amp;nbsp;i&amp;nbsp;=&amp;nbsp;0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;while&amp;nbsp;(filter[i]&amp;nbsp;!=&amp;nbsp;&amp;#39;\0&amp;#39;)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;(strchr(path,&amp;nbsp;filter[i])&amp;nbsp;==&amp;nbsp;NULL)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;printf(&amp;quot;%s,&amp;quot;,&amp;nbsp;path);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;i++;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;当前层级的数字
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;int&amp;nbsp;num&amp;nbsp;=&amp;nbsp;nums[level]&amp;nbsp;-&amp;nbsp;&amp;#39;0&amp;#39;;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;该数字关联的多个字母
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;char&amp;nbsp;*letters&amp;nbsp;=&amp;nbsp;map[num];

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;遍历当前层级可选的字母
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;int&amp;nbsp;i&amp;nbsp;=&amp;nbsp;0;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;while&amp;nbsp;(letters[i]&amp;nbsp;!=&amp;nbsp;&amp;#39;\0&amp;#39;)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;选择字母加入当前组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path[path_size++]&amp;nbsp;=&amp;nbsp;letters[i];
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;继续组合下一个层级的字母选择
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dfs(level&amp;nbsp;+&amp;nbsp;1,&amp;nbsp;path,&amp;nbsp;path_size);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;path_size--;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;i++;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}
}

int&amp;nbsp;main()&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;gets(nums);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;gets(filter);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;char&amp;nbsp;path[MAX_SIZE]&amp;nbsp;=&amp;nbsp;{&amp;#39;\0&amp;#39;};

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//&amp;nbsp;回溯算法求组合
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;dfs(0,&amp;nbsp;path,&amp;nbsp;0);

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return&amp;nbsp;0;
}&lt;/pre&gt; &lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;div id=&quot;treeSkill&quot;&gt;&lt;/div&gt;&lt;div id=&quot;blogExtensionBox&quot; style=&quot;width:400px;margin:auto;margin-top:12px&quot; class=&quot;blog-extension-box&quot;&gt;&lt;/div&gt;&lt;script&gt;$(function() {
    setTimeout(function () {
      var mathcodeList = document.querySelectorAll('.htmledit_views img.mathcode');
      if (mathcodeList.length &gt;0) {
        for (let i = 0; i &lt; mathcodeList.length; i++) {
          if (mathcodeList[i].naturalWidth === 0 || mathcodeList[i].naturalHeight === 0) {
            var alt = mathcodeList[i].alt;
            alt = '\\(' + alt + '\\)';
            var curSpan = $('&lt;span class=&quot;img-codecogs&quot;&gt;&lt;/span&gt;');
            curSpan.text(alt);
            $(mathcodeList[i]).before(curSpan);
            $(mathcodeList[i]).remove();
          }
        }
        MathJax.Hub.Queue([&quot;Typeset&quot;,MathJax.Hub]);
      }
    }, 1000)
  });&lt;/script&gt;&lt;/div&gt;&lt;/main&gt;&lt;/div&gt;&lt;/div&gt;</description><pubDate>Wed, 17 Jul 2024 10:15:31 +0800</pubDate></item><item><title>黄昏</title><link>https://bk.jimo.fun/?id=32</link><description>&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/12/202212171671258475537504.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 宋体;&quot;&gt;微微妙妙似俏人，&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;line-height: 107%; font-family: 宋体; font-size: 16px;&quot;&gt;星星点点万家火。&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/12/202212171671258576846612.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 宋体; font-size: 16px;&quot;&gt;游人升起一轮月，&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 宋体; font-size: 16px;&quot;&gt;退下夕阳去歇脚。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/12/202212171671258624180473.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 宋体;&quot;&gt;暗暗淡淡染天界，&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-family: 宋体; font-size: 16px;&quot;&gt;火火红红烤路遥。&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/12/202212171671258649103622.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sat, 17 Dec 2022 14:27:47 +0800</pubDate></item><item><title>汤</title><link>https://bk.jimo.fun/?id=31</link><description>&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/12/202212171671255731165835.jpg&quot; alt=&quot;d4ac4657206e5ec7ff598e9244b884c.jpg&quot;/&gt;&lt;/p&gt;</description><pubDate>Sat, 17 Dec 2022 13:39:39 +0800</pubDate></item><item><title>计组</title><link>https://bk.jimo.fun/?id=30</link><description>&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220829085831.png&quot; alt=&quot;image-20220829085831475&quot;&gt;&lt;/p&gt;
&lt;h1&gt;课程大纲&lt;/h1&gt;
&lt;p&gt;本课程的重点在于计算机内部的主要部件以及各部件之间的联系，主要内容包括：冯·诺依曼计算机结构的要点，计算机执行指令的工作过程，当前流行的指令系统的分析对比，高级语言、汇编语言和机器语言之间的关系，计算机采用的主要算术和逻辑运算方法及其实现，微处理器、存储系统和输入输出系统的基本原理和关键技术等。本课程强调计算机软件和硬件的衔接互动，注重基于真实系统分析基本概念，是计算机及相关专业本科生了解和掌握计算机系统整体框架的基础性课程。&lt;/p&gt;
&lt;h1&gt;第一讲  计算机基本结构&lt;/h1&gt;
&lt;p&gt;内容要点：冯·诺伊曼结构，计算机执行指令的过程&lt;/p&gt;
&lt;h2&gt;计算机工作原理及层次结构分析&lt;/h2&gt;
&lt;h3&gt;存储程序式计算机（冯.诺伊曼结构计算机）工作原理&lt;/h3&gt;
&lt;p&gt;冯.诺伊曼结构计算机的主要特点&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;p&gt;两个重要思想（存储程序，程序控制）&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;实现&lt;strong&gt;&quot;存储程序&quot;&lt;/strong&gt;概念 大幅提升任务效率(不是开关连线)&lt;/li&gt;
&lt;li&gt;指令和数据采用&lt;strong&gt;二进制&lt;/strong&gt;，&lt;strong&gt;不加区分的存放在存储器&lt;/strong&gt;，极大简化了逻辑线路（不是十进制）&lt;/li&gt;

&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;由五个基本部分组成&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;运算器，控制器 ，存储器&lt;/li&gt;
&lt;li&gt;输出设备，输入设备&lt;/li&gt;

&lt;/ul&gt;&lt;/li&gt;

&lt;/ul&gt;&lt;h3&gt;计算机的组成（软件+硬件）&lt;/h3&gt;
&lt;h4&gt;硬件系统&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905173328.png&quot; alt=&quot;image-20220905173328629&quot; style=&quot;zoom: 33%;&quot;&gt;&lt;/p&gt;
&lt;h5&gt;运算器&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905173432.png&quot; alt=&quot;image-20220905173432142&quot; style=&quot;zoom: 33%;&quot;&gt;&lt;/p&gt;
&lt;h5&gt;控制器&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905173550.png&quot; alt=&quot;image-20220905173550733&quot; style=&quot;zoom: 33%;&quot;&gt;&lt;/p&gt;
&lt;h5&gt;存储器&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905173647.png&quot; alt=&quot;image-20220905173647012&quot; style=&quot;zoom: 33%;&quot;&gt;&lt;/p&gt;
&lt;h5&gt;输入输出设备&lt;/h5&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905173728.png&quot; alt=&quot;image-20220905173728292&quot; style=&quot;zoom:33%;&quot;&gt;&lt;/p&gt;
&lt;h4&gt;软件系统&lt;/h4&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905173802.png&quot; alt=&quot;image-20220905173802226&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905173824.png&quot; alt=&quot;image-20220905173824129&quot; style=&quot;zoom: 33%;&quot;&gt;&lt;/p&gt;
&lt;h3&gt;计算机的层次结构&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905173921.png&quot; alt=&quot;image-20220905173921597&quot; style=&quot;zoom:67%;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;透明性概念:&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;	本来存在的事物或者属性从某个角度去看却好像不存在；(不用去理解原理)&lt;/p&gt;
&lt;p&gt;	比如硬件的特性对C语言程序设计者具有透明性&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;系统观：&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;	当硬件结构发生变化时要想到对软件产生的影响：&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905174319.png&quot; alt=&quot;image-20220905174319007&quot; style=&quot;zoom: 33%;&quot;&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;计算机性能评价&lt;/h2&gt;
&lt;h3&gt;非时间指标&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;&lt;p&gt;机器字长&lt;/p&gt;
&lt;p&gt;指机器一次能处理的二进制位数&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905194911.png&quot; alt=&quot;image-20220905194911285&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;总线宽度&lt;/p&gt;
&lt;p&gt;数据总线一次能并行传送的最大信息的位数&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905195020.png&quot; alt=&quot;image-20220905195020378&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;主存容量与存储宽带&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905195150.png&quot; alt=&quot;image-20220905195150559&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;/li&gt;

&lt;/ul&gt;&lt;h3&gt;时间指标&lt;/h3&gt;
&lt;ul&gt;&lt;li&gt;&lt;p&gt;主频f /时钟周期T ，外频，倍频&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905195319.png&quot; alt=&quot;image-20220905195319320&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905195402.png&quot; alt=&quot;image-20220905195402777&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;CPI&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905195503.png&quot; alt=&quot;image-20220905195503310&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905195558.png&quot; alt=&quot;image-20220905195558526&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;MIPS&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905195721.png&quot; alt=&quot;image-20220905195721860&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905200041.png&quot; alt=&quot;image-20220905200041541&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;&lt;p&gt;CPU时间&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905200144.png&quot; alt=&quot;image-20220905200144335&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;/li&gt;

&lt;/ul&gt;&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905200202.png&quot; alt=&quot;image-20220905200201974&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905200229.png&quot; alt=&quot;image-20220905200229355&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905200243.png&quot; alt=&quot;image-20220905200243543&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905200254.png&quot; alt=&quot;image-20220905200254653&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h2&gt;计算机性能测试&lt;/h2&gt;
&lt;h3&gt;CPU测试&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905201356.png&quot; alt=&quot;image-20220905201356192&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;h3&gt;显卡测试&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905201416.png&quot; alt=&quot;image-20220905201416763&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h3&gt;硬盘测试&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905201441.png&quot; alt=&quot;image-20220905201441534&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;h3&gt;内存测试&lt;/h3&gt;
&lt;p&gt;&lt;img src=&quot;https://gitee.com/ajiemo/gic/raw/computer/20220905201507.png&quot; alt=&quot;image-20220905201507081&quot; style=&quot;zoom:50%;&quot;&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;h1&gt;第二讲  指令系统体系结构&lt;/h1&gt;
&lt;p&gt;内容要点：x86 ISA，MIPS ISA&lt;/p&gt;
&lt;h1&gt;第三讲  算术逻辑单元&lt;/h1&gt;
&lt;p&gt;内容要点：逻辑运算，二进制加减法运算，ALU的实现&lt;/p&gt;
&lt;h1&gt;第四讲  乘法器和除法器&lt;/h1&gt;
&lt;p&gt;内容要点：乘法运算，乘法器的实现，除法运算，除法器的实现&lt;/p&gt;
&lt;h1&gt;第五讲 单周期处理器&lt;/h1&gt;
&lt;p&gt;内容要点：控制器，数据通路&lt;/p&gt;
&lt;h1&gt;第六讲  流水线处理器&lt;/h1&gt;
&lt;p&gt;内容要点：流水线，相关和冒险&lt;/p&gt;
&lt;h1&gt;第七讲  存储层次结构&lt;/h1&gt;
&lt;p&gt;内容要点：高速缓存，主存&lt;/p&gt;
&lt;h1&gt;第八讲  中断与异常&lt;/h1&gt;
&lt;p&gt;内容要点：中断与异常的异同，中断处理的过程&lt;/p&gt;
&lt;h1&gt;第九讲  输入输出设备&lt;/h1&gt;
&lt;p&gt;内容要点：基本的输入输出控制方式，常用的输入输出设备类型&lt;/p&gt;</description><pubDate>Sun, 27 Nov 2022 19:41:52 +0800</pubDate></item><item><title>秀一个Python画图</title><link>https://bk.jimo.fun/?id=29</link><description>&lt;p&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;对于详细的&lt;span style=&quot;font-size: 20px; color: #FF0000;&quot;&gt;Python简单运行操作&lt;/span&gt;，建议您关注公众号&amp;quot;&lt;span style=&quot;font-size: 20px; color: #FFC000;&quot;&gt;己墨日志&lt;/span&gt;&amp;quot;去看有&lt;span style=&quot;font-size: 20px; color: #0070C0;&quot;&gt;关于python画图的文章&lt;/span&gt;，会&lt;span style=&quot;font-size: 20px; color: #00B050;&quot;&gt;手把手教你把这个动图运行起来&lt;/span&gt;的！&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3&gt;No.1&lt;/h3&gt;&lt;h6&gt;效果&lt;/h6&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669467392157109.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;h6&gt;源代码&lt;/h6&gt;&lt;pre class=&quot;prism-highlight prism-language-python&quot;&gt;import&amp;nbsp;turtle
import&amp;nbsp;math
turtle.pen()
t=turtle
t.up()
t.goto(0,150)
t.down()
t.color(&amp;#39;red&amp;#39;)
t.begin_fill()
t.fillcolor(&amp;#39;red&amp;#39;)
t.speed(1)
t.left(45)
t.forward(150)
t.right(45)
t.forward(100)
t.right(45)
t.forward(100)
t.right(45)
t.forward(100)
t.right(45)
t.forward(250+math.sqrt(2)*100)
t.right&amp;nbsp;(90)
t.speed(2)
t.forward(250+100*math.sqrt(2))
t.right(45)
t.forward(100)
t.right(45)
t.forward(100)
t.right(45)
t.forward(100)
t.right(45)
t.forward(150)
t.end_fill()
t.goto(-10,0)
t.pencolor(&amp;#39;white&amp;#39;)
#L
t.pensize(10)
t.goto(-50,0)
t.goto(-50,80)
t.up&amp;nbsp;()
#I
t.goto(-100,0)
t.down()
t.goto(-160,0)
t.goto(-130,0)
t.goto(-130,80)
t.goto(-160,80)
t.goto(-100,80)
t.up()
#O
t.goto(10,25)
t.down()
t.right(45)
t.circle(25,extent=180)
t.goto(60,55)
t.circle(25,extent=180)
t.goto(10,25)
t.up()
t.goto(75,80)
t.down()
t.goto(100,0)
t.goto(125,80)
t.up()
t.goto(180,80)
t.down()
t.goto(140,80)
t.goto(140,0)
t.goto(180,0)
t.up()
t.goto(180,40)
t.down()
t.goto(140,40)
#U
t.up()
t.goto(-40,-30)
t.down()
t.goto(-40,-80)
t.circle(40,extent=180)
t.goto(40,-30)
t.hideturtle()&lt;/pre&gt;&lt;h3&gt;No.2&lt;/h3&gt;&lt;h6&gt;效果&lt;/h6&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669467434368370.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;h6&gt;源代码&lt;/h6&gt;&lt;pre class=&quot;prism-highlight prism-language-python&quot;&gt;#!/usr/bin/env&amp;nbsp;python
#&amp;nbsp;coding:&amp;nbsp;utf-8

#绘制玫瑰花并添加文字
import&amp;nbsp;turtle&amp;nbsp;
#&amp;nbsp;设置画布大小
#&amp;nbsp;turtle.screensize(canvwidth=None,&amp;nbsp;canvheight=None,&amp;nbsp;bg=None)
turtle.setup(width=0.6,&amp;nbsp;height=0.6)
#&amp;nbsp;设置初始位置
turtle.penup()
turtle.left(90)
turtle.fd(200)
turtle.pendown()
turtle.right(90)
&amp;nbsp;
#&amp;nbsp;输出文字
printer&amp;nbsp;=&amp;nbsp;turtle.Turtle()
printer.hideturtle()
printer.penup()
printer.back(200)
printer.write(&amp;quot;赠给亲爱的&amp;nbsp;QQ\n\n&amp;quot;,&amp;nbsp;align=&amp;quot;right&amp;quot;,&amp;nbsp;font=(&amp;quot;楷体&amp;quot;,&amp;nbsp;16,&amp;nbsp;&amp;quot;bold&amp;quot;))
printer.write(&amp;quot;from&amp;nbsp;XXX&amp;quot;,&amp;nbsp;align=&amp;quot;center&amp;quot;,&amp;nbsp;font=(&amp;quot;楷体&amp;quot;,&amp;nbsp;12,&amp;nbsp;&amp;quot;normal&amp;quot;))
&amp;nbsp;
#&amp;nbsp;花蕊
turtle.fillcolor(&amp;quot;red&amp;quot;)
turtle.begin_fill()
turtle.circle(10,&amp;nbsp;180)
turtle.circle(25,&amp;nbsp;110)
turtle.left(50)
turtle.circle(60,&amp;nbsp;45)
turtle.circle(20,&amp;nbsp;170)
turtle.right(24)
turtle.fd(30)
turtle.left(10)
turtle.circle(30,&amp;nbsp;110)
turtle.fd(20)
turtle.left(40)
turtle.circle(90,&amp;nbsp;70)
turtle.circle(30,&amp;nbsp;150)
turtle.right(30)
turtle.fd(15)
turtle.circle(80,&amp;nbsp;90)
turtle.left(15)
turtle.fd(45)
turtle.right(165)
turtle.fd(20)
turtle.left(155)
turtle.circle(150,&amp;nbsp;80)
turtle.left(50)
turtle.circle(150,&amp;nbsp;90)
turtle.end_fill()
&amp;nbsp;
#&amp;nbsp;花瓣1
turtle.left(150)
turtle.circle(-90,&amp;nbsp;70)
turtle.left(20)
turtle.circle(75,&amp;nbsp;105)
turtle.setheading(60)
turtle.circle(80,&amp;nbsp;98)
turtle.circle(-90,&amp;nbsp;40)
&amp;nbsp;
#&amp;nbsp;花瓣2
turtle.left(180)
turtle.circle(90,&amp;nbsp;40)
turtle.circle(-80,&amp;nbsp;98)
turtle.setheading(-83)
&amp;nbsp;
#&amp;nbsp;叶子1
turtle.fd(30)
turtle.left(90)
turtle.fd(25)
turtle.left(45)
turtle.fillcolor(&amp;quot;green&amp;quot;)
turtle.begin_fill()
turtle.circle(-80,&amp;nbsp;90)
turtle.right(90)
turtle.circle(-80,&amp;nbsp;90)
turtle.end_fill()
turtle.right(135)
turtle.fd(60)
turtle.left(180)
turtle.fd(85)
turtle.left(90)
turtle.fd(80)
&amp;nbsp;
#&amp;nbsp;叶子2
turtle.right(90)
turtle.right(45)
turtle.fillcolor(&amp;quot;green&amp;quot;)
turtle.begin_fill()
turtle.circle(80,&amp;nbsp;90)
turtle.left(90)
turtle.circle(80,&amp;nbsp;90)
turtle.end_fill()
turtle.left(135)
turtle.fd(60)
turtle.left(180)
turtle.fd(60)
turtle.right(90)
turtle.circle(200,&amp;nbsp;60)
&amp;nbsp;
turtle.done()&lt;/pre&gt;&lt;h3&gt;No.3&lt;/h3&gt;&lt;h6&gt;效果&lt;/h6&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669467541864324.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;h6&gt;源代码&lt;/h6&gt;&lt;pre class=&quot;prism-highlight prism-language-python&quot;&gt;import&amp;nbsp;turtle
import&amp;nbsp;random

def&amp;nbsp;love(x,&amp;nbsp;y):&amp;nbsp;&amp;nbsp;#&amp;nbsp;在(x,y)处画爱心lalala
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv&amp;nbsp;=&amp;nbsp;turtle.Turtle()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.hideturtle()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.up()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.goto(x,&amp;nbsp;y)&amp;nbsp;&amp;nbsp;#&amp;nbsp;定位到(x,y)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;def&amp;nbsp;curvemove():&amp;nbsp;&amp;nbsp;#&amp;nbsp;画圆弧
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;for&amp;nbsp;i&amp;nbsp;in&amp;nbsp;range(20):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.right(10)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.forward(2)

&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.color(&amp;#39;red&amp;#39;,&amp;nbsp;&amp;#39;pink&amp;#39;)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.speed(10000000)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.pensize(1)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;开始画爱心lalala
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.down()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.begin_fill()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.left(140)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.forward(22)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;curvemove()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.left(120)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;curvemove()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.forward(22)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.write(&amp;quot;YZ&amp;quot;,&amp;nbsp;font=(&amp;quot;Arial&amp;quot;,&amp;nbsp;12,&amp;nbsp;&amp;quot;normal&amp;quot;),&amp;nbsp;align=&amp;quot;center&amp;quot;)&amp;nbsp;&amp;nbsp;#&amp;nbsp;写上表白的人的名字
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.left(140)&amp;nbsp;&amp;nbsp;#&amp;nbsp;画完复位
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lv.end_fill()


def&amp;nbsp;tree(branchLen,&amp;nbsp;t):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;branchLen&amp;nbsp;&amp;gt;&amp;nbsp;5:&amp;nbsp;&amp;nbsp;#&amp;nbsp;剩余树枝太少要结束递归
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;branchLen&amp;nbsp;&amp;lt;&amp;nbsp;20:&amp;nbsp;&amp;nbsp;#&amp;nbsp;如果树枝剩余长度较短则变绿
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.color(&amp;quot;green&amp;quot;)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.pensize(random.uniform((branchLen&amp;nbsp;+&amp;nbsp;5)&amp;nbsp;/&amp;nbsp;4&amp;nbsp;-&amp;nbsp;2,&amp;nbsp;(branchLen&amp;nbsp;+&amp;nbsp;6)&amp;nbsp;/&amp;nbsp;4&amp;nbsp;+&amp;nbsp;5))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.down()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.forward(branchLen)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;love(t.xcor(),&amp;nbsp;t.ycor())&amp;nbsp;&amp;nbsp;#&amp;nbsp;传输现在turtle的坐标
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.up()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.backward(branchLen)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.color(&amp;quot;brown&amp;quot;)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.pensize(random.uniform((branchLen&amp;nbsp;+&amp;nbsp;5)&amp;nbsp;/&amp;nbsp;4&amp;nbsp;-&amp;nbsp;2,&amp;nbsp;(branchLen&amp;nbsp;+&amp;nbsp;6)&amp;nbsp;/&amp;nbsp;4&amp;nbsp;+&amp;nbsp;5))
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.down()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.forward(branchLen)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#&amp;nbsp;以下递归
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ang&amp;nbsp;=&amp;nbsp;random.uniform(15,&amp;nbsp;45)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.right(ang)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tree(branchLen&amp;nbsp;-&amp;nbsp;random.uniform(12,&amp;nbsp;16),&amp;nbsp;t)&amp;nbsp;&amp;nbsp;#&amp;nbsp;随机决定减小长度
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.left(2&amp;nbsp;*&amp;nbsp;ang)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tree(branchLen&amp;nbsp;-&amp;nbsp;random.uniform(12,&amp;nbsp;16),&amp;nbsp;t)&amp;nbsp;&amp;nbsp;#&amp;nbsp;随机决定减小长度
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.right(ang)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.up()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;t.backward(branchLen)

myWin&amp;nbsp;=&amp;nbsp;turtle.Screen()
t&amp;nbsp;=&amp;nbsp;turtle.Turtle()
t.hideturtle()
t.speed(1000)
t.left(90)
t.up()
t.backward(200)
t.down()
t.color(&amp;quot;brown&amp;quot;)
t.pensize(32)
t.forward(60)
tree(100,&amp;nbsp;t)
myWin.exitonclick()&lt;/pre&gt;&lt;h3&gt;No.4&lt;/h3&gt;&lt;h6&gt;效果&lt;/h6&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669467590542916.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;h6&gt;源代码&lt;/h6&gt;&lt;pre class=&quot;prism-highlight prism-language-python&quot;&gt;#&amp;nbsp;-*-&amp;nbsp;coding:&amp;nbsp;utf-8&amp;nbsp;-*-
#&amp;nbsp;@Time&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;:&amp;nbsp;18-12-26&amp;nbsp;上午9:32
#&amp;nbsp;@Author&amp;nbsp;&amp;nbsp;:&amp;nbsp;Felix&amp;nbsp;Wang

import&amp;nbsp;turtle


#&amp;nbsp;定义圣诞树的绿叶函数
def&amp;nbsp;tree(d,&amp;nbsp;s):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if&amp;nbsp;d&amp;nbsp;&amp;lt;=&amp;nbsp;0:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.forward(s)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tree(d&amp;nbsp;-&amp;nbsp;1,&amp;nbsp;s&amp;nbsp;*&amp;nbsp;.8)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.right(120)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tree(d&amp;nbsp;-&amp;nbsp;3,&amp;nbsp;s&amp;nbsp;*&amp;nbsp;.5)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.right(120)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;tree(d&amp;nbsp;-&amp;nbsp;3,&amp;nbsp;s&amp;nbsp;*&amp;nbsp;.5)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.right(120)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.backward(s)


n&amp;nbsp;=&amp;nbsp;100
&amp;quot;&amp;quot;&amp;quot;&amp;nbsp;设置绘图速度
&amp;#39;fastest&amp;#39;&amp;nbsp;:&amp;nbsp;&amp;nbsp;0
&amp;#39;fast&amp;#39;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;:&amp;nbsp;&amp;nbsp;10
&amp;#39;normal&amp;#39;&amp;nbsp;&amp;nbsp;:&amp;nbsp;&amp;nbsp;6
&amp;#39;slow&amp;#39;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;:&amp;nbsp;&amp;nbsp;3
&amp;#39;slowest&amp;#39;&amp;nbsp;:&amp;nbsp;&amp;nbsp;1
&amp;quot;&amp;quot;&amp;quot;
turtle.speed(&amp;#39;fastest&amp;#39;)&amp;nbsp;#&amp;nbsp;设置速度

turtle.left(90)
turtle.forward(3&amp;nbsp;*&amp;nbsp;n)
turtle.color(&amp;quot;orange&amp;quot;,&amp;nbsp;&amp;quot;yellow&amp;quot;)
turtle.left(126)


#&amp;nbsp;turtle.begin_fill()
for&amp;nbsp;i&amp;nbsp;in&amp;nbsp;range(5):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.forward(n&amp;nbsp;/&amp;nbsp;5)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.right(144)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.forward(n&amp;nbsp;/&amp;nbsp;5)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.left(72)
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;turtle.end_fill()
turtle.right(126)
turtle.color(&amp;quot;dark&amp;nbsp;green&amp;quot;)
turtle.backward(n&amp;nbsp;*&amp;nbsp;4.8)

#&amp;nbsp;执行函数
tree(15,&amp;nbsp;n)
turtle.backward(n&amp;nbsp;/&amp;nbsp;5)&lt;/pre&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sat, 26 Nov 2022 20:54:34 +0800</pubDate></item><item><title>传感器与检测技术-复习</title><link>https://bk.jimo.fun/?id=21</link><description>&lt;div class=&quot;lake-content&quot; typography=&quot;classic&quot;&gt;&lt;h2 id=&quot;TeY5l&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第一章、概述&lt;/span&gt;&lt;/h2&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u9a9324a4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt; 1.1 什么是传感器？&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uaac97b7d&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：传感器是能够感受规定的被测量并按照一定规律转换成可用输出信号的器件或装置，通常由&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;敏感元件&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;和&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;转换元件&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;组成。 &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uf489a63b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;1.2 传感器的共性是什么？&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u65e30ab7&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：传感器的共性就是&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;利用物理定律和物质的物理、化学或生物特性&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，将&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;非电量&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;（如位 移、速度、加速度、力等）&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;输入转换成电量&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;（电压、电流、电容、电阻等）&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;输出&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。 &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uf333b614&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;1.3 传感器一般由哪几部分组成？&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u3b81c285&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：传感器的基本组成分为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;敏感元件和转换元件&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。此外，一般还包括信号&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;调理电路、辅助电源&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;等。 &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4fe950e3&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;1.4 传感器是如何进行分类的？&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u5be79fb2&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：①按&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;输入量分&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，包括位&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;移传感器&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;速度&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;传感器、&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;温度&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;传感器、&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;压力&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;传感器等；②按&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;输出量分&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，有&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;模拟式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;传感器和&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;数字式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;传感器；③按&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;工作原理分&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，有&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;应变式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;电容式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;电感式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、 &lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;压电式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;热电式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;传感器等；④按&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;基本效应分&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，可分为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;物理型、化学型和生物型&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;三种传感器； ⑤&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;按构成分&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，分为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;物性型和结构型&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;；⑥按&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;能量变换关系分&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，可分为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;能量变换型和能量控制型&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;传感器。⑦按&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;技术特征分&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，分为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;普通传感器和新型传感器&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。 &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u98fea5fe&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;1.5 传感器技术的发展趋势有哪些？&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uf4d62ffe&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：总体上说，传感器技术的发展趋势表现为六个方面：一是提高与改善传感器的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;技术性能&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;；二是开展基础研究，寻找&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;新原理、新材料、新工艺或新功能&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;等；三是传感器的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;集成化&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;； 四是传感器的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;智能化&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;；五是传感器的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;网络化&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;；六是传感器的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;微型化&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。 &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uc4874479&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;1.6 改善传感器性能的技术途径有哪些？&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt; &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u88bc7152&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：①&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;差动&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;技术；②&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;平均&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;技术；③&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;补偿与修正&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;技术；④&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;屏蔽、隔离&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;与&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;干扰&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;抑制；⑤&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;稳定&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;性处理。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;ue8a315a1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;h2 id=&quot;zDWSN&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第二章、传感器的基本特征&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u927f1cc9&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.1传感器静态特性&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u68e6d1dd&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;线性度&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;:是指传感器&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;输出与输入间成线性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;关系的程度。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4ee945ae&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;灵敏度&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;：是传感器 在稳态下&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;输出量变化对输入量变化的比值&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。通常用S&lt;/span&gt;&lt;sub&gt;&lt;span class=&quot;ne-text&quot;&gt;n&lt;/span&gt;&lt;/sub&gt;&lt;span class=&quot;ne-text&quot;&gt;或K表示，S&lt;/span&gt;&lt;sub&gt;&lt;span class=&quot;ne-text&quot;&gt;n&lt;/span&gt;&lt;/sub&gt;&lt;span class=&quot;ne-text&quot;&gt;=d&lt;/span&gt;&lt;sub&gt;&lt;span class=&quot;ne-text&quot;&gt;y&lt;/span&gt;&lt;/sub&gt;&lt;span class=&quot;ne-text&quot;&gt;/d&lt;/span&gt;&lt;sub&gt;&lt;span class=&quot;ne-text&quot;&gt;x&lt;/span&gt;&lt;/sub&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u5ad823d1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;分辨力&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：是指传感器能够感知或检测到的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;最小输入信号增量&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，反映传感器能够分辨为测量微小变化的能力。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ua39ea285&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;阈值&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：是能使传感器输出端产生&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;可测变化量的最小被测输入量值&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，即零位附近的分辨率。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u9ef18224&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;迟滞&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：也称&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;回程误差&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，是在相同测量条件下，对应与同一大小的输入信号传感器，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;正反行程的输出信号大小不相等&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;的现象。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ud5fbea56&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;重复性&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：表示传感器在输入量按&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;同一方向做全量程&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，多次测量时所得&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;输入-输出特性曲线一致的程度&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u3a07b9d9&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;漂移&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：是指传感器在&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;输入量不变的&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;情况下，输出量&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;随时间或温度等变化的现象&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。漂移与被测输入量物管，将影响传感器的稳定性或可靠性。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u25635b01&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C29219&quot;&gt;精度&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：也称&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;静态误差是传感器在满量程内任一点的测量&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，输出值相对被测量理论值的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;偏离程度&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uecd71d3a&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ub4817062&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.2数学模型&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ua659ea6f&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;叠加性、频率保持特性&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4c47f295&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;传递函数、幅频特性与相频特性&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u90404a4e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u1132fc5f&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.3传感器的标定与标准&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uf14c9993&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;标定&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：是利用某种标准仪器对新研制或生产的传感器进行技术鉴定和标度。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4f5378ed&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;标准&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：是指对使用或储存一段时间后的传感器性能进行再次测试和校正。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ub5b7b713&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;静态标定的目的是传感器&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;静态特性指标&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。（线性度，灵敏度，分辨率，迟滞，重复性。）&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u50bad408&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;动态标定的目的是确定传感器&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;动态特性参数&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，(频率响应，时间常数，固有频率和阻尼比。)&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u0026effb&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.6&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u566c9f25&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448503826406.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u74e69d9f&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.7&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ufbedb738&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448515295025.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u9ac97b30&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.8&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u306c746f&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448532375759.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u1d5e6b19&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.9&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u821985cd&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448543812675.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;cYLML&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第三章、电阻式传感器&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;ua3ec0eda&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.1工作原理&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u2367c2b7&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;应变、&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u78f06697&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.2测量电路&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u6be3c2ef&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;直流电桥、全桥差动&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u02be2cd9&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.1 应变电阻式传感器的工作原理是什么？ &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u6a8701f8&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：应变式传感器的基本工作原理：当被测物理量作用在弹性元件上，弹性元件在力、力矩或压力等的作用下发生形变，变换成相应的应变或位移，然后传递给与之相连的应变片，将引起应变敏感元件的电阻值发生变化，通过转换电路变成电量输出。输出的电量大小反映 了被测物理量的大小。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u8e5279b1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.5&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4d6d1a0c&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448557287189.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;ub0ebecd2&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.7&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u54acfb24&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448569570691.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;MS0U6&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第四章、电感式传感器&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u2869577a&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;工作原理：&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u9924d482&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;灵敏度：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u774bf379&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt; 4.1 根据工作原理的不同，电感式传感器可分为哪些种类？ &lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;uc8a4bfc6&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：根据工作原理的不同，电感式传感器可分为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;变磁阻式（自感式）&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;变压器式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;和&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;涡流式（互感式）&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;等种类。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ufc561f64&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448585646316.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;ym9gj&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第五章、电容式传感器（大题重点）&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448611382327.png&quot; alt=&quot;image.png&quot; width=&quot;593&quot; height=&quot;212&quot; style=&quot;width: 593px; height: 212px;&quot;/&gt;&lt;/p&gt;&lt;h3 id=&quot;LcY3P&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;课后习题&lt;/span&gt;&lt;/h3&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u0160ddfa&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt; 5.1 根据电容式传感器工作时变换参数的不同，可以将电容式传感器分为哪几种类型？各 有何特点？ &lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u2728d168&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：根据电容式传感器的工作原理，可将其&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;分为 3 种&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：变极板间距的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;变极距型&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、变极板 覆盖面积的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;变面积型&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;和变介质介电常数的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;变介质型&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。 变极板间距型电容式传感器的特点是&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;电容量与极板间距成反比&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，适合测量&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;位移量&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。 变极板覆盖面积型电容传感器的特点是&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;电容量与面积改变量成正比&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，适合测量&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;线位移和角位移&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。 变介质型电容传感器的特点是利用不同介质的介电常数各不相同，通过&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;介质的改变来实现对被测量的检测&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，并通过电容式传感器的电容量的变化反映出来。适合于介质的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;介电常数发生改变的场合&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u8724d57e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448641540047.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;uf2c01f85&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;5.6、&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;右侧为两个串一起再与左侧并联&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u17980bc2&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448651277056.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;uf482137b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;5.7、&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;可直接带入5.6的方程中然后直接计算&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u35196c17&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448665254180.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u88a7b167&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;5.8、&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;直接由线性的关系结论直接计算&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;ua24d2457&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448676796112.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;So3k4&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第六章、压电式传感器（没讲）&lt;/span&gt;&lt;/h2&gt;&lt;h2 id=&quot;b0vHs&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第七章、磁敏式传感器（仅霍尔传感器）&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u2f177b1c&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;霍尔效应&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：当&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;载流导体或半导体&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;处于与&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;电流相垂直的磁场中&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;时，在其两端将&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;产生电位差&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，这一&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u503e7551&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;现象被称为霍尔效应。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ua855f653&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;霍尔传感器的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;线性特性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;与&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;开关特性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u2e6286bf&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt; 7.1 简述变磁通式和恒磁通式磁电感应式传感器的工作原理。 &lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;ufb12517d&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;恒磁通式传感器&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;是指在测量过程中使&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;导体（线圈）位置相对于恒定磁通变化&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;而实现 测量的一类磁&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;电感应式传感器&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。 变磁通式传感器主要是靠&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;改变磁路的磁通大小&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;来进行测量，即通过改变测量&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;磁路中气隙 的大小&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，从而改变磁路的磁阻来实现测量的。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u18cf232b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt; 7.5 什么是霍尔效应？霍尔电势与哪些因素有关？ &lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;ucc4beb76&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：当载流导体或半导体处于与电流相垂直的磁场中时，在其两端将产生电位差，这一 现象被称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;霍尔效应&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。 &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u83b11425&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;霍尔电势&lt;/span&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448688351185.png&quot; alt=&quot;image.png&quot;/&gt;&lt;span class=&quot;ne-text&quot;&gt;霍尔电势与霍尔电场 EH、载流导体或半导体的宽度 b、载流导体或半导体的厚度 d、电子平均运动速度 v、磁场感应强度 B、电流 I 有关。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u88b1ab21&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448697852599.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;FWnaI&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第八章、热电式传感器&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;ua1c36d8b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;热电效应：&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u99bcf0e1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;ufdbf8ec6&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt; 8.1 什么是热电效应、接触电动势、温差电动势？ &lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u6c2a4d5a&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：两种&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;不同的导体两端相互紧密地连接在一起&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，组成一个回路。当两点&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;温度不同时&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;， 回路中就会产生大小和方向与导体材料及两接点的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;温度有关的电动势&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，从而形成电流，这种 现象称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;热电效应&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uc3354bcd&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;由于两种导体自由&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;电子密度不同&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，而在&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;接触处形成的电动势&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;接触电动势&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u168450f4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;将导体分别&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;置于不同的温度场&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，导体两端就会产生一个&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;热端指向冷端&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;得&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;静电场&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，该电场阻止电子从热端继续想冷端转移，并使电子反方向移动，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;最终达到动态平衡状态&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。这样在导体两端产生的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;电位差&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;温差电动势&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u8215dbf5&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt; 8.2 热电偶的工作原理是什么？ &lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u99e7225b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;答：&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;热电偶测温原理&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：热电偶的测温原理&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;基于热电效应&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。所谓热电效应，就是当不同材料的导体组成一个闭合回路时，若两个结点的温度不同，那么在&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;回路中将会产生电动势的现象&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。两点间的温差越大，产生的电动势就越大。引入适当的测量电路测量电动势的大小，就可测得温度的大小。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;IMe7A&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第九章、光电式传感器（没学）&lt;/span&gt;&lt;/h2&gt;&lt;h2 id=&quot;GWDIB&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十章、辐射与波式传感器（没学）&lt;/span&gt;&lt;/h2&gt;&lt;h2 id=&quot;zAuvB&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十一章、化学传感器（没学）&lt;/span&gt;&lt;/h2&gt;&lt;h2 id=&quot;rw48j&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十二章、生物传感器（没学）&lt;/span&gt;&lt;/h2&gt;&lt;h2 id=&quot;aqehX&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十三章、新型传感器（不考）&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;ub1695255&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;智能&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;传感器的&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;特点&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ud6c8b1f9&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;智能传感器的作用&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：提高&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;测量精度&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、增加&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;功能&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、提高&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;自动化程度&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;ubd5de8b1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448707679580.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;agiZz&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十四章、参数检测（没画）&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u10eeb12e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;测量&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：测量就是以确定被检测值为目的的一系列操作，即利用物质的物理的、化学的或生&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u137feaff&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;物的特性，对被测对象的信息进行提取、转换以及处理，获得定性或定量结果的过程。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u65239ef8&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;测量方法的分类&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：直接测量、间接测量、组合测量等&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;ubbd7bfa5&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448715634143.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;upEjo&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十五章、弱信号检测（没学）&lt;/span&gt;&lt;/h2&gt;&lt;h2 id=&quot;gxvvD&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十六章、软测量（没学）&lt;/span&gt;&lt;/h2&gt;&lt;h2 id=&quot;ysr1Y&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十七章、多传感器数据融合（没学）&lt;/span&gt;&lt;/h2&gt;&lt;h2 id=&quot;kQuo8&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第十八章、误差理论与数据处理基础&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u1fc2e6ce&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;量值&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ued056b9e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;量是物体可以从数量上进行确定的一种属性。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uf7b53425&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;由一个数和合适的计量单位表示的量称为量值。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u0e684495&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;真值是指在一定的时间和空间条件下，能够准确反映被测量真实状态的数值。真值分为理论真值和约定真值两种情形。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u107d15d6&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4f17308b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #F3BB2F&quot;&gt;误差来源&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;uf2217bc4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448727398256.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u01affd4b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448741255123.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;u05f29752&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sun, 20 Nov 2022 15:26:33 +0800</pubDate></item><item><title>自动控制原理-复习</title><link>https://bk.jimo.fun/?id=20</link><description>&lt;div class=&quot;lake-content&quot; typography=&quot;classic&quot;&gt;&lt;h2 id=&quot;uFiXE&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第一章&lt;/span&gt;&lt;/h2&gt;&lt;h3 id=&quot;FHR8p&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;1.1自动控制系统概述&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;uc69fcbb4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;自动控制&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;就是在没有人直接操作的情况下，通过控制器使一个装置或过程（统称为被控对象）自动地按照给定的规律运行，使被控变量能按照给定的规律变化。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u147e4ef3&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ufe433b34&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;是指按照某些规律结合在一起的物体（元部件）的组合，它们互相作用、互相依存，并能完成一定的任务。能够实现自动控制的系统就称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;自动控制系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u68daa7c1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ud9a7e433&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;信号由输人端到输出端的传递是单向的，没有形成--个闭环，故称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;开环控制&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。按这种控制方式组成的系统称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;开环控制系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。这类系统的特点是系统的输出量不会对输入量产生任何影响。开环控制系统可以按给定值控制方式组成，也可以是按扰动控制方式组成。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u34455859&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4c33dd5e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;反馈控制&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;是自动控制系统最基本的控制方式，也是应用最广泛的控制方式。反馈控制原理的实质就是利用偏差去控制偏差。从信号的流向来看，反馈控制系统形成了一个闭环，因此，反馈控制也称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;闭环控制&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uf7b17a29&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u1aecde2d&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;由输入到输出的通道称为前向通道，由输出反馈到输入的通道称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;反馈通道&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。（反馈信号的的极性与输入相反&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;负反馈&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，否则为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;正反馈&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;）&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ue0fcdd44&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669441956838261.png&quot; alt=&quot;image.png&quot;/&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;br/&gt;&lt;p id=&quot;u6417e0bb&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(1）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;给定元件:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;给出与期望输出对应的输人量。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ue10e03e3&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(2）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;比较元件:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;求输入量与反馈量的偏差，常采用集成运算放大器（简称集成运放）来实现。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u9dfd4729&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(3）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;放大元件:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;由于偏差信号一般都较小，不足以驱动负载，故需要放大元件，包括电压放大及功率放大。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uda1c089c&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(4）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;执行元件:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;直接推动被控对象，使输出量发生变化。常用的有电动机、调节阀、液压马达等。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u9a7484ed&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(5）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;测量元件:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;检测被控的物理量并转换为所需要的信号。在控制系统中常用的有用于速度检测的测速发电机、光电编码盘等，用于位置与角度检测的旋转变压器、自整机等，用于电流检测的互感器及用于温度检测的热电偶等。这些检测装置一般都将被检测的物理量转换为相应的连续或离散的电压信号。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u40aa2ed8&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(6)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;校正元件:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;也叫补偿元件，是结构与参数便于调整的元件，以串联或反馈的方式联接在系统中，完成所需的运算功能，以改善系统的性能。根据在系统中所处位置不同，两种校正元件分别称为串联校正元件和反馈校正元件。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;h3 id=&quot;QTEiL&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;1.2自动控制系统的类型&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u85fb3a7c&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;自动控制系统的分类方法繁多，主要&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;根据数学模型的差异来划分&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;不同的系统。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4bf2aa85&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(1)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;按信号流向&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;划分:可以将系统分为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;开环控制系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;、&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;闭环控制系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;及&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;复合控制系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4b20cd25&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(2〉&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;按输入信号变化规律&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;划分:可以将系统划分为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;恒值控制&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;系统及&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;随动控制&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;系统。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u2e07079d&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(3）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;线性系统和非线性&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;系统:同时满足&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;叠加性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;与&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;均匀性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;（又称为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;齐次性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;）的系统称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;线性系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。对于线性连续控制系统，可以用线性微分方程来表示。&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;不满足&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;叠加性与均匀性的系统即为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;非线性控制系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。显然，系统中只要有一个元件的特性是非线性的，该系统即为非线性的控制系统。其特性要用非线性微分方程或差分方程来描述。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u29e1bc00&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(4〉&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;定常系统和时变&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;系统:如果系统的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;参数不随时间而变化&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，则称此类系统为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;定常系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;(或称为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;时不变系统)&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;﹔反之，若系统的参数随时间改变，则称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;时变系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ua5ec94e1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(5)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;连续系统和离散系统:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;如果系统中的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;各变量都是连续信号&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，则称该系统为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;连续（时间）系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;;如果在系统的一处或&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;几处存在离散信号&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，则称该系统为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;离散（时间）系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。计算机控制系统和采样控制系统即为典型的离散系统。连续系统常用微分方程来描述，离散系统则采用差分方程来描述。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u092a18e2&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(6)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;单输入单输出系统与多输人多输出系统:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;单输入单输出系统(SISO)也称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;单变量系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，系统的输入量与输出量各为一个。经典控制理论主要研究这一类系统。多输入多输出系统（MIMO)也称为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;多变量系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，系统的输入量与输出量多于一个。现代控制理论适用于这类系统的分析与综合。其数学工具为建立在线性代数基础上的状态空间法，这种方法是在时间域内进行的，而时域分析法对控制过程来说是最直接的。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;uf4a5cd3b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3 id=&quot;xjsaV&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;1.3控制系统性能的基本要求&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u8c3bb184&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;对控制系统性能的基本要求是由控制系统所需完成的任务决定的。从各种具体的要求中可以抽象出对控制系统的一般要求，归结为3个字:&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;稳、快、准&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uf57fbe86&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;稳—&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;稳定性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;是自动控制系统首要考虑的问题&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。如系统输出偏离了预期值，随着时间的推移，偏差应逐渐减小并趋于零，这种系统即为稳定的系统。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u853464f4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;快——&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;过渡过程的快速性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。若过渡过程持续的时间很长，将使系统长时间处于大偏差的情况，会降低系统的工作效率。稳与快反映了系统过渡过程的性能，属于动态性能指标。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u652187da&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;准——&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;准确性，反映系统的稳态性能&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。过渡过程结束后，系统的输出值与期望值的差值称为稳态误差。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u9add16d6&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;整个自动控制原理课程的主要内容分为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;建立数学模型、系统分析和系统综合&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;3个方面。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;h3 id=&quot;Izofu&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;课后习题&lt;/span&gt;&lt;/h3&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;ubcb561cd&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;1-9.判断下列系统是线性定常系统、线性时变系统还是非线性系统?&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ud4540ae4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448801781795.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u28d0e9bf&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;解:(1)非线性定常系统。(2)非线性定常系统。(3）非线性定常系统。(4）线性定常系统。(5)线性定常系统。(6)非线性时变系统。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;CyURY&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第二章&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;uebb2a1df&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;系统的&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;数学模型&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;是描述系统内部各物理量之间动态关系的数学表达式。（可分为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;静态模型&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;与&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;动态模型&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;）&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u3d852a5e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448812386552.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h3 id=&quot;nKZdD&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.1线性系统的时间域数学模型-微分方程&lt;/span&gt;&lt;/h3&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;ub609a54c&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2-1、RLC电路图&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ua20cd271&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;根据基尔霍夫定律列出方程式&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u6a27e932&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669441629427691.png&quot; alt=&quot;image.png&quot;/&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u5c9325a3&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2-3、RC网络&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u9b27d8e4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;微分方程式：&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;ua18fa3bb&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;fxB37&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.3线性系统的复数域数学模型-传递模型&lt;/span&gt;&lt;/h3&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u38bc065f&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;拉式变换、传递函数&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u164d7c52&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669441550892107.png&quot; alt=&quot;image.png&quot; width=&quot;607&quot; height=&quot;334&quot; style=&quot;width: 607px; height: 334px;&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u4b28daea&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt; 由传递函数的定义及自身的特有形式可知，传递函数具有下列&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;基本性质&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;1)传递函数是由&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;微分方程经拉氏变换导出&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;的，而拉氏变换是一种&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;线性积分变换&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，因此传递函数是&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;线性定常系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;的一种&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;动态数学模型&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;2)传递函数只与系统本身的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;结构&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;和&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;参数&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;有关，而与系统输入、输出的具体形式无关。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;3)传递函数是在&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;零初始条件下定义&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;的，即零时刻之前系统是处于&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;相对静止状态&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，外加输入r(t)是在t=0时才开始作用于系统。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;4)传递函数是&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;复变量s的有理真分式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;具有复变函数的所有性质&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。对于实际系统，传递函数分子、分母阶次的关系是&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;n≥m&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，且所有&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;系数均为实数&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。这是因为在物理上可实现的系统中，总是有惯性且能源有限的缘故。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;5)传递函数的描述有一定的局限性，其一是传递函数&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;只能表示一个输入与一个输出之间&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;的关系，即&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;只适合单输入-单输出系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，多输入-多输出系统要用传递函数矩阵表示；其二是只能表示输入和输出的关系，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;不能反映输入变量和中间变量的关系，对系统内部其他变量也无法得知&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ue6527b20&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;分子式多项式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;等于零的根，称为传递函数或系统的&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;零点&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u4823e04a&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;分母式多项式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;等于零的根，称为传递函数或系统的&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;极点&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u5b2de453&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449407751640.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;h3 id=&quot;kORH2&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.4控制系统结构图&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u228e1096&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;比较点前移&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：前移时应在移动的信号通道上增加一个传递函数为1/G(s)的环节&lt;br/&gt;&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;比较点后移&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：后移时应在移动的信号通道上增加一个传递函数为G(s)的环节。&lt;br/&gt;&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;引出点前移&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：前移时应在引出通道上增加一个传递函数为G(s)的环节。&lt;br/&gt;&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;引出点后移&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：后移时应在引出通道上增加一个传递函数为 1/G(s)的环节。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u31dbffb2&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u98558f9b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448920278590.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u8a8ea5d9&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448932444810.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u803db535&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;对一个复杂系统的系统结构图进行简化时，原则上&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;从内回路到外回路逐步化简&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u5b752a52&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;1)先对独立的&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;串联、并联、反馈&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;连接进行简化。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;2)利用&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;等效变换&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;的基本原则，移动&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;比较点或引出点&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，以&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;消除阻路间的交叉&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;连接。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;3)重复1)、2)直到系统结构图简化为一个框或由两个框组成的负反馈连接。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;uaf0e04ac&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;EoeSm&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.5信号流图的组成及性质&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u6c2eda9b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt; 1)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;节点&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：代表系统中的变量，每个节点标志所有流向该节点信号的代数和，而从同一节点流向各支路的信号均用该节点的变量表示。自节点流出的信号不影响该节点变量的值。&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;输入节点&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;也叫&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;源节点&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;,这种节点只有输出支路。&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;输出的节点&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;也叫&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;汇节点&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，这种节点&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;只有输入支路&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;2)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;混合节点&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：既&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;有输入支路又有输出支路的节点&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，称为混合节点。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;3)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;支路&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：连接&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;两个节点的定向线段&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，支路方向就是信号&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;传递的方向&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;用“→”表示&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;4)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;通路&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：从&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;起始节点到终止节点&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，沿支路的箭头方向穿过各相连支路的途径，称为通路；两节点之间的通路并不是唯一的。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;5)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;前向通路&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：信号从输入节点到输出节点传递时，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;每个节点只通过一次的通路&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，叫做前向通路。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;6)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;回路&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;起点和终点在同一节点&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，而且通过&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;每一个节点不多于一次的闭合通路&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;称为回路。回路中各支路增益的乘积就是回路增益。&lt;br/&gt;&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;7)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;不接触回路&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：就是&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;回路之间没有任何公共的节点&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，则称为不接触回路。 &lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;h3 id=&quot;mX3lV&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;课后习题&lt;/span&gt;&lt;/h3&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u167aa8c1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2-3、&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u40e203b1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;传递函数：&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;是指&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;零初始条件&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;下&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;线性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;系统响应（即输出）量的拉普拉斯变换（或z变换）与激励（即输入）量的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;拉普拉斯变换之比&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。记作G（s）=Y（s）/U（s），其中Y（s）、U（s)分别为输出量和输入量的拉普拉斯变换。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ubfc90f15&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;一阶系统&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;的响应是单调的，并没有振荡，系统的惯性小、&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4a129b70&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;二阶系统：&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;二阶线性正反馈系统的行为特征为趋于无穷，但呈两种不同的模式，一种是单调地趋于无穷，另一种是系统行为作增幅振荡。 二阶线性系统与一阶系统相比，最大的不同是它可能产生振荡行为，包括等幅振荡、减幅振荡和增幅振荡三种形式。 &lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u4f950815&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2-4&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u52c5c502&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448972627983.png&quot; alt=&quot;image.png&quot; width=&quot;449&quot; height=&quot;617&quot; style=&quot;width: 449px; height: 617px;&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;ua4354c80&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2-7、2-8、2-11&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u880abb8e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669441524318231.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u626d608f&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449025301239.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;u1c772504&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h2 id=&quot;yYL7t&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第三章、控制系统的时域分析&lt;/span&gt;&lt;/h2&gt;&lt;h3 id=&quot;MiRKE&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.1系统的时域响应及其性能指标&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449040856148.png&quot; alt=&quot;image.png&quot; width=&quot;713&quot; height=&quot;243&quot; style=&quot;width: 713px; height: 243px;&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;uda5c4357&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(1）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;动态过程&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;:系统在典型信号作用下，系统从初始状态到最终状态的过程。根据系统结构和参数的情况，动态过程表现为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;衰减、发散和振荡&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;等几种形式。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u796d15c4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(2）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;稳态过程:&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;系统在典型信号作用下，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;时间t趋于无穷时&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;输出量的表现形式。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u09f36211&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u27a233c8&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;稳态误差：&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;是表征控制系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;准确性的性能指标&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，通常用稳态下输出量的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;期望值与实际值之间的差&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;（即稳态误差）来衡量。控制系统的稳态误差是系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;控制精度的一种度量&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。稳态误差具有&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;不可避免性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449064730093.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u9368c0f0&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u19ec3785&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://cdn.nlark.com/yuque/0/2022/png/26820301/1668847330912-3b72b449-6c91-493d-95ba-5f32c26c51cf.png&quot; width=&quot;683.0054321289062&quot; id=&quot;ub017e36a&quot; class=&quot;ne-image&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u3693747e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;动态性能四个指标：&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u42913544&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449077328694.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;u7a351e26&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;Ki0vK&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.2一阶系统的时域响应&lt;/span&gt;&lt;/h3&gt;&lt;p id=&quot;u21b213c4&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p id=&quot;ue71ff703&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;WEXKW&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.3二阶系统的时域响应&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;ue965f236&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449121325875.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449139679937.png&quot; alt=&quot;image.png&quot; width=&quot;770&quot; height=&quot;435&quot; style=&quot;width: 770px; height: 435px;&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u52105a4c&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;二阶系统的阶跃响应的性能指标：&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;ucd18afc3&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669441488463993.png&quot; alt=&quot;image.png&quot; width=&quot;685&quot; height=&quot;269&quot; style=&quot;width: 685px; height: 269px;&quot;/&gt;&lt;br/&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;udf1748f0&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;MwTZO&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.4高阶系统的时域响应&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u4631b818&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;劳斯稳定判据：&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u6c4c6c15&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449179774652.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u0a850cdf&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(1）&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;系统稳定的充要条件&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;:系统的特征根全部&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;分布在[s]左半平面&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，即全部特征根都具有&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;负实部&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u616f66ef&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(2)&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;系统稳定的必要条件&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;:特征方程的各项&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;系数都为正&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u53ba55fb&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(3〉&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;劳斯稳定判据&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;:首先要根据特征方程的各项系数构造劳斯表。如果&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;劳斯表的第1列元素全都大于零&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，则系统稳定。若劳斯表第&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;1列中出现小于等于零的数值&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;系·统就不稳定&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，且第&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;1列系数&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;符号&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;改变的次数&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;等于特征方程中实部为正数的根的个数。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;uaae95171&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u313a4765&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;特殊情况：&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;零与无穷的处理、全零的处理等等&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;u7025e553&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;nCY11&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;课后练习题&lt;/span&gt;&lt;/h3&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u64401b26&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3-1&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ud75de667&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;由于系统的输出变量一般是时间t的函数，故称这种响应为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #DE9F68&quot;&gt;时域响应&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u62a0c89a&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;时域响应的性能指标&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;稳态误差&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;（四个指标参数：上升时间tr、峰值时间tp、调节时间ts、超调量σ）与&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;静态误差&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;（常数）&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ubb6a7d31&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;实际意义&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：是系统控制精度（准确性）或抗干扰能力的一种度量。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u5018b88a&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3-4&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ub9acf6a3&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;瞬态衰减快慢取决于e&lt;/span&gt;&lt;sup&gt;&lt;span class=&quot;ne-text&quot;&gt;-ζwt根号下（1-ζ的平方）&lt;/span&gt;&lt;/sup&gt;&lt;span class=&quot;ne-text&quot;&gt;当ζ一定时，σ=ζw,成为&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;衰减系数&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u80295b26&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;阻尼比&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;是无单位量纲，表示了&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;结构在受激振后振动的衰减形式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;。可分为等于1，等于0, 大于1，0~1之间4种，阻尼比=0即不考虑阻尼系统，结构常见的阻尼比都在0~1之间。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u40fe8040&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;无阻尼&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;等辐振荡角频率为w&lt;/span&gt;&lt;sub&gt;&lt;span class=&quot;ne-text&quot;&gt;n&lt;/span&gt;&lt;/sub&gt;&lt;span class=&quot;ne-text&quot;&gt;,&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ubeaa08b6&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;分析影响&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;：过阻尼（ζ&amp;gt;=1）时具有单位上升的特性，ζ=1时调节时间t&lt;/span&gt;&lt;sub&gt;&lt;span class=&quot;ne-text&quot;&gt;s&lt;/span&gt;&lt;/sub&gt;&lt;span class=&quot;ne-text&quot;&gt;最短、欠阻尼（0&amp;lt;ζ&amp;lt;1）等辐振荡，最终发展为发散振荡、在ζ为定值时，w&lt;/span&gt;&lt;sub&gt;&lt;span class=&quot;ne-text&quot;&gt;n&lt;/span&gt;&lt;/sub&gt;&lt;span class=&quot;ne-text&quot;&gt;越大二阶单位响应越快，调节时间越短。-1&amp;lt;ζ&amp;lt;0与ζ&amp;lt;-1时响应是发散振荡和单调发散，系统不稳定。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uddf5471b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3-5（将方程转化为&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;标准的传递函数&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;带入公式&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;直接求解）&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u954db5a0&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449196756907.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u35f8055b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449220709695.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;ue8a82eb2&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449236592581.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;ufab1e310&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;h2 id=&quot;KOfq7&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第四章、控制系统的根轨迹分析方法&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;ud706ba71&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;根轨迹&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，是指系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;开环&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;传递函数的某一参量&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;从零变化到无穷时&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，闭环&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;系统特征方程式的根&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;在&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;〔s]上变化&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;而形成的轨迹。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ub7d6ecb7&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449290132072.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u6f3824bd&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p id=&quot;uc3f8e4b7&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669449316550680.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;ud1e8590e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;h3 id=&quot;dJzgA&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;课后习题&lt;/span&gt;&lt;/h3&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u85819b90&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;4-1【答】所谓&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;根轨迹&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;，是指系统开环传递函数的某一参量从零变化到无穷时，闭环系统特征方程式的根在s平面上变化而形成的轨迹。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u37875737&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;根轨迹反映了闭环系统特征根&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;在s平面上的位置以及变化情况，所以应用根轨迹可以&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;直观地分析参数变化对系统动态性能的影响&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，以及要满足系统动态要求，应如何配置系统的开环零极点，&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;获得期望的根轨迹走向与分布。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u50eb731e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448216574873.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;u4bfa1941&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h2 id=&quot;vVTzr&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第五章、控制系统的频域分析&lt;/span&gt;&lt;/h2&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;ucb49d52d&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;暂态分量、稳态分量&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u2b69512b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;线性定常系统（或环节）在&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;正弦输人信号&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;的作用下，系统&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;到达稳态&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;时，输出的稳态分量与正弦输人信号的&lt;/span&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;复数比称为频率特性&lt;/span&gt;&lt;span class=&quot;ne-text&quot;&gt;，&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u10817f55&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448201892535.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u4b922a88&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;幅频特性、相频特性&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u0b444928&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u3a360397&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(1〉&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;性质&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;:频率特性具有复函数的性质;反映系统的固有特性，是线性系统（环节或元件）又一形式的数学模型。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;uaf8994cc&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;(2)&lt;/span&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #C75C00&quot;&gt;意义&lt;/span&gt;&lt;/strong&gt;&lt;span class=&quot;ne-text&quot;&gt;:对于稳定的线性定常系统，当输入一频率为w的正弦信号时，其稳态响应是具有和输入信号同频率的正弦函数，而且其幅值和相位随。的变化而变化。频率特性不仅反映了系统的稳态性能，还可研究系统的稳定性和暂态性能。&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;p id=&quot;u37750acd&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;h3 id=&quot;LA3aa&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;课后习题&lt;/span&gt;&lt;/h3&gt;&lt;div data-type=&quot;success&quot; class=&quot;ne-alert&quot; style=&quot;border: 1px solid #DCF4B4; background-color: #E8F7CF; margin: 4px 0; padding: 10px; border-radius: 4px&quot;&gt;&lt;p id=&quot;u1b6aeda5&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;5-1&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ube4da235&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;在一直的系统传递函数的情况下，先求出系统正弦信号输入的稳态解，然后再求稳态解的复数和输入信号的复数比，即为频率特性。以jw代替传递函数中的s就可以求出系统的频率特性，G(jw)=G(s)|&lt;/span&gt;&lt;sub&gt;&lt;span class=&quot;ne-text&quot;&gt;s=jw&lt;/span&gt;&lt;/sub&gt;&lt;span class=&quot;ne-text&quot;&gt;.&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u5efd29d1&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;5-9&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u3bb4d5db&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448184705340.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Mon, 31 Oct 2022 13:41:10 +0800</pubDate></item><item><title>机械设计-课程设计</title><link>https://bk.jimo.fun/?id=22</link><description>&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;h2 style=&quot;white-space: normal;&quot;&gt;&lt;a href=&quot;https://www.yuque.com/jimoworld/sd/coutbu&quot; target=&quot;_blank&quot; textvalue=&quot;语雀文档：原文链接（点击即可）&quot;&gt;语雀文档：原文链接（点击即可）&lt;/a&gt;&lt;/h2&gt;&lt;div class=&quot;lake-content&quot; typography=&quot;classic&quot;&gt;&lt;h3 id=&quot;Z0pVG&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;计算过程：&lt;/span&gt;&lt;/h3&gt;&lt;p id=&quot;ua722da45&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #E8323C&quot;&gt;注意：0.99的乘&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u13b4215b&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451739257918.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u8d107167&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451753916816.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;h3 id=&quot;Ihfis&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;2.电机选择：&lt;/span&gt;&lt;/h3&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669452061605485.png&quot; alt=&quot;image.png&quot;/&gt;&lt;h2 id=&quot;BURwg&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;二、传动装置的总体设计&lt;/span&gt;&lt;/h2&gt;&lt;h3 id=&quot;TwZPG&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;3.计算各轴的运动和动力计算&lt;/span&gt;&lt;/h3&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669452075820572.png&quot; alt=&quot;image.png&quot;/&gt;&lt;h3 id=&quot;jjTPu&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;4.初算各轴的极限直径及选择联轴器&lt;/span&gt;&lt;/h3&gt;&lt;p&gt;&lt;span class=&quot;ne-text&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669452091341926.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h2 id=&quot;Lmf4C&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;三、齿轮的选择&lt;/span&gt;&lt;/h2&gt;&lt;h3 id=&quot;ySKrp&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;注意事项&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u76df2cd7&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;直齿轮最小齿数&amp;gt;=17，斜齿轮最小齿数&amp;gt;=14&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u9f27bb70&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;啮合齿轮要尽可能互质（公约数为1，使磨损均匀）。&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u13d0c7e5&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;模数选第一类。&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;uab22776e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;小的尽量不选空芯。&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;u9899a46a&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;轴为标准件，装配相关的参数依据标准件。&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;ue5973358&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;轴段的选择要小于齿轮的宽（装配轴与齿轮连接处）。&lt;/strong&gt;&lt;/p&gt;&lt;p id=&quot;ua0ec8ff3&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;强度校核（高速、低速）&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;h4 id=&quot;BWj3r&quot; style=&quot;font-size: 16px; line-height: 24px; margin: 10px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;模数&lt;/span&gt;&lt;/h4&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u5680ccec&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt; 模数的标准化数值参考GB1357-87。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u55046bb2&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第一系列有：&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u1365f8ec&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;0.1，0.12，0.15，0.2，0.25，0.3，0.4，0.5，0.6，0.8，1，1.25，1.5，2，2.5，3，4，5，6，8，10，12，16，20，25，32，40，50.（优先选用第一系列）。&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u35cea2b8&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;第二系列有：&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;ua9138eb8&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;0.35，0.7，0.9，1.75，2.25，2.75，3.25，3.5，3.75，4.5，5.5，6.5，7，9，11，14，18，22，28，36，45.单位mm。 &amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;&lt;h3 id=&quot;ztWJ8&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;高速级的计算&lt;/span&gt;&lt;/h3&gt;&lt;p id=&quot;u73380907&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451780158612.png&quot; alt=&quot;image.png&quot;/&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451795288088.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u933b30ab&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451814847191.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u933b30ab&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #E8323C&quot;&gt;调整：宽度改为+5，B2=56mm、B1=61mm&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;h3 id=&quot;Bho7q&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;低速级的计算&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;ne-quote&quot; style=&quot;margin: 5px 0; padding-left: 1em; border-left: 3px solid #eeeeee&quot;&gt;&lt;p id=&quot;u3d20c6fd&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451838357633.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u3d20c6fd&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;strong&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #E8323C&quot;&gt;调整：宽度改为+5，B2=66mm、B1=71mm&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/div&gt;&lt;h2 id=&quot;a2Oh1&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;四、轴的选择&lt;/span&gt;&lt;/h2&gt;&lt;h3 id=&quot;gyztM&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;低速级轴&lt;/span&gt;&lt;/h3&gt;&lt;p id=&quot;u268857ba&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451866556676.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;h3 id=&quot;Ea7Ga&quot; style=&quot;font-size: 20; line-height: 28px; margin: 16px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;中间轴与高速级轴&lt;/span&gt;&lt;/h3&gt;&lt;details class=&quot;lake-collapse&quot;&gt;&lt;summary id=&quot;u593a4b17&quot;&gt;&lt;span class=&quot;ne-text&quot; style=&quot;color: #E8323C&quot;&gt;淘汰方案&lt;/span&gt;&lt;/summary&gt;&lt;p id=&quot;u8916905e&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://cdn.nlark.com/yuque/0/2022/jpeg/26820301/1666009208083-24634cdb-afc9-4b23-b9a8-b92f12d77808.jpeg&quot; width=&quot;2648&quot; id=&quot;J3eQx&quot; class=&quot;ne-image&quot;/&gt;&lt;/p&gt;&lt;/details&gt;&lt;p id=&quot;u98f06c78&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451880142503.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p id=&quot;u98f06c78&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;span style=&quot;text-decoration: underline;&quot;&gt;&lt;strong&gt;修改过后的方案：&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;&lt;p id=&quot;u98f06c78&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451930500655.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;h2 id=&quot;ZYC8Q&quot; style=&quot;font-size: 24px; line-height: 32px; margin: 21px 0 5px 0&quot;&gt;&lt;span class=&quot;ne-text&quot;&gt;五、轴承的选择&lt;/span&gt;&lt;/h2&gt;&lt;p id=&quot;u3def1328&quot; class=&quot;ne-p&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; min-height: 24px;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669451971379682.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Thu, 22 Sep 2022 16:28:20 +0800</pubDate></item><item><title>搭建个人云服务器-动态域名配置</title><link>https://bk.jimo.fun/?id=28</link><description>&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669466738527933.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: inherit;display: inline-block;float: left;height: 32px;text-align: center;vertical-align: top;width: 32px&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; color: inherit; font-size: 24px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); word-break: break-all; font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-weight: bold; line-height: 32px; border-color: rgb(240, 150, 28); display: inline-block; float: left; height: 32px; text-align: center; vertical-align: top; width: 32px; visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: inherit;display: table;width: 100%&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); color: inherit; display: table; width: 38px; visibility: visible;&quot;&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: rgb(255, 255, 255);display: table-cell;font-style: normal;text-indent: 0px;vertical-align: middle&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); color: rgb(255, 255, 255); display: table-cell; vertical-align: middle; visibility: visible;&quot;&gt;&lt;span data-css=&quot;border-color: rgb(255, 105, 31);color: rgb(255, 105, 31);font-size: 50px&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: #F0961C; color: #F0961C; font-size: 50px; visibility: visible;&quot;&gt;1&lt;/span&gt;&lt;/section&gt;&lt;section data-css=&quot;-webkit-transform: rotate(35deg);background-color: rgb(254, 254, 254);border-color: rgb(255, 105, 31);border-left-style: solid;border-left-width: 1px;box-sizing: border-box;color: inherit;height: 70px;margin-left: -8px;margin-top: 5px;transform: rotate(35deg);width: 18px&quot; style=&quot;margin: 5px 0px 0px -8px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); border-left-style: solid; border-left-width: 1px; color: inherit; height: 70px; transform: rotate(35deg); width: 18px; background-color: rgb(254, 254, 254); visibility: visible;&quot;&gt;&lt;br style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; visibility: visible;&quot;/&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 0px 40px; padding: 18px 0px 0px; outline: 0px; max-width: 100%; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 75px; word-break: break-all; font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-weight: bold; line-height: 32px; border-color: rgb(240, 150, 28); color: rgb(115, 115, 115); font-size: 30px; visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; font-size: 20px; color: #F0961C; visibility: visible;&quot;&gt;&amp;nbsp;准备&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin: 0px 0px 0px 40px; padding: 18px 0px 0px; outline: 0px; max-width: 100%; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 75px; word-break: break-all; font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-weight: bold; line-height: 32px; border-color: rgb(240, 150, 28); color: rgb(115, 115, 115); font-size: 30px; visibility: visible; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; font-size: 20px; color: #F0961C; visibility: visible;&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669467050347174.png&quot; alt=&quot;image.png&quot;/&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: inherit;display: inline-block;float: left;height: 32px;text-align: center;vertical-align: top;width: 32px&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; color: inherit; font-size: 24px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); word-break: break-all; font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-weight: bold; line-height: 32px; border-color: rgb(240, 150, 28); display: inline-block; float: left; height: 32px; text-align: center; vertical-align: top; width: 32px; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: inherit;display: table;width: 100%&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); color: inherit; display: table; width: 38px;&quot;&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: rgb(255, 255, 255);display: table-cell;font-style: normal;text-indent: 0px;vertical-align: middle&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); color: rgb(255, 255, 255); display: table-cell; vertical-align: middle;&quot;&gt;&lt;span data-css=&quot;border-color: rgb(255, 105, 31);color: rgb(255, 105, 31);font-size: 50px&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: #F0961C; color: #F0961C; font-size: 50px;&quot;&gt;2&lt;/span&gt;&lt;/section&gt;&lt;section data-css=&quot;-webkit-transform: rotate(35deg);background-color: rgb(254, 254, 254);border-color: rgb(255, 105, 31);border-left-style: solid;border-left-width: 1px;box-sizing: border-box;color: inherit;height: 70px;margin-left: -8px;margin-top: 5px;transform: rotate(35deg);width: 18px&quot; style=&quot;margin: 5px 0px 0px -8px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); border-left-style: solid; border-left-width: 1px; color: inherit; height: 70px; transform: rotate(35deg); width: 18px; background-color: rgb(254, 254, 254);&quot;&gt;&lt;br style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;/&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: rgb(115, 115, 115);font-size: 30px;font-style: normal;margin-left: 40px;padding-top: 18px&quot; style=&quot;margin: 0px 0px 0px 40px; padding: 18px 0px 0px; outline: 0px; max-width: 100%; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 75px; word-break: break-all; font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-weight: bold; line-height: 32px; border-color: rgb(240, 150, 28); color: rgb(115, 115, 115); font-size: 30px; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; font-size: 20px; color: #F0961C;&quot;&gt;&amp;nbsp;编写Shell脚本&lt;/span&gt;&lt;/section&gt;&lt;h3 style=&quot;margin: 16px 0px 5px; padding: 0px; outline: 0px; font-weight: 400; font-size: 16px; max-width: 100%; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); line-height: 28px; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;1.创建shell脚本-然后输入脚本&lt;/h3&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;vim&amp;nbsp;ddns.sh&lt;/pre&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;#!&amp;nbsp;/bin/bash
##
#&amp;nbsp;自动配置脚本
echo&amp;nbsp;-e&amp;nbsp;&amp;quot;$ID\n$KEY\ncn-shanghai\nen\n&amp;quot;&amp;nbsp;|&amp;nbsp;/home/jimo/Apps/aliyun&amp;nbsp;configure
DomainName=jimo.fun&amp;nbsp;#skywant.cn
RecordId=&amp;nbsp;#12133131313133131313
RR=ngrok
Type=A

#先判断上网情况
ping&amp;nbsp;-c&amp;nbsp;4&amp;nbsp;jimo.fun
if&amp;nbsp;[&amp;nbsp;$?&amp;nbsp;!=&amp;nbsp;0&amp;nbsp;];then
	echo&amp;nbsp;--TIMEOUT
	sleep&amp;nbsp;5
	exit&amp;nbsp;691
fi
#获取你的域名解析列表的IP，你需要提前在阿里云控制台设置一个.setip即你目前对域名记录的IP
setip=`/home/jimo/Apps/aliyun&amp;nbsp;alidns&amp;nbsp;DescribeDomainRecords&amp;nbsp;--DomainName&amp;nbsp;$DomainName|grep&amp;nbsp;$RecordId&amp;nbsp;-A&amp;nbsp;4|grep&amp;nbsp;Value`&amp;amp;&amp;amp;setip=${setip:14}&amp;amp;&amp;amp;setip=${setip%\&amp;quot;*}
echo&amp;nbsp;$setip
#记录当前服务器公网IP
curlip=`curl&amp;nbsp;icanhazip.com`
echo&amp;nbsp;$curlip
#判断是否一致
if&amp;nbsp;[&amp;nbsp;&amp;quot;$setip&amp;quot;&amp;nbsp;=&amp;nbsp;&amp;quot;$curlip&amp;quot;&amp;nbsp;]
then
	echo&amp;nbsp;--Done
	exit&amp;nbsp;0
fi

#对阿里云DNS进行修改。
/home/jimo/Apps/aliyun&amp;nbsp;alidns&amp;nbsp;UpdateDomainRecord&amp;nbsp;--RecordId&amp;nbsp;$RecordId&amp;nbsp;--RR&amp;nbsp;$RR&amp;nbsp;--Type&amp;nbsp;$Type&amp;nbsp;--Value&amp;nbsp;$curlip&lt;/pre&gt;&lt;h3 style=&quot;margin: 16px 0px 5px; padding: 0px; outline: 0px; font-weight: 400; font-size: 16px; max-width: 100%; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); line-height: 28px; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;2.修改Shell内容&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 24px; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 14px;&quot;&gt;自行登录阿里云进入APIkey查询修改。以及aliyun的文件路径配置。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 24px; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;em style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 14px;&quot;&gt;执行命令：&lt;/span&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;./ddns.sh&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 24px; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 16px;&quot;&gt;3.可能存在格式异常或权限不足的情况&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 24px; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;em style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 14px;&quot;&gt;执行处理：&lt;/span&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;sed&amp;nbsp;-i&amp;nbsp;&amp;#39;s/\r$//&amp;#39;&amp;nbsp;ddns.sh&lt;/pre&gt;&lt;p&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 14px;&quot;&gt;若权限不足执行：&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-bash&quot;&gt;sudo&amp;nbsp;chmod&amp;nbsp;777&amp;nbsp;ddns.sh&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: inherit;display: inline-block;float: left;height: 32px;text-align: center;vertical-align: top;width: 32px&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; color: inherit; font-size: 17px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); word-break: break-all; font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-weight: bold; line-height: 32px; border-color: rgb(240, 150, 28); display: inline-block; float: left; height: 32px; text-align: center; vertical-align: top; width: 32px; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: inherit;display: table;width: 100%&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); color: inherit; display: table; width: 38px;&quot;&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: rgb(255, 255, 255);display: table-cell;font-style: normal;text-indent: 0px;vertical-align: middle&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); color: rgb(255, 255, 255); display: table-cell; vertical-align: middle;&quot;&gt;&lt;span data-css=&quot;border-color: rgb(255, 105, 31);color: rgb(255, 105, 31);font-size: 50px&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: #F0961C; color: #F0961C; font-size: 50px;&quot;&gt;3&lt;/span&gt;&lt;/section&gt;&lt;section data-css=&quot;-webkit-transform: rotate(35deg);background-color: rgb(254, 254, 254);border-color: rgb(255, 105, 31);border-left-style: solid;border-left-width: 1px;box-sizing: border-box;color: inherit;height: 70px;margin-left: -8px;margin-top: 5px;transform: rotate(35deg);width: 18px&quot; style=&quot;margin: 5px 0px 0px -8px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; border-color: rgb(240, 150, 28); border-left-style: solid; border-left-width: 1px; color: inherit; height: 70px; transform: rotate(35deg); width: 18px; background-color: rgb(254, 254, 254);&quot;&gt;&lt;br style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;/&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;p&gt;&lt;/p&gt;&lt;section data-css=&quot;border-color: rgb(255, 105, 31);color: rgb(115, 115, 115);font-size: 30px;font-style: normal;margin-left: 40px;padding-top: 18px&quot; style=&quot;margin: 0px 0px 0px 40px; padding: 18px 0px 0px; outline: 0px; max-width: 100%; letter-spacing: 0.621714px; text-align: justify; white-space: normal; background-color: rgb(255, 255, 255); min-height: 75px; word-break: break-all; font-family: &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-weight: bold; line-height: 32px; border-color: rgb(240, 150, 28); color: rgb(115, 115, 115); font-size: 30px; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; word-break: break-all; font-size: 20px; color: #F0961C;&quot;&gt;&amp;nbsp;定时执行刷新&lt;/span&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #333333; font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/section&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669467081780460.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669467110262337.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 1em; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkzNDI3OTU0MQ==&amp;action=getalbum&amp;album_id=2053349249798422529#wechat_redirect&quot; textvalue=&quot;Java‍&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; color: rgb(87, 107, 149); text-decoration-line: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); cursor: pointer; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;Java&lt;/a&gt;&lt;br style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 1em; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://mp.weixin.qq.com/s?__biz=MzkzNDI3OTU0MQ==&amp;mid=2247484200&amp;idx=5&amp;sn=ea3e4cb1999b1d49d438f02261ac5145&amp;chksm=c2bee332f5c96a24a4236ae183f541d7484c5a060b5f53995cd97e8791971e467c4c8eafea29&amp;scene=21#wechat_redirect&quot; textvalue=&quot;小工具&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; data-itemshowtype=&quot;0&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; hasload=&quot;1&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; color: rgb(87, 107, 149); text-decoration-line: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); cursor: pointer; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;小工具&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 1em; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkzNDI3OTU0MQ==&amp;action=getalbum&amp;album_id=2399747513471025155#wechat_redirect&quot; textvalue=&quot;开发工具&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; color: rgb(87, 107, 149); text-decoration-line: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); cursor: pointer; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;开发工具&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 1em; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkzNDI3OTU0MQ==&amp;action=getalbum&amp;album_id=2399743595873648641#wechat_redirect&quot; textvalue=&quot;前端的技术&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; color: rgb(87, 107, 149); text-decoration-line: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); cursor: pointer; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;前端的技术&lt;/a&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #576B95;&quot;&gt;&lt;/span&gt;&lt;br style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 1em; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkzNDI3OTU0MQ==&amp;action=getalbum&amp;album_id=2408411386277347329#wechat_redirect&quot; textvalue=&quot;软实力提升营&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;margin: 0px; padding: 0px; outline: 0px; color: rgb(87, 107, 149); text-decoration-line: none; -webkit-tap-highlight-color: rgba(0, 0, 0, 0); cursor: pointer; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;软实力提升营&lt;/a&gt;&lt;br style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px; outline: 0px; max-width: 100%; clear: both; min-height: 1em; color: rgb(34, 34, 34); font-family: system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Hiragino Sans GB&amp;quot;, &amp;quot;Microsoft YaHei UI&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, Arial, sans-serif; font-size: 17px; letter-spacing: 0.621714px; white-space: normal; background-color: rgb(255, 255, 255); box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;strong style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important;&quot;&gt;&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; font-size: 15px;&quot;&gt;点击&lt;span style=&quot;margin: 0px; padding: 0px; outline: 0px; max-width: 100%; box-sizing: border-box !important; overflow-wrap: break-word !important; color: #FF4C00;&quot;&gt;喜欢作者&lt;/span&gt;，鼓励一下(❤ ω ❤)&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669467117150718.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;</description><pubDate>Wed, 07 Sep 2022 20:44:45 +0800</pubDate></item><item><title>H5&amp;amp;CSS3新特性</title><link>https://bk.jimo.fun/?id=18</link><description>&lt;section data-class=&quot;_mbEditor&quot; data-id=&quot;675797&quot; style=&quot;;padding: 0px;border: 1px dashed green;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;section data-mid=&quot;&quot; style=&quot;;padding: 0px;display: flex;justify-content: flex-start;align-items: center;width: 576.325px&quot;&gt;&lt;section data-mid=&quot;&quot; style=&quot;;padding: 0px 0px 0px 46px;display: flex;justify-content: flex-start;align-items: center;flex-direction: column&quot;&gt;&lt;section data-mid=&quot;&quot; style=&quot;;padding: 0px;width: 50px;height: 35px;display: flex;justify-content: center;align-items: center;align-self: flex-start;z-index: 1&quot;&gt;&lt;br/&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;h1 style=&quot;margin: 26px 0px 10px;padding: 0px;font-weight: 400;font-size: 28px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 36px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #E8323C&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669447881818241.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #E8323C&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669447924465770.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;h1 style=&quot;margin: 26px 0px 10px;padding: 0px;font-weight: 400;font-size: 28px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 36px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #E8323C&quot;&gt;一、HTML5新特性&lt;/span&gt;&lt;/h1&gt;&lt;h2 style=&quot;margin: 21px 0px 5px;padding: 0px;font-weight: 400;font-size: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 32px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D4B106&quot;&gt;1.Canvas画布&lt;/span&gt;&lt;/h2&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;1）简介&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;HTML5 的&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;canvas 标签用于绘制图像&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;（通过脚本，通常是 JavaScript）。canvas元素&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;本身并没有绘制能力&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;，它仅仅&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;是图像的容器&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;，我们都是通过&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;脚本来完成实际的绘图&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;任务。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;2）创建画布并绘制内容&lt;/span&gt;&lt;/h3&gt;&lt;pre class=&quot;prism-highlight prism-language-markup&quot;&gt;&amp;lt;!--
canvas：定义一个画布，在网页中是一个矩形框，默认没有边框和内容
边框通过样式自己添加；
canvas元素本身没有绘图能力，内容通过脚本绘制。
--&amp;gt;
&amp;lt;canvas&amp;nbsp;id=&amp;quot;myCanvas&amp;quot;&amp;nbsp;style=&amp;quot;width:&amp;nbsp;300px;&amp;nbsp;height:&amp;nbsp;200px;&amp;nbsp;border:&amp;nbsp;1px&amp;nbsp;solidred;&amp;quot;&amp;gt;&amp;lt;/canvas&amp;gt;
&amp;lt;script&amp;gt;
&amp;nbsp;&amp;nbsp;function&amp;nbsp;printRect(){
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//1、获取一个画布
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var&amp;nbsp;myCanvas=document.getElementById(&amp;quot;myCanvas&amp;quot;);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;/*&amp;nbsp;2、创建context对象,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;*getContext(&amp;quot;2d&amp;quot;)&amp;nbsp;对象是内建的&amp;nbsp;HTML5&amp;nbsp;对象，
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;*拥有多种绘制路径、矩形、圆形、字符以及添加图像的方法。
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;*/&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var&amp;nbsp;ctx=myCanvas.getContext(&amp;quot;2d&amp;quot;);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;//3、在画布上绘制一个红色矩形
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ctx.fillStyle=&amp;quot;red&amp;quot;;//设置fillStyle属性可以是CSS颜色，渐变，或图案。fillStyle默认设置是#000000（黑色）。
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;ctx.fillRect(0,0,200,100);//fillRect(x,y,width,height)&amp;nbsp;方法定义了矩形当前的填充方式。
&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;printRect();
&amp;lt;/script&amp;gt;&lt;/pre&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;3）Canvas 坐标&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;canvas 是一个&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;二维网格&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;。canvas 的&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;左上角坐标为 (0,0)。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0em;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669447967506550.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/p&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;4）Canvas路径&lt;/span&gt;&lt;/h3&gt;&lt;pre class=&quot;prism-highlight prism-language-markup&quot;&gt;&amp;lt;script&amp;gt;
&amp;nbsp;function&amp;nbsp;printLine(){
&amp;nbsp;&amp;nbsp;var&amp;nbsp;myCanvas=document.getElementById(&amp;quot;myCanvas&amp;quot;);
&amp;nbsp;&amp;nbsp;var&amp;nbsp;ctx=myCanvas.getContext(&amp;quot;2d&amp;quot;);
&amp;nbsp;&amp;nbsp;ctx.moveTo(0,0);//定义线条开始坐标
&amp;nbsp;&amp;nbsp;ctx.lineTo(200,100);//定义线条结束坐标
&amp;nbsp;&amp;nbsp;ctx.stroke();//该方法来绘制线条
&amp;nbsp;&amp;nbsp;ctx.moveTo(200,100);
&amp;nbsp;&amp;nbsp;ctx.lineTo(100,200);
&amp;nbsp;&amp;nbsp;ctx.stroke();
&amp;nbsp;}
&amp;nbsp;printLine();
&amp;lt;/script&amp;gt;&lt;/pre&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;5）绘制图片&lt;/span&gt;&lt;/h3&gt;&lt;pre class=&quot;prism-highlight prism-language-markup&quot;&gt;&amp;lt;img&amp;nbsp;src=&amp;quot;img/cat.jpg&amp;quot;&amp;nbsp;id=&amp;quot;mycat&amp;quot;&amp;nbsp;/&amp;gt;
&amp;lt;canvas&amp;nbsp;id=&amp;quot;myCanvas&amp;quot;&amp;nbsp;style=&amp;quot;width:&amp;nbsp;300px;&amp;nbsp;height:&amp;nbsp;200px;&amp;nbsp;border:&amp;nbsp;1px&amp;nbsp;solidred;&amp;quot;&amp;gt;&amp;lt;/canvas&amp;gt;
&amp;lt;script&amp;gt;
&amp;nbsp;function&amp;nbsp;printImg(){
&amp;nbsp;&amp;nbsp;var&amp;nbsp;img=document.getElementById(&amp;quot;mycat&amp;quot;);
&amp;nbsp;&amp;nbsp;var&amp;nbsp;myCanvas=document.getElementById(&amp;quot;myCanvas&amp;quot;);
&amp;nbsp;&amp;nbsp;var&amp;nbsp;ctx=myCanvas.getContext(&amp;quot;2d&amp;quot;);
&amp;nbsp;&amp;nbsp;img.onload&amp;nbsp;=&amp;nbsp;function()&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;ctx.drawImage(img,0,0);
&amp;nbsp;&amp;nbsp;}
&amp;nbsp;}
&amp;nbsp;printImg();
&amp;lt;/script&amp;gt;&lt;/pre&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;6）Canvas参考手册&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 24px;padding: 0px;clear: both;min-height: 1em;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;此处为语雀内容卡片，点击链接查看：&lt;/span&gt;&lt;a href=&quot;https://www.yuque.com/jimoworld/qd/owmnr5&quot; target=&quot;_self&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px;color: #3DAAD6&quot;&gt;https://www.yuque.com/jimoworld/qd/owmnr5&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;&lt;h2 style=&quot;margin: 21px 0px 5px;padding: 0px;font-weight: 400;font-size: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 32px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D4B106&quot;&gt;2.SVG图片&lt;/span&gt;&lt;/h2&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;1）介绍&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;SVG 指可&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;伸缩矢量图形&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;&amp;nbsp;(Scalable Vector Graphics)&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;SVG 用于定义用于&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;网络的基于矢量&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;的图形&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;SVG 使用&amp;nbsp;&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;XML 格式定义图形&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;SVG 图像在放大或改变尺寸的情况下其图形&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;质量不会有损失&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;SVG 是&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;万维网联盟&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;的标准&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;与其他图像格式相比（比如 JPEG 和 GIF），使用 SVG 的优势在于：&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;SVG 图像可通过文本&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 14px&quot;&gt;编辑器来创建和修改&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;SVG 图像&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 14px&quot;&gt;可被搜索、索引、脚本化&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;或&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 14px&quot;&gt;压缩&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;SVG 是&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 14px&quot;&gt;可伸缩&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;的&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;SVG 图像可在任何的分辨率下被&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 14px&quot;&gt;高质量地打印&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;SVG 可在图像&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 14px&quot;&gt;质量不下降的情况下被放大&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;2）应用&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;svg的width属性和height属性&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;，指定了 SVG 图像在 HTML 元素中所占据的&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;宽度和高度&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;。如果不指定这两个属性，&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;SVG 图像默认大小是300像素（&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;宽） x 150像素（高）。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;circle标签代表圆形，其中&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;cx、cy、r属性分别为横坐标、纵坐标和半径&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;，&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;单位为像素&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;。坐标都是相对于画布的&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;左上角原点&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;pre class=&quot;code-snippet__js code-snippet code-snippet_nowrap&quot; data-lang=&quot;xml&quot; style=&quot;margin-top: 10px;margin-bottom: 10px;padding: 1em 1em 1em 3em;overflow-x: auto;color: rgb(51, 51, 51);position: relative;background-color: rgba(0, 0, 0, 0.03);border: 1px solid rgb(240, 240, 240);border-radius: 2px;counter-reset: line 0;line-height: 26px;white-space: normal;text-align: justify&quot;&gt;&amp;lt;svg&amp;nbsp;xmlns=&amp;quot;http://www.w3.org/2000/svg&amp;quot;&amp;nbsp;version=&amp;quot;1.1&amp;quot;&amp;nbsp;height=&amp;quot;190&amp;quot;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;
&amp;lt;circle&amp;nbsp;id=&amp;quot;mycircle&amp;quot;&amp;nbsp;cx=&amp;quot;50&amp;quot;&amp;nbsp;cy=&amp;quot;50&amp;quot;&amp;nbsp;r=&amp;quot;50&amp;quot;&amp;nbsp;/&amp;gt;&amp;lt;/svg&amp;gt;&lt;/pre&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;3）SVG参考手册&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 24px;padding: 0px;clear: both;min-height: 1em;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;此处为语雀内容卡片，点击链接查看：&lt;/span&gt;&lt;/strong&gt;&lt;a href=&quot;https://www.yuque.com/jimoworld/qd/ygi661&quot; target=&quot;_self&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #3DAAD6&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 14px&quot;&gt;https://www.yuque.com/jimoworld/qd/ygi661&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;h2 style=&quot;margin: 21px 0px 5px;padding: 0px;font-weight: 400;font-size: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 32px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D4B106&quot;&gt;3.地理定位&lt;/span&gt;&lt;/h2&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;1）简介&lt;/span&gt;&lt;/h3&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;HTML5 Geolocation（地理定位）用于&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;定位用户的位置&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;PS: Geolocation（地理定位）&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;对于拥有 GPS 的设备&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;，比如 iPhone，地理定位更加精确。&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;h3 style=&quot;margin: 16px 0px 5px;padding: 0px;font-weight: 400;font-size: 16px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 28px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #389E0D&quot;&gt;2）获取用户位置的经度和纬度&lt;/span&gt;&lt;/h3&gt;&lt;pre class=&quot;prism-highlight prism-language-markup&quot;&gt;&amp;lt;p&amp;nbsp;id=&amp;quot;position&amp;quot;&amp;gt;&amp;lt;/p&amp;gt;
&amp;lt;button&amp;nbsp;onclick=&amp;quot;getLocation()&amp;quot;&amp;gt;点我获取当前坐标&amp;lt;/button&amp;gt;
&amp;lt;script&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;lt;!--这段代码在PC端的浏览器测试不容易成功--&amp;gt;
var&amp;nbsp;x&amp;nbsp;=&amp;nbsp;document.getElementById(&amp;quot;position&amp;quot;);
function&amp;nbsp;getLocation()&amp;nbsp;{
if(navigator.geolocation)&amp;nbsp;{
navigator.geolocation.getCurrentPosition(showPosition);
}&amp;nbsp;else&amp;nbsp;{
x.innerHTML&amp;nbsp;=&amp;nbsp;&amp;quot;该浏览器不支持获取地理位置。&amp;quot;;
}
}
function&amp;nbsp;showPosition(position)&amp;nbsp;{
x.innerHTML&amp;nbsp;=&amp;nbsp;&amp;quot;纬度:&amp;nbsp;&amp;quot;&amp;nbsp;+&amp;nbsp;position.coords.latitude&amp;nbsp;+
&amp;quot;
&amp;lt;br&amp;gt;经度:&amp;nbsp;&amp;quot;&amp;nbsp;+&amp;nbsp;position.coords.longitude;
}
&amp;lt;/script&amp;gt;&amp;nbsp;
&amp;lt;!--上边的在PC端的浏览器测试不容易成功，
提供一个使用百度地图API获取位置的参考代码,通过百度API获取位置成功率更高。见下边--&amp;gt;
&amp;lt;p&amp;nbsp;id=&amp;quot;position&amp;quot;&amp;gt;&amp;lt;/p&amp;gt;
&amp;lt;button&amp;nbsp;onclick=&amp;quot;getLocation()&amp;quot;&amp;gt;点我获取当前坐标&amp;lt;/button&amp;gt;
&amp;lt;script&amp;nbsp;src=&amp;quot;https://api.map.baidu.com/api?
v=2.0&amp;amp;ak=nbayQz8caAKuy60pk9otBOxZecZE8Wc8&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&amp;lt;!--&amp;lt;script&amp;nbsp;src=&amp;quot;http://api.map.baidu.com/getscript?v=2.0&amp;amp;ak=nbayQz8caAKuy60pk9otBOxZecZE8Wc8&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;--&amp;gt;
&amp;lt;script&amp;nbsp;type=&amp;quot;text/javascript&amp;quot;&amp;gt;
var&amp;nbsp;position&amp;nbsp;=&amp;nbsp;document.getElementById(&amp;#39;position&amp;#39;);
function&amp;nbsp;getLocation()&amp;nbsp;{
//&amp;nbsp;创建百度地理位置实例，代替&amp;nbsp;navigator.geolocation
var&amp;nbsp;geolocation&amp;nbsp;=&amp;nbsp;new&amp;nbsp;BMap.Geolocation();
geolocation.getCurrentPosition(function(e)&amp;nbsp;{
if(this.getStatus()&amp;nbsp;==&amp;nbsp;BMAP_STATUS_SUCCESS){
//&amp;nbsp;百度&amp;nbsp;geolocation&amp;nbsp;的经纬度属性不同，此处是&amp;nbsp;point.lat&amp;nbsp;而不是
coords.latitude
var&amp;nbsp;lat=e.point.lat;
var&amp;nbsp;lng=e.point.lng;
position.innerHTML&amp;nbsp;=&amp;nbsp;&amp;#39;经度：&amp;#39;&amp;nbsp;+&amp;nbsp;lng&amp;nbsp;+&amp;nbsp;&amp;#39;&amp;lt;br/&amp;gt;纬度：&amp;#39;&amp;nbsp;+&amp;nbsp;lat;
}&amp;nbsp;else&amp;nbsp;{
position.innerHTML&amp;nbsp;=&amp;nbsp;&amp;#39;failed&amp;#39;&amp;nbsp;+&amp;nbsp;this.getStatus();
}
});
}
&amp;lt;/script&amp;gt;&lt;/pre&gt;&lt;h2 style=&quot;margin: 21px 0px 5px;padding: 0px;font-weight: 400;font-size: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 32px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D4B106&quot;&gt;4.拖放API&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 24px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;拖放（Drag 和 drop）是 HTML5 标准的组成部分&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;。在 HTML5 中，拖放是标准的一部分，&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #D46B08;font-size: 12px&quot;&gt;任何元素都能够拖放&lt;/span&gt;&lt;/strong&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 12px&quot;&gt;。（详解见参考资料）&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;pre class=&quot;prism-highlight prism-language-markup&quot;&gt;&amp;lt;!DOCTYPE&amp;nbsp;html&amp;gt;
&amp;lt;html&amp;gt;
&amp;lt;head&amp;gt;
&amp;lt;meta&amp;nbsp;charset=&amp;quot;utf-8&amp;quot;&amp;gt;
&amp;lt;title&amp;gt;拖放API&amp;lt;/title&amp;gt;
&amp;lt;style&amp;nbsp;type=&amp;quot;text/css&amp;quot;&amp;gt;
#div1,
#div2&amp;nbsp;{
float:&amp;nbsp;left;
width:&amp;nbsp;300px;
height:&amp;nbsp;135px;
margin:&amp;nbsp;10px;
padding:&amp;nbsp;10px;
border:&amp;nbsp;1px&amp;nbsp;solid&amp;nbsp;#aaaaaa;
}
&amp;lt;/style&amp;gt;
&amp;lt;script&amp;gt;
&amp;nbsp;&amp;nbsp;function&amp;nbsp;allowDrop(event)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;event.preventDefault();
&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;functio&amp;nbsp;&amp;nbsp;&amp;nbsp;n&amp;nbsp;drag(event)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;event.dataTransfer.setData(&amp;quot;Text&amp;quot;,&amp;nbsp;event.target.id);
&amp;nbsp;&amp;nbsp;}
&amp;nbsp;&amp;nbsp;function&amp;nbsp;drop(event)&amp;nbsp;{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;event.preventDefault();
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var&amp;nbsp;data&amp;nbsp;=&amp;nbsp;event.dataTransfer.getData(&amp;quot;Text&amp;quot;);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;event.target.appendChild(document.getElementById(data));
&amp;nbsp;&amp;nbsp;}
&amp;lt;/script&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
&amp;lt;div&amp;nbsp;id=&amp;quot;div1&amp;quot;&amp;nbsp;ondrop=&amp;quot;drop(event)&amp;quot;&amp;nbsp;ondragover=&amp;quot;allowDrop(event)&amp;quot;&amp;gt;
&amp;lt;img&amp;nbsp;id=&amp;quot;drag1&amp;quot;&amp;nbsp;src=&amp;quot;img/cat.jpg&amp;quot;&amp;nbsp;draggable=&amp;quot;true&amp;quot;&amp;nbsp;title=&amp;quot;拖动我试试&amp;quot;&amp;nbsp;ondragstart=&amp;quot;drag(event)&amp;quot;&amp;nbsp;width=&amp;quot;100%&amp;quot;&amp;nbsp;height=&amp;quot;100%&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;div&amp;nbsp;id=&amp;quot;div2&amp;quot;&amp;nbsp;ondrop=&amp;quot;drop(event)&amp;quot;&amp;nbsp;ondragover=&amp;quot;allowDrop(event)&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/pre&gt;&lt;h1 style=&quot;margin: 26px 0px 10px;padding: 0px;font-weight: 400;font-size: 28px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;text-align: justify;white-space: normal;line-height: 36px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #E8323C&quot;&gt;二、CSS3新特性&lt;/span&gt;&amp;nbsp;&lt;/h1&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;section data-class=&quot;_mbEditor&quot; data-id=&quot;675651&quot; style=&quot;;padding: 0px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;section data-mid=&quot;&quot; style=&quot;;padding: 0px 8px;display: flex;justify-content: center;align-items: center;width: 578.499px&quot;&gt;&lt;section data-mid=&quot;&quot; style=&quot;;padding: 0px;display: flex;justify-content: flex-start;align-items: center;flex-direction: column;width: 578.499px&quot;&gt;&lt;section data-mid=&quot;&quot; style=&quot;;padding: 0px;width: 23px;height: 23px;background: rgb(255, 194, 0);align-self: flex-start;border-radius: 50%&quot;&gt;&lt;br style=&quot;;padding: 0px&quot;/&gt;&lt;/section&gt;&lt;section data-mid=&quot;&quot; style=&quot;;padding: 11px 1px 16px 13px;width: 578.499px;text-align: left;border-radius: 4px;border-width: 1px;border-style: dotted;border-color: rgb(51, 51, 51)&quot;&gt;&lt;p data-mid=&quot;&quot; style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 1em;font-size: 14px;font-family: PingFangSC-Semibold, &amp;#39;PingFang SC&amp;#39;;font-weight: bold;line-height: 23px&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 此篇文章&lt;span style=&quot;;padding: 0px;color: #FFA900&quot;&gt;只把HTML5的部分讲解到&lt;/span&gt;，关于&lt;span style=&quot;;padding: 0px;color: #FF4C00&quot;&gt;CSS3的新特性放在了原文链接中！&lt;/span&gt;&lt;br style=&quot;;padding: 0px&quot;/&gt;&lt;/p&gt;&lt;p data-mid=&quot;&quot; style=&quot;margin-top: 0px;margin-bottom: 0px;padding: 0px;clear: both;min-height: 1em;font-size: 14px;font-family: PingFangSC-Semibold, &amp;#39;PingFang SC&amp;#39;;font-weight: bold;line-height: 23px&quot;&gt;&lt;span style=&quot;;padding: 0px;color: #00D5FF&quot;&gt;原文链接&lt;/span&gt;，&lt;span style=&quot;;padding: 0px;color: #3DAAD6&quot;&gt;会放置详细的笔记地址&lt;/span&gt;，欢迎来关注”&lt;span style=&quot;;padding: 0px;color: #3DAAD6&quot;&gt;己墨日志&lt;/span&gt;“成长每一天！&lt;/p&gt;&lt;/section&gt;&lt;section data-mid=&quot;&quot; style=&quot;;padding: 0px;width: 21px;height: 25px;align-self: flex-end&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448002521403.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 24px;padding: 0px;clear: both;min-height: 1em;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px;margin-bottom: 0em;padding: 0px;clear: both;min-height: 1em;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;white-space: normal;text-align: center&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448009855482.png&quot; alt=&quot;image.png&quot;/&gt;&lt;span style=&quot;;padding: 0px;text-align: justify&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;section data-class=&quot;_mbEditor&quot; data-id=&quot;562892&quot; style=&quot;;padding: 0px;color: rgb(51, 51, 51);font-family: mp-quote, -apple-system-font, BlinkMacSystemFont, &amp;#39;Helvetica Neue&amp;#39;, &amp;#39;PingFang SC&amp;#39;, &amp;#39;Hiragino Sans GB&amp;#39;, &amp;#39;Microsoft YaHei UI&amp;#39;, &amp;#39;Microsoft YaHei&amp;#39;, Arial, sans-serif;font-size: 17px;text-align: justify;white-space: normal&quot;&gt;&lt;section style=&quot;margin: 15px auto;padding: 0px;max-width: 100%&quot;&gt;&lt;section style=&quot;;padding: 0px;max-width: 100%;width: 210px&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448017127111.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/section&gt;&lt;section style=&quot;;padding: 0px 20px;max-width: 100%;text-align: left;width: 320px&quot;&gt;&lt;p style=&quot;padding: 0px;clear: both;min-height: 1em&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkzNDI3OTU0MQ==&amp;action=getalbum&amp;album_id=2053349249798422529#wechat_redirect&quot; textvalue=&quot;Java‍&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;;padding: 0px;color: rgb(87, 107, 149)&quot;&gt;Java&lt;/a&gt;&lt;br style=&quot;;padding: 0px&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px;clear: both;min-height: 1em&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;http://mp.weixin.qq.com/s?__biz=MzkzNDI3OTU0MQ==&amp;mid=2247484200&amp;idx=5&amp;sn=ea3e4cb1999b1d49d438f02261ac5145&amp;chksm=c2bee332f5c96a24a4236ae183f541d7484c5a060b5f53995cd97e8791971e467c4c8eafea29&amp;scene=21#wechat_redirect&quot; textvalue=&quot;小工具&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; data-itemshowtype=&quot;0&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;;padding: 0px;color: rgb(87, 107, 149)&quot;&gt;小工具&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px;clear: both;min-height: 1em&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkzNDI3OTU0MQ==&amp;action=getalbum&amp;album_id=2399747513471025155#wechat_redirect&quot; textvalue=&quot;开发工具&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;;padding: 0px;color: rgb(87, 107, 149)&quot;&gt;开发工具&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px;clear: both;min-height: 1em&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkzNDI3OTU0MQ==&amp;action=getalbum&amp;album_id=2399743595873648641#wechat_redirect&quot; textvalue=&quot;前端的技术&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;;padding: 0px;color: rgb(87, 107, 149)&quot;&gt;前端的技术&lt;/a&gt;&lt;br style=&quot;;padding: 0px&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px;clear: both;min-height: 1em&quot;&gt;&lt;a target=&quot;_blank&quot; href=&quot;https://mp.weixin.qq.com/mp/appmsgalbum?__biz=MzkzNDI3OTU0MQ==&amp;action=getalbum&amp;album_id=2408411386277347329#wechat_redirect&quot; textvalue=&quot;软实力提升营&quot; linktype=&quot;text&quot; imgurl=&quot;&quot; imgdata=&quot;null&quot; tab=&quot;innerlink&quot; data-linktype=&quot;2&quot; style=&quot;;padding: 0px;color: rgb(87, 107, 149)&quot;&gt;软实力提升营&lt;/a&gt;&lt;br style=&quot;;padding: 0px&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px;clear: both;min-height: 1em&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 15px&quot;&gt;点击&lt;span style=&quot;;padding: 0px;color: #FF4C00&quot;&gt;喜欢作者&lt;/span&gt;，鼓励一下(❤ ω ❤)&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px;clear: both;min-height: 1em&quot;&gt;&lt;strong style=&quot;;padding: 0px&quot;&gt;&lt;span style=&quot;;padding: 0px;font-size: 15px&quot;&gt;&lt;img src=&quot;https://bk.jimo.fun/zb_users/upload/2022/11/202211261669448036885669.png&quot; alt=&quot;image.png&quot;/&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;div id=&quot;baidu_pastebin&quot; style=&quot;position: absolute; width: 1px; height: 1px; overflow: hidden; left: -1000px; white-space: nowrap; top: 26px;&quot;&gt;&lt;img class=&quot;loadingclass&quot; id=&quot;loading_laxm5loy&quot; src=&quot;https://bk.jimo.fun/zb_users/plugin/UEditor/themes/default/images/spacer.gif&quot;/&gt;&lt;/div&gt;</description><pubDate>Tue, 16 Aug 2022 11:50:27 +0800</pubDate></item></channel></rss>