电梯控制器课程设计
⑴ 课程设计.如何设计两层电梯控制器
用什么来控制?
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
上面是我前一段时间写的交通灯控制器设计代码,相应的英文字母对应相应的信号
⑸ 课程设计 四层电梯
我的毕业设计是 你有了给我发一份 哥们