Summary formula for BJT transistor for NPN and PNP with circuit , explain how it work and difference between npn and pnp.
In: Electrical Engineering
Design a 32 bit after using a single 4 bit using verilog code
In: Electrical Engineering
Optimal and near-optimal process scheduling and page replacement algorithms.
a) What is the theoretically best process scheduling algorithm?
b) Do shortest job first and shortest remaining time first amount to the same thing or not?
c) Can they be directly implemented?
d) What do you consider the next best scheduling option, and how does it use the recent past to approximate the ideal case?
e) Consider the analogous case in page replacement. What is the best possible choice of page to replace?
f) Can this be known? If not, what is the best approximation of the ideal case, and how does it use knowledge of the recent past to implement it?
g) What is the overhead involved in keeping track of the recent past in the case of page replacement?
In: Electrical Engineering
What are the rules as per the NEC providing overcurrent protection when utilizing autotransformers?
In: Electrical Engineering
How is it possible for a (Buck-Boost) Transformer to operate a KVA load many times larger than the transformers KVA rating?
In: Electrical Engineering
What distinguishes an Autotransformer (Buck-Boost) connection from a standard distribution transformer connection?
In: Electrical Engineering
Thread scheduling at the process level and at the kernel level. This topic requires more work on my part and I will give an updated draft. There may be more than one question here. Review the different allocation policies for kernel threads in relation to user threads – one to one, many to one, many to many, hybrid. These are sometimes referred to as an “M:N ratio” where M is the number of user threads and N is the number of kernel threads.
a) How is the choice between “process scope” (P) and“system scope” (S) related to these options? If “process scope” is chosen, where does the responsibility lie for scheduling threads?
b) How does Posix implement scheduling at the user thread level? If “system scope” (S) is chosen, does the programmer have any control over the scheduling of her threads?
In: Electrical Engineering
jhmjhhjjhbus 5 is
a
Combined Cycle Gas Turbine (CCGT) power plant beside the sea
, built on a
vast area next to a rural/ village setting. The fishing vil
lage houses a community of about 1300
people who live on a day-
to
-day simple livelihood. Discuss the positive and negative impac
t of
the power plant on the environment and culture of this community. Generator bus 5 is
a
Combined Cycle Gas Turbine (CCGT) power plant beside the sea
, built on a
vast area next to a rural/ village setting. The fishing vil
lage houses a community of about 1300
people who live on a day-
to
-day simple livelihood. Discuss the positive and negative impac
t of
the power plant on the environment and culture of this community.
Generator bus 5 is
a
Combined Cycle Gas Turbine (CCGT) power plant beside the sea
, built on a
vast area next to a rural/ village setting. The fishing vil
lage houses a community of about 1300
people who live on a day-
to
-day simple livelihood. Discuss the positive and negative impac
t of
the power plant on the environment and culture of this community.
Generator bus 5 is
a
Combined Cycle Gas Turbine (CCGT) power plant beside the sea
, built on a
vast area next to a rural/ village setting. The fishing vil
lage houses a community of about 1300
people who live on a day-
to
-day simple livelihood. Discuss the positive and negative impac
t of
the power plant on the environment and culture of this community.
In: Electrical Engineering
how would i create a bandpass filter in simulink with certain poles and zeros?
In: Electrical Engineering
Q1. We have a controller, and every time the Operator changes the Set Point, the controller responds, and gets the process sorted out. Now, somewhere, we have read that load disturbances needed to be considered in processes, as well. How will this controller react, if there is a load disturbance, and not a Set Point change?
Q3. The Process Variable jumps around, quite a bit. Which of the PID settings should we not be using, to improve controllability, and extend the life of our Final Control Element?
In: Electrical Engineering
what the propagation delay can be on a synchronous and an asynchronous counter that needs to run at 200MHz? Show me how you would calculate this.
In: Electrical Engineering
Consider the user-defined MATLAB function below,
ht_mp_ch().
The function ht_mp_ch(), outputs the sampled version of the impulse
response hmp(t) of the multipath fading channel as a
vector.
function
impulse_response=ht_mp_ch(max_delay,L,decay_base,t_step)
t_vector=0:t_step:max_delay;
mp_tmp=0*(t_vector);
path_delays=[0 sort(rand(1,L-1)*max_delay)];
impulse_positions=floor(path_delays/t_step);
mp_tmp(impulse_positions+1)=exp(j*2*pi*rand(1,L));
mp_tmp=mp_tmp.*(decay_base.^(t_vector/max_delay));
impulse_response=mp_tmp/sqrt(sum(abs(mp_tmp).^2));
Explain what the variable on the left-hand side represents and
justify how the right-hand side expression is formulated by adding
comments to every line.
In: Electrical Engineering
bus reservation system code using c language in this system we can add seat and remove. this code will be in c language using 2 d aray
In: Electrical Engineering
Explain the major pros and cons of mechanical power conditioning used by large scale wind turbines and the electrical conditioning used by smaller turbines ?
In: Electrical Engineering
You have a plan to build a games console controller that captures the hand gestures of the player. The player’s movements and gestures are sensed using an accelerometer connected to one of the ADC pins of an Arduino. You have already written all the necessary code but have yet to include any kind of smoothing for the accelerometer signal.
Your task now is to write the accelerometer smoothing function. The function must take each new sample as input and return the average of 4 consecutive samples without introducing a significant lag. (Hint: use a moving average.)
Write an implementation of this function where the function prototype is of the form:
int SmoothSensor(int sensorReading);
In: Electrical Engineering