本論文介紹的數字式電子調速器,是用步進電機作為執行器,以AT89C51單片機為主控芯片,通過編制相應的控制程序,實現了汽油機的數字調速。通過減小瞬時調速率成為全面提高汽油機調速性能的關鍵。采用PID控制算法,按汽油機過渡過程各階段轉速變化的情況,確定PID各項的系數,調節節氣門開度的變化量。實驗結果表明,瞬時調速率達到5.6%,穩定時間1.64s,瞬時調速率和穩定時間都有很大的提高,該方法對改善電子調速器的動態特性有明顯的效果。
標簽:
數字式
動態特性
電子調速器
上傳時間:
2013-11-10
上傳用戶:hwl453472107
prolog 找路例子程序:
=== === === === === ===
Part 1-Adding connections
Part 2-Simple Path
example
| ?- path1(a,b,P,T).
will produce the response:
T = 15
P = [a,b] ?
Part 3 - Non-repeating path
As an example, the query:
?- path2(a,h,P,T).
will succeed and may produce the bindings:
P = [a,depot,b,d,e,f,h]
T = 155
Part 4 - Generating a path below a cost threshold
As an example, the query:
?- path_below_cost(a,[a,b,c,d,e,f,g,h],RS,300).
returns:
RS = [a,b,depot,c,d,e,g,f,h] ?
RS = [a,c,depot,b,d,e,g,f,h] ?
no
==================================
標簽:
Part
connections
example
prolog
上傳時間:
2015-04-24
上傳用戶:ljt101007