a.) What do you understand by the term system automation?
b.) Why do you think that automation is important in our day to day activities – discuss
c.) There is the fear that automation will replace human activities resulting in unemployment. Do you align with this assertion? Support you claim with relevant points
d.) What is the difference between robotics and automation?
In: Electrical Engineering
module traffic(a, b,clk, reset, P1, P2, PL1, PL2, ind);
input a,b;
input clk; //g=100 y=010 r=001
input reset; //g for pedes = 000 red = 111
input ind;
output[2:0] P1;
output[2:0] P2; // two roads
output[1:0] PL1; //Pl is pedestrian
output[1:0] PL2;
reg [2:0] P1;
reg [2:0] P2;
reg [1:0] PL1;
reg [1:0] PL2;
reg [2:0] sig;
always @(posedge clk, posedge reset)
if(reset)
begin
P1 <= 3'b100;
P2 <= 3'b001;
PL1 <= 3'b111;
PL2 <= 3'b000;
end
else begin
// pass the next_state to current_state;
sig <= sig + 1;
case(sig[2:0])
3'b000:begin
P1 <= 3'b100; //path 1 is greeen
P2 <= 3'b001; //path 2 is red
PL1 <= 3'b111;
PL2 <= 3'b000;
end
3'b001:begin
P1 <= 3'b010; //path 1 is yellow
P2 <= 3'b001; // path 2 is red
PL1 <= 3'b000;
PL2 <= 3'b111;
end
3'b010:begin
P1 <= 3'b001; //path 1 is red
P2 <= 3'b100; //path 2 is green
PL1 <= 3'b000;
PL2 <= 3'b111;
end
3'b011:begin
P1 <= 5'b001; //path 1 is red
P2 <= 5'b010; //path 2 is yellow
PL1 <= 3'b000;
PL2 <= 3'b111;
end
3'b100:begin
P1 <= 3'b001; //path 1 is red
P2 <= 3'b001; //path 3 is red
PL1 <= 3'b000;
PL2 <= 3'b000;
end
5'b11111:sig<= 6'b00000;
default:begin
end
endcase
end
endmodule
Can anyone write a testbench for this in Verilog, ind means indicator.
In: Electrical Engineering
In: Electrical Engineering
A 3 phase 6 pole, asynchronous AC motor
stator resistance 0.34 ohms
rotor resistance 0.12 ohms
stator inductance of 0.5H
rotor inductance of 0.2H
magnetizing inductance 12.35
a)Draw the equivalent electrical circuit for this motor for 1 phase
b) is slip s=0.3 find the speed, torque, current at the stator and efficiency if the voltage supply is 240V per phase at 70 Hz with a Wye connection
In: Electrical Engineering
Name some applications of PWM and explain how they work.
In: Electrical Engineering
An input transmission line of characteristic impedance Z01 splits off into three identical output transmission lines having characteristic impedance Z02 = 3Z01. This represents a four-port system. Find all 16 of the S parameters for this system. Note: Many of the 16 Sij parameters will be identical. There should be only four values that are distinct.
SHOW WORK!!
In: Electrical Engineering
a. Derive the expression for the capacitance of a
parallel plate having two dielectric
field.
b. Write a short note on the magnetization of the
following magnetic material?
i. Diamagnetic
ii. Paramagnetic
iii. Ferromagnetic
c. Derive the
expression for torque developed in a rectangular closed circuit
current (I) in a
uniform field?
In: Electrical Engineering
A 20KVA , 2400/240 single-phase transformer has
Reqp=4.45 ohm and
Xeq1=6.45 ohm, Plot the voltage regulation as load current
increased
from no-load to full-load at different power factor 0.85 lagging,
1.0 and
0.85 leading using Matlab.
In: Electrical Engineering
In: Electrical Engineering
Question 1
A stepper motor advances 2.5̊ per step.
How many pulses are needed to complete 3 revolutions?
Explain what is meant by normal drive, wave drive and half-step drive.
Why is viscous damping employed in stepper motors?
When a stepper motor is ramping or slewing properly, every pulse corresponds to a precise angle of rotation. True or false?
In: Electrical Engineering
Compare the working of an Induction motor with a synchronous motor.
In: Electrical Engineering
The total current density in a semiconductor is given as constant and Jtop = -20 A / cm ^ 2. Total current density is the sum of the hole drift current density and the electron diffusion current densities. The hole density in the crystal is constant and p = 0.64 * 10 ^ 10 cm ^ -3. Electron density (to be written in x distance micrometer) is given as n (x) = 2 * 10 ^ 15 * e ^ (- X / L) cm ^ -3 and L = 20 micrometer. Since the diffusion coefficient of electrons is Dn = 26 cm ^ 2 / s and the mobility of the holes is n = p = 440 cm ^ 2 / Vs:
a) Find the variation of the electron diffusion current density
depending on the location and draw approximately by stating the
important values,
b) Find the variation of the electric field applied to the
semiconductor depending on the location and draw the approximate
values by drawing them approximately,
c) Find the variation of the hole drift current density depending
on the location and draw approximately by specifying the important
values.
I need quick answer please.Thank you
In: Electrical Engineering
A system is described by the differential equation −5y′′(t)−3y′(t)+3y(t)=ys(t), Find the transfer function associated with this system H(s). Write the solution as a single fraction in s. H(s)=_______________?
In: Electrical Engineering
Hello, Can someone please give me an an example of NZVC flag being adjusted based of the addition of two binary numbers . For example 11001001 and 10000101. Please show all the steps, provide the value for the NZVC flag and explain why it changes. Thank you very much.
In: Electrical Engineering
A single-phase transformer of 3 kVA, 60 Hz, has a voltage ratio on open circuit of 240 / 120 V. The primary and secondary resistances are 0.25 Ω and 0.05 Ω respectively, the corresponding leakage reactance being 0.75 Ω and 0.18 Ω. The transformer delivers current to the load at a 0.9 power factor lagging.
In: Electrical Engineering