Questions
Draw two different band-reject filter circuits. For each circuit, use circuit analysis to describe in detail...

Draw two different band-reject filter circuits. For each circuit, use circuit analysis to describe in detail how it functions as a band-reject filter.

In: Electrical Engineering

Updates Question.                                       Consider

Updates Question.                                       Consider the Full- bridge single-phase in- verter with input voltage equal to 200V. This inverter is controlled by sinusoidal PWM technique with amplitude modula-   lation index equal to 0.5 to generate a 3- level half-wave symmetry waveform with frequency equal to 50Hz.                             a) Obtain its power circuit.                             b) Obtain its switching table.                       c) Calculate the width of the generated     pulses at the output.                                     d) Calculate the RMS value of output vol- tage.                                                               e) Calculate the amplitude of fundamen- tal frequency.                                                 f) Draw the waveforms of refrence and carrier signals.                                               g)Obtain the waveform of output voltage h) Design the trigger signals of switches. Thanks for your help.

In: Electrical Engineering

Procedure a. Design and build a circuit based on the subtractor adder to implement the following...

Procedure
a. Design and build a circuit based on the subtractor adder to implement the following equation: Y=2X +1.5

b. Check the operation of the circuit, entering 10 different values ​​of X and measuring the result obtained in Y. Use a source of +-15 volts to polarize the circuit

c. Graph the results and obtain the equation of that graph.

In: Electrical Engineering

1. The split phase motor is used to _____. a. provide mechanical drive to the DC...

1. The split phase motor is used to _____.

a. provide mechanical drive to the DC motor

b. produce DC voltage directly

c. provide a load for the DC motor

d. serve as a control device.

2. The purpose of the rheostat in the DC motor in this application is to ____.

a. prevent the series winding from being burned out

b. provide for output voltage control

c. limit the shunt current

d. dissipate the counter EMF

3. The device that connects the two motor shafts together is called a ____.

a. transformer

b. coupler

c. transducer

d. reducer

4. The purpose of the motor generator is used to ___.

a. convert DC voltage to AC voltage

b. convert AC voltage to DC voltage

c. reduce the effects of line loads

d. reduce ambient power losses

In: Electrical Engineering

Design the component values for the series RLC bandreject filter so that the center frequency is...

Design the component values for the series RLC bandreject filter so that the center frequency is 5 kHz and the quality factor is 5. Use a 500 nF capacitor.

Important: Please.....Plot the circuit of your design, marking the output voltage. I think it means a sinewave on an X, Y, graph plot with vo as X, and t(ms)>0 as Y. Is this possible here?

In: Electrical Engineering

A solid, homogeneous sphere with a mass of m0, a radius of r0 and a density...

A solid, homogeneous sphere with a mass of m0, a radius of r0 and a density of ρ0 is placed in a container of water. Initially the sphere floats and the water level is marked on the side of the container. What happens to the water level, when the original sphere is replaced with a new sphere which has different physical parameters? Notation: r means the water level rises in the container, f means falls, s means stays the same.

a) r / f / s

The new sphere has a radius of r < r0 and a density of ρ = ρ0.
The new sphere has a density of ρ = ρ0 and a mass of m < m0.
The new sphere has a mass of m = m0 and a density of ρ < ρ0.

b) r / f / s / r or s / f or s

The new sphere has a density of ρ > ρ0 and a mass of m = m0.

The new sphere has a density of ρ > ρ0 and a radius of r = r0.

The new sphere has a mass of m > m0 and a radius of r = r0.

c) r / f / s / r or s / f or s / r or f or s

The new sphere has a mass of m < m0 and a density of ρ > ρ0.

The new sphere has a mass of m < m0 and a radius of r > r0.

The new sphere has a radius of r < r0 and a density of ρ > ρ0.

In: Electrical Engineering

how does the LED and LCD effect the ring johnson and ring counter

how does the LED and LCD effect the ring johnson and ring counter

In: Electrical Engineering

Rising Edge Detector: The rising-edge detector is a circuit that generates a short one-clock-cycle tick when...

Rising Edge Detector: The rising-edge detector is a circuit that generates a short one-clock-cycle tick when the input signal changes from 0 to 1. It is usually used to indicate the onset of a slow time-varying input signal. Moore machine state diagram for the rising-edge detector is shown in Figure 6. a. Draw the state diagram for the rising edge detector b. Adapt the Code Example 1 to implement the detector in Verilog

In: Electrical Engineering

There is something wrong with my arduino lab. I want my four leds to light up...

There is something wrong with my arduino lab. I want my four leds to light up one after the other. Then the speaker plays music, and 4 leds change with music. But my code only makes one of them work. Please help me modify my code

const int switchPin = 8; unsigned long previousTime = 0; int switchState = 0; int prevSwitchState = 0; int led = 2; // 600000 = 10 minutes in milliseconds long interval = 1000; int tonepin=9; int bpm = 120; int song[100][2] = { {AA3,Q},{AA3,Q},{AA3,Q},{F3,E+S},{C4,S},{AA3,Q},{F3,E+S},{C4,S},{AA3,H}, {E4,Q},{E4,Q},{E4,Q},{F4,E+S},{C4,S},{Ab3,Q},{F3,E+S},{C4,S},{AA3,H}, {AA4,Q},{AA3,E+S},{AA3,S},{AA4,Q},{Ab4,E+S},{G4,S}, {Gb4,S},{E4,S},{F4,E},{R,E},{Bb3,E},{Eb4,Q},{D4,E+S},{Db4,S}, {C4,S},{B3,S},{C4,E},{R,E},{F3,E},{Ab3,Q},{F3,E+S},{AA3,S}, {C4,Q},{AA3,E+S},{C4,S},{E4,H},{AA4,Q},{AA3,E+S},{AA3,S},{AA4,Q},{Ab4,E+S},{G4,S}, {Gb4,S},{E4,S},{F4,E},{R,E},{Bb3,E},{Eb4,Q},{D4,E+S},{Db4,S}, {C4,S},{B3,S},{C4,E},{R,E},{F3,E},{Ab3,Q},{F3,E+S},{C4,S}, {AA3,Q},{F3,E+S},{C4,S},{AA3,H} }; int num_notes = 70; int led_notes[] = {Ab3,AA3,F3,C4,E4,F4,Gb4,G4}; int num_leds = 8 ; int leds[] = {4,5,6,7} ; void setup() { for (int x = 4; x < 8; x++) { pinMode(x, OUTPUT); } pinMode(switchPin, INPUT); } void servo(){ myServo.attach(9); Serial.begin(9600); } void led_on_v3() { pinMode(tonepin, OUTPUT); for (int i=0; i < (num_leds-1); i++) { pinMode(leds[i], OUTPUT); } } void leds_on(int note) { for (int i=0; i < (num_leds-1); i++) { if (led_notes[i] == note) { digitalWrite(leds[i],HIGH); } } } void leds_on_v2(int note) { for (int i=0; i < (num_leds-1); i++) { if (led_notes[i] == note) { digitalWrite(leds[i],HIGH); } else { digitalWrite(leds[i],LOW); } } } void leds_off() { for (int i=0; i < (num_leds-1); i++) { digitalWrite(leds[i],LOW); } } void play_note(int note, long duration) { int blink_lights = 1; if (blink_lights == 1) { leds_on_v2(note); } if (note != R) { tone(tonepin, note, duration); delay(duration); delay(1); } } void play_song(int which_song) { for (int i=0; i < num_notes; i++) { play_note(song[i][0], song[i][1]); } } void loop() { // store the time since the Arduino started running in a variable unsigned long currentTime = millis(); // compare the current time to the previous time an LED turned on // if it is greater than your interval, run the if statement if (currentTime - previousTime > interval) { // save the current time as the last time you changed an LED previousTime = currentTime; // Turn the LED on digitalWrite(led, HIGH); // increment the led variable // in 10 minutes the next LED will light up led++; if (led == 7) { } } switchState = digitalRead(switchPin); if (switchState != prevSwitchState) { for (int x = 4; x < 8; x++) { digitalWrite(x, LOW); } led = 2; previousTime = currentTime; prevSwitchState = switchState; } prevSwitchState = switchState; play_song(0); delay(1000); }


In: Electrical Engineering

In order to test the functionality of a piezo sensor, we simply connect a LED with...

In order to test the functionality of a piezo sensor, we simply connect a LED with a resistance to the piezoelectric sensor. a. (5 pts) Could the LED work if we put pressure to the sensor? b. (10 pts) what is the element that we have to add to make sure that the LED will provide light ? why , justify ? Can I use Aurduino Uno IN PART b? The rectifier circuit isn't covered in my course yet. thanks

In: Electrical Engineering

Design and discuss four bit BCD adder. Differentiate it from parallel adder          

Design and discuss four bit BCD adder. Differentiate it from parallel adder          

In: Electrical Engineering

i want to take a 12vac input voltage and convert it to 20vdc , 12vdc+, 12vdc-,...

i want to take a 12vac input voltage and convert it to 20vdc , 12vdc+, 12vdc-, 5vdc+

How can i do that using a full bridge rectifier, zener diodes, diodes, capacitors. Cannot use a voltage rectifier chip.

In: Electrical Engineering

Q.1 A parallel plate transmission line has plate separation d = 1 cm, and filled with...

Q.1 A parallel plate transmission line has plate separation d = 1 cm, and filled with teflon having dielectric constant εr = 2.1.

  1. Determine the maximum operating frequency such only the TEM mode will propagate.
  2. If the operating wavelength is λ = 3 mm. Find how many waves modes will propagate.
  3. If the operating frequency is 30 GHz, mode m = 1 and m = 2 will be above cutoff. Determine the group delay difference between these two modes over a distance of 1 cm.

In: Electrical Engineering

a. Using Matlab scripts create the following matrices (???1 and ???2) ???1 = [ 3 2...

a. Using Matlab scripts create the following matrices (???1 and ???2)

???1 = [
3 2 −3 6 7 4 3 −6 7
], ???2 = [
2 1 7 3 3 9 −6 6 1
]   

b. Write code to add the second row of ???1 to the third row of ???2 and store results in the first row of ???1.

c. Write code to add the second column of ???1 with the third column of ???2 and store results in the first column of ???2

In: Electrical Engineering

In Verilog, implement a circuit capable of adding and subtracting 8-bit binary numbers. You should submit...

In Verilog, implement a circuit capable of adding and subtracting 8-bit binary numbers. You should submit a single Verilog file that contains all of the necessary modules and also contain a module named top(A, B, sel, F, C).

For the selection, use a 0 to select Addition and a 1 to select Subtraction.

In: Electrical Engineering