電梯控制器課程設計
⑴ 課程設計.如何設計兩層電梯控制器
用什麼來控制?
8051?
PLC?
⑵ 課程設計 三層電梯電氣控制系統的設計(完整版)
前面有人發過一個三層貨籃的控制圖,可參考。
KM1是上升接觸器,KM2是下降接觸器,中繼繼電器K1~K4的作用在其右邊已註明(去掉限位兩個字),比如從底層上到三層,那經過第二層時,貨籃的擋鐵為什麼不會先碰掉第二層的行程開關呢,因為到不同層是由不同的中間繼電器接受按鈕指令的,只有該層的限位開關才串到該層的中繼繼電器迴路,其他各層的限位開關對該層的中間繼電器迴路不起作用.。
如上三層是K4得電,只有到三層的限位開關才能斷開K4。K1,K2去控制上升接觸器KM1,K3,K4控制下降接觸器KM2。
正反轉接觸器KM1,KM2之間互鎖,防止同時接通造成短路。
KM1或KM2得電時報閘線圈Y得電,報閘打開,貨籃上升或下降。
到底層或到頂層的限位開關失效則由沖頂限位開關直接斷掉兩相火線,使電機失電停止,同時報閘線圈Y失電,報閘報緊。
按下各層停止按鈕,可停止貨籃運行。按下到某層的按鈕,貨籃到該層自動停止。
各層門欄桿打開(限位開關動作),貨籃停止運行,且無法啟動。
貨籃下降時,按上升按鈕不起作用,貨籃上升時,按下降按鈕不起作用。
⑶ verilog電梯微控制器課程設計 簡單的能夠升降就行,跪求大神···源代碼加測試激勵··要能模擬的··
自己看書隨便寫寫有1天搞定了,這點小事還問,真傷腦筋
⑷ 那裡有 全自動電梯控制電路設計 Verilog HDL編寫,還有 EDA課程設計 8位數字密碼鎖設計 Verilog HDL EDA課
traffic(clk,urgency,east_west,south_north,led);
input clk;
input urgency;
output [7:0]east_west,south_north;
output [5:0]led;
reg [7:0]east_west,south_north;
reg [5:0]led;
initial begin
east_west<=8'b0;
south_north<=8'b0;
led<=6'b100001;end
always @(posedge clk)
begin if(urgency==1) led<=6'b100100;
else if(east_west==8'b0 && south_north==8'b0) begin
east_west<=8'b00101101;
south_north<=8'b00101000;
led<=6'b100001;end
else if(east_west==8'b00000110 && south_north==8'b1) begin
east_west<=8'b00000101;
south_north<=8'b00000101;
led<=6'b100010; end
else if(east_west==8'b1 && south_north==8'b1 && led[5]==1'b1) begin
east_west<=8'b00101000;
south_north<=8'b00101101;
led<=6'b001100; end
else if(east_west==8'b1 && south_north==8'b00000110) begin
east_west<=8'b00000101;
south_north<=8'b00000101;
led<=6'b010100;end
else if(east_west==8'b1 && south_north==8'b1 && led[2]==1'b1) begin
east_west<=8'b00101101;
south_north<=8'b00101000;
led<=6'b100001; end
else if(east_west[3:0]==4'b0000) begin
east_west<=east_west-8'b111;
south_north<=south_north-1'b1; end
else if(south_north[3:0]==4'b0000) begin
east_west<=east_west-1'b1;
south_north<=south_north-8'b111; end
else begin
east_west<=east_west-1'b1;
south_north<=south_north-1'b1;
end
end
endmole
上面是我前一段時間寫的交通燈控制器設計代碼,相應的英文字母對應相應的信號
⑸ 課程設計 四層電梯
我的畢業設計是 你有了給我發一份 哥們