Questions
Q3. In case of generator stator single phase earth fault, how to protect 100% range of...

Q3. In case of generator stator single phase earth fault, how to protect 100% range of the stator winding? Explain the principles of related protections in detail.

In: Electrical Engineering

In this part of the assignment, you will need to calculate the cross-correlation of two random...

In this part of the assignment, you will need to calculate the cross-correlation of two random signals. In the Appendix: Part II, we include the function ccorr that gives you the crosscorrelation of two input vectors.

MATLAB provides other built-in function that may be useful for this part of the assignment

• max: gives you the maximum value of a vector. For more information type help max

find: gives you the index corresponding to a value of a vector. For more information type help find.

Finally, you will also need to use a linear filter in Exercise 3. You can use the function linfilt that you already used in MA2.

You can calculate the cross-correlation between two random signals in MATLAB by using the function ccorr given in the Appendix: Part II. As an example, consider two random signals x(t) and y(t), which are both modeled as white Gaussian random processes with mean 0 and variance 1. We plot the cross-correlation function Rxy(? ) of the random signals x(t), y(t) by applying the following MATLAB code:

t = -10:0.01:9.99;

x = randn(1, length(t));

y = randn(1, length(t));

[cc, tau] = ccorr(x,y,t);

plot(tau,cc);

In the same way you can plot the autocorrelation of signal x(t) [ac, tau] = ccorr(x,x,t); plot(tau, ac);

Now assume that y(t) is the output of a linear filter with impulse response h(t) = |sinc(t ? 2)|

where the input x(t) is a white Gaussian random signal with mean 0 and variance 1. Create an M-file to:

(a) Calculate y(t) using the function linfilt and plot x(t) and y(t) where t ranges from ?10 to 9.99, using 0.01 increments. NOTE: y(t) is the output signal of the filter, so if N is the length of the vector t, the length of y(t) is N + N ? 1 (convolution of two functions with length N). You will have to find the indices that correspond to t from ?10 to 9.99.

(b) Plot the cross-correlation function Rxy(? ).

(c) Plot the autocorrelations Rxx(? ) and Ryy(? ) of x(t) and y(t), respectively.

In: Electrical Engineering

construct A*star algorithm for solving the 8-puzzle problem . Use MATLAB or Python .Your code should...

construct A*star algorithm for solving the 8-puzzle problem . Use MATLAB or Python .Your code should include two heuristic functions -misplaced tiles and calculation of manhattan distance. The code should work for all cases of puzzle.

In: Electrical Engineering

describe how pressure switches are connected to start and stop a small motor and a large...

describe how pressure switches are connected to start and stop a small motor and a large motors

In: Electrical Engineering

Find 10 (TEN) different antennas and draw the antenna and radiation pattern in 3 dimensions. Make...

Find 10 (TEN) different antennas and draw the antenna and radiation pattern in 3 dimensions. Make sure to specify the coordinate system used and that both the antenna and pattern are aligned with the coordinate system (no x,y, z shown in both, no points awarded).

In: Electrical Engineering

write 2000 words about OSI model and TCP/IP model

write 2000 words about OSI model and TCP/IP model

In: Electrical Engineering

we mentioned that different coherent modulations schemes, like amplitude shift keying(ASK), phase-shift keying(PSK), and quadrature amplitude...

we mentioned that different coherent modulations schemes, like amplitude shift keying(ASK), phase-shift keying(PSK), and quadrature amplitude modulation(QAM), can be used to modulate OFDM carriers. however, there is an exception: Why frequency-shift keying(FSK) can not be used inOFDM applications?

In: Electrical Engineering

DTMF home automation system using ATMEGA8 i need the circuit and the code for the microcontroller

DTMF home automation system using ATMEGA8

i need the circuit and the code for the microcontroller

In: Electrical Engineering

Part B: In mathematics a series is, roughly speaking, a description of the operation of adding...

Part B: In mathematics a series is, roughly speaking, a description of the operation of adding infinitely many quantities, one after the other, to a given starting quantity. The study of series is a major part of calculus. Write matlab code that calculates and displays the sum of the values of the series 5k^2-2k where we only have 15 values of k (k=1,2,3...15). Use a for loop . Be sure to initialize the total at the very beginning of your code. The total should be 5960

PartC: Write a matlab program ( using a while loop) to determine the number of terms ( which we’ll call s) required for the sum of the series in part B to exceed ten thousand. Display the number of terms. The answer should be 18

In: Electrical Engineering

Two loads Z1 = 100+j0 ? and Z2=10+j20 ? are connected in parallel across a 200...

Two loads Z1 = 100+j0 ? and Z2=10+j20 ? are connected in parallel across a 200 V supply. 1) Write a user oriented MATLAB program that will calculate the capacitance of the capacitor connected across the loads to improve the overall power factor to 0.8 lagging,0.9 lagging, unity power factor, 0.8 leading, 0.9 leading. Also MATLAB will calculate total reactive, real power, and the total current at the source for each ste

In: Electrical Engineering

11. Write a user oriented MATLAB program that will calculate the capacitance of the capacitor connected...

11. Write a user oriented MATLAB program that will calculate the capacitance of the capacitor connected across the loads to improve the overall power factor to 0.8 lagging,0.9 lagging, unity power factor, 0.8 leading, 0.9 leading. Also MATLAB will calculate total reactive, real power, and the total current at the source for each ste

In: Electrical Engineering

(In a few sentences) For An RLC Circuit 1) describe the relationship between the frequency amplitude...

(In a few sentences)

For An RLC Circuit

1) describe the relationship between the frequency amplitude and phase shift.

ex. as the frequency increases the phase shift....

for an RC circuit

1) desribe the relationship between the capacitance, the pahse shift and the current

In: Electrical Engineering

A baseband signal s(t) = 10Cos(3000*pi*t + 30) V, is wideband fm modulated (Z(t)) with carrier...

A baseband signal s(t) = 10Cos(3000*pi*t + 30) V, is wideband fm modulated (Z(t)) with carrier amplitude of 50V. The index of modulation is B = 4.

a) Show the simplified equation of Z(t).
b) Determine the wideband FM power using Bessel fnc. Table
c) Calculate Kf in the Z(t) equation.

In: Electrical Engineering

in electric heater, why when we touch it is not conducive?   also how can only the...

in electric heater, why when we touch it is not conducive?   also how can only the heater heats up while the wire is cold????

In: Electrical Engineering

You are given a black box containing an RL series circuit. Using only an oscilloscope and...

You are given a black box containing an RL series circuit. Using only an oscilloscope and a function generator and an extra resistor, what equations would you use to find the following:

Unknown inductor value:

Unknown Inductor impedance:

Unknown black box Resistor value:

Once you have these, mathematically, find a power factor of at least .97 by adding a capacitor in parallel to the black box.

In: Electrical Engineering