Draw a block diagram to show the communication process between a transmitter and a receiver. By referring to the diagram you draw, explain the role of ELV systems in enhancing the communication effectiveness and efficiency.
In: Electrical Engineering
What are the key differences between Separated extra-low-voltage (SELV) system and Protective extra-low-voltage (PELV)? Illustrate your answer with the help of diagrams.
In: Electrical Engineering
You are the designer for a public address (PA) system to be installed for a new hotel. The hotel shall have 15 storeys, 230 rooms, one recreational floor, one car park floor, two restaurants, and two banquet rooms.
(a) One of the banquet rooms has dimensions 45 m (width) x 35 m (length) x 5.5 m (height). If ceiling-mounted loudspeakers of 110° coverage angle is to be installed, calculate the number of speakers required for the room. State clearly ALL your assumptions in the calculations. Draw a simple layout plan to show the locations of the loudspeakers.
In: Electrical Engineering
I have to design a single phase/50Hz step down transformer. Following information is given
Primary Voltage =240V, Secondary Voltage and current on secondary side should be 24V and 2A respectively.
efficiency should be in range of 70 to 80%.
Provide me all the necessary calculations to design this step down transformer.
And also note down all the hardware components that i should buy for this design.
Note: Tell me if i have missed any information for this project.
In: Electrical Engineering
A single-phase 300-kVA, 220/4400 V, 60 Hz transformer yielded the following information when tested: High voltage winding open: Voltage=220 V, Current=40 A Power=l 000W Low voltage terminal shorted: Voltage= 195 V, Current=68.18A Power=4000W Find the equivalent circuit of the transformer as viewed from the high voltage Calculate the .efficiency of the transformer when it delivers its rated load at rated terminal voltage and 8 power factor lagging.
In: Electrical Engineering
A three-phase line has an impedance of 1 + j3 Ω per phase. The line feeds a balanced delta-connected load, which absorbs a total complex power of 12 + j5 kVA. The line voltage at the load end has a magnitude of 300 V.
Calculate the magnitude of the line voltage at the source end.The magnitude of the line voltage at the source end is ____ V.
In: Electrical Engineering
1. What is the type of transformer used in a SMPS power supply? Why is it necessary to use such type of a transformer?
In: Electrical Engineering
In: Electrical Engineering
Question 1:
Answer the following questions related to AVR Timer/counter:
In: Electrical Engineering
Activity description
A program must be carried out in MATLAB or OCTAVE that acquires and analyzes (continuously or online) the voice signal that is acquired from the sound card of the PC (microphone input) or a signal that is acquired with an acquisition card of data (ex. NI DAQCard).
The program must continuously perform the functions: signal acquisition, spectral analysis of the acquired signal, graphs in the time domain and graphs in the frequency domain (magnitude and phase spectrum).
The program should display the following graphs:
1) Original signal in the time domain
2) Original signal in the frequency domain (magnitude and phase)
Program 1: Initially do not acquire the signal from the PC sound card, instead create a synthetic signal in the MATLAB workspace, for example a signal composed of the sum of two or more sinusoids of different amplitude, frequency and phase . The signal must be visualized in time (oscillations) and the frequency analysis (magnitude spectrum) must show the presence of the original frequencies. It is important to assume a certain sampling frequency and a duration of the synthetic signal.
Program 2: After this works, start with a static version of the voice signal analyzer (ie the input signal is only a defined time window, for example three seconds), i.e. program 2 is an improved version of program version 1 where instead of a synthetic signal the signal that is acquired with the sound card is used in a time range of for example 3s. Note that this frequency is acquired at a certain sampling frequency. Finally, make the necessary adaptations and changes to the version 1 program so that it works online or continuously.
Questions to answer:
1) What is the analysis in the frequency domain of a signal? What
differences exist with respect to time domain
2) What is the FFT?
3) What type of signals (continuous or discrete) are being used in
the program? Explain your answer.
4) Explain what the frequency spectrum of a signal is (remember
that the frequency spectrum is two graphs).
5) According to the project, generally what type of signals do we
find in nature (continuous or discrete) and what type of signals do
computer systems use (continuous or discrete)?
In: Electrical Engineering
Perform circuit analysis for an Open Wye – Open Delta connection, assuming a purely resistive load. Find real and reactive powers from both transformers and find the rating of this connection with respect to the full bank of three transformers.
In: Electrical Engineering
Given E = 12ρzcosφ aρ − 6ρzsinφ aφ + 6ρ^2
cosφ az.
a. Determine if E is a conservative vector function.
b. Calculate the charge density at P(-2, 0, -1)cart.
In: Electrical Engineering
The important of solar energy, benefits can you get using solar energy, how is the process using the solar panels to produce energy and list the advantage and the disadvantage of it.
In: Electrical Engineering
If possible, write neatly and explain its physical meaning, thank you.
Discuss the transmission and reflection of electromagnetic wave from a lossless medium to a lossy medium, normal incidence.
In: Electrical Engineering
Implement on Tinkercad AVR Atmega 32 Timer 0 Prescaler 1024 Delay 10ms
You need to implement the following functions:
need show calculations pulse count = Required Delay/Clock Period
void delay_one_ms(): This function uses Timer0 to implement a one millisecond delay. Follow the steps below to get this function working properly:
#include
void delay_one_ms() {
//use timer0 to implement 1 ms delay
}
void delay_generic(unsigned long ms)
{
//do something here with delay ms
for (int i = 0; i delay_one_ms();
}
}
void setup()
{
pinMode(13, OUTPUT);
}
void loop()
{
digitalWrite(13, HIGH);
delay(1000); // Wait for 1000 millisecond(s)
//delay_generic(1000);
digitalWrite(13, LOW);
delay(1000); // Wait for 1000 millisecond(s)
}
In: Electrical Engineering