Develop a complete 4 bit flash ADC, showing the ladder, omAmps, relevant table and logic expression for the output of the ADC. Show the logic expression and logic circuit of all the 4 bits such as (MSB, LSB and two middle ones) using NANDs only.
In: Electrical Engineering
Consider a two-dimensional hexagonal lattice:
(a) Find Fermi wave vector of the free electron circular Fermi surface in reciprocal space.
(b) Draw the free electron Fermi surface in the reduced zone scheme when the lattice points are occupied by atoms with:
i. One valence electron/atom.
ii. Two valence electrons/atom.
In: Electrical Engineering
(i) Design a 7-segment LED driver using the truth table given in the lecture notes, inside a hierarchical block. Assume only numbers from 0 to 9 will be sent to your block. Explain your design. Name your block with your student number: eg “123456 LED driver”.
(ii) Test your circuit in block form using digital interactive constants to represent the inputs, and showing for every input combination what the LED display shows. Explain your testing.
In: Electrical Engineering
e.Consider a codeword C=[110110010010110 ] . Is this a codeword of the above system? Provide suitable justification for your answer.
In: Electrical Engineering
How do I solve short term load forecasting using Multiple Linear Regression? Can anyone provide me a step by step guide and solution? (Please provide a sample data)
In: Electrical Engineering
The RF amplifier of a receiver has an input resistance of 1 kΩ, and equivalent shot noise resistance of 2 kΩ, a gain of 25, and a load resistance of 125 kΩ. Given that the bandwidth is 1.0 MHz and the temperature is 20 °C. If this receiver is connected to an antenna with an impedance of 75 Ω, calculate the noise figure. (in dB)
In: Electrical Engineering
[2307 AT, 1.18 x 107 AT/Wb]
In: Electrical Engineering
In: Electrical Engineering
Please provide a tutorial on what balance realization means in control systems engineering.
In: Electrical Engineering
4- a) Draw a 4-Bit Shift Register that shifts from right to left instead of left to right using D-Flip flops.
b) Draw the serial transfer from shift register A on the right to the shift register B on the left in block form including the timing diagrammes.
c) Draw the serial transfer table in the following form, assuming an initial value of 1101 in the register A and 0110 in the register B.
Timing Pulse Shift Register B Shift Register A
Initial Value
After T1
After T2
After T3
After T4
In: Electrical Engineering
A system description that reveals whether a system is stable or not stable without consideration of other system attributes.
A. Stable system
B. Absolute Stability
C. Marginally stable
D. Optimum control system
In: Electrical Engineering
In: Electrical Engineering
How do we know which relay contact is actuated by which relay coil? How does this convention differ from that of standard electrical/electronic schematic diagrams, where the relay coil is shown as an actual coil of wire
In: Electrical Engineering
Directly copy the source code and paste into the Word file. Screenshot of running result must be presented.
1. (20 points) Write the “Hello, world!” program.
2. (30 points) Write a program to calculate the sum from -5 to10. Use the for loop to do the calculation.
3. (20 points) Write a complete C++ program that asks the user to enter the necessary information about the cylinder, calculate the volume in a function (named as calculate_vol, using reference to pass the volume value out), then display the cylinder volume in main function. The volume of cylinder is:
Vol_Cylinder = πr2h
Where π is 3.14159265, r is the radius, and h is the height.
4. (30 points) Declare a vector container. Using keyboard to input several integer numbers, say at least six integer numbers; find the smallest number and display the result.
In: Electrical Engineering
BY Using MATLAB software:
Exercise 3: Calculation of the parameters of a dipole.
% M-File: ML0804
%
% Perform numerical integration to find
% beam solid angle, directivity, and the
% maximum power function for a given length
% dipole.
%
% Variables
% L dipole length (in wavelengths)
% bL2 phase constant * length/2
% N number of theta points
% th,thr angle theta in degrees,radians
% dth differential theta
% num,den temporary variables
% F un-normalized power function
% Fmax maximum power function (W/m^2)
% omegaP beam solid angle (sr)
% D Directivity
clc %clears the command window
clear %clears variables
% Initialize variables
L=1.5;
bL2=pi*L;
N=90;
% Perform calculations
i=1:1:N;
dth=pi/N;
th(i)=i*pi/N;
num(i)=cos(bL2.*cos(th(i)))-cos(bL2);
den(i)=sin(th(i));
F(i)=((num(i)).^2)./den(i);
Fmax=max(F);
Pn=F./Fmax;
omegaP=2*pi*dth*sum(Pn)
D=4*pi/omegaP
Fmax
Question 3: Run this program for different choices of the dipole length.
In: Electrical Engineering