Ch 26
32. A power pack charging a cell phone battery has an output of 0.4 A at 5.2 V, both rms. If the power pack is plugged into a 120 V wall socket, what is the rms current? 17.3 mA
33. A neon sign transformer has a 450 Watt AC output with an rms voltage of 15kV when connected to a normal household outlet. There are 500 turns of wire in the primary cell.
a) How many turns of wire are in the secondary coil? 62,500 turns
b) When the transformer is running full power. What is the current in the secondary coil? 30 mA
c) When the transformer is running full power. What is the current in the primary coil? 3.75 A
34. A generator produces 250 kW of electric power at 7.2 kV. The current is transmitted to a remote location through wires with a total resistance of 15 W.
a) What is the power loss due to the resistance in the wires? 18 kW
b) What is the power loss if the voltage increased to 30 kV? 1 kW
35. A 20 µF capacitor is connected across an AC generator that produces a peak voltage 6 Volts. The peak current is 0.2 A. What is the oscillation frequency in Hz? 265 Hz
36. A 500 µH inductor is connected across an AC generator that produces a 3.5 V rms Voltage. What is the frequency if the peak current is 50 mA? 31.5 kHz
37. An FM radio station broadcasts at a frequency of 103.5 MHz. What inductance should be paired with a 10 pF capacitor to build a receiver circuit for this station? 236 nH
In: Electrical Engineering
A 400 V,50 Hz, six-pole three-phase induction motor drives a
constant load of 140 N.m. The motor has the following
parameters
?1=0.294 Ω
?1=1.39 ??
??=41 ??
?2′=0.156 Ω
?2′=0.74 ??
1) Starting.
Calculate the following:
i) Motor starting current.
ii) Motor starting torque.
2) Maximum operating point. Calculate the following:
i) Slip at which maximum torque is developed.
ii) Maximum torque developed.
3) Steady-state operation.
Calculate the following:
i) Motor slip.
ii) Motor speed.
iii) Motor current.
iv) Motor power factor.
v) Motor input power.
vi) Motor output power.
vii) Motor efficiency.
4) Speed control of the induction motor:
We need to control the speed of the load by controlling the speed
of the induction motor using the ?/? method. The load should be
driven at 700 rpm at the same slip obtained in part 3-i
above. Calculate the following:
i) The source line-line voltage and frequency.
ii) Motor current.
iii) Motor power factor.
iv) Motor input power.
v) Motor output power.
vi) Motor efficiency.
vii) The line voltage control method can not be used here to reduce the motor speed to 700 rpm, Why? Fully explain your answer.
Notes:
- For calculation:
▪ Use the recommended IEEE equivalent circuit.
▪ Use five decimal digits.
▪ Make sure all equations and numbers are clear.
What is missing?
In: Electrical Engineering
Assessment Question Week 2: Production Possibility
Frontier
In 2017, Nepal production of rice and machinery in 2017 was
published by the Nepal Bureau of Statistics as indicated by the
table below.
Production in Nepal
P Q R
S T U V
W X Y Z
Rice (1000 tons) 0 10
26 37 45 50
55 59 66 77
80
Machinery (units) 90 89
85 80 75 70
65 60 50 30 0
Based on the table above, a production possibility frontier for
Nepal can be plotted as below:
Use the Nepal production table and production possibility frontier
to answer the following questions.
(a) Name positions B, V and D. Explain the implications
of each of the production positions (B, V, D) on Nepal’s
economy.
(b) Supposing Nepal is operating at level T what is the
opportunity cost of producing 10,000 more tons of rice? Also,
suppose Nepal is operating at X what is the opportunity cost of
producing 70 units of machinery?
(c) Use the graph below to answer the questions that
follow
(i) Suppose Nepal begins to manufacture fertilizers,
explain the impact of the discovery of fertilizers to Nepal’s
economy using PPF.
(ii) Supposing there is a discovery of steel in Nepal,
explain the impact of steel to the economy of Nepal using a
PPF.
(iii) The Minister of Finance in Nepal advices that in
order to increase rice production and machinery, each sector
requires USD 50 billion. Explain the impact of the budgetary
allocation on the economy of Nepal using PPF.
In: Economics
java code
Write a program that gives the user a menu of six choices (use integers) to select from. The choices are circle, triangle, cone, cylinder, sphere, and quit. (The formulas are given below.) Once the figure is calculated, an informative message should be printed and the user shown the menu again, so that another choice can be made. The formulas are:
this is what i have so far
public static void main(String[] args) {
}
public static void menu( String input) {
if
}
public static void circle( double raduis) {
double area =
3.14*raduis*raduis;
System.out.println("the area of
cirle is :"+ area);
}
public static void triangle( double base, double
height) {
double area =
1/2*base*height;
System.out.println("the area of the
triangle is :"+ area);
}
public static void cone( double raduis, double height
) {
double volume = 1/3*3.14 *
raduis *raduis* height;
System.out.println("the volume of
the cone is :"+ volume);
}
public static void cylinder(double raduis, double
height) {
double volume = 3.14*
raduis*raduis* height;
System.out.println("the volume of
the cylinder is :"+ volume);
}
public static void sphere(double raduis) {
double volume = 4/3*3.14 *
raduis *raduis*raduis ;
System.out.println("the volume of
the sphere is :"+ volume);
}
}
In: Computer Science
Create individual python code cells for each of the three problems below. In each code cell, use any additional variables and comments as needed to program a solution to the corresponding problem. When done, download the ipynb file and submit it to the appropriate dropbox in the course's canvas page
. 1.
a. Cell Number 1 * Recreate the same list of dictionaries you used during assignment 2.09. (Scroll down to see assignment 2.09 instructions) * Create another variable and define it as an empty list. It will store middle names, so name the variable appropriately. * Loop through the list of dictionaries using a `for` loop, and add each middle name to the list created to hold middle names in the previous bullet point.
b. Cell Number 2 * Create a variable and assign it the length of the middle names list created in the previous cell. Use the appropriate instruction to calculate the length instead of just typing the correct number, which is known as hard-coding. (Hint: You don't have to redefine the list in the new cell as long as you ran the previous cell recently) * Use a `while` loop to count up to the length of the middle names list, and print out the index and value of each item in the list using a format string. (Hint: start your counter at `0` and stop iterating before you reach the length by using a `<` operator)
c. Cell Number 3 * Loop through the list of dictionaries defined in the first cell using another `for` loop. (Hint: Again, you do not need to redefine the list of dictionaries from the previous cell as long as you executed it recently) * Nested inside of that loop, loop through the keys in the current dictionary using another `for` loop and the `enumerate()` instruction. * Nested inside of the nested loop, print out the key and value using a format string. (Hint: You'll need to use the key to get the value out of the dictionary) * Also inside of the nested loop, once the index is greater than or equal to 2, break out of the loop.
2.09 assingment instructions for question 1
**Requirements:** * Create a list containing separate dictionaries for at least 3 people (family members, actors, invisible friends, etc.) and assign the list to a variable. Instead of using your actual family members' names, I want you think of different names starting with the same letter as your family member so that I can't be accused of identity theft. * Each person dictionary should have at least 4 key/value pairs: * first name * middle name. * age (rounded to the nearest decade) * your favorite thing about them * Be sure to use the same keys for each person (eg. "first_name" for everyone's first names). * Print out the entire list.
In: Computer Science
Create individual python code cells for each of the three problems below. In each code cell, use any additional variables and comments as needed to program a solution to the corresponding problem. When done, download the ipynb file and submit it to the appropriate dropbox in the course's canvas page
. 1.
a. Cell Number 1 * Recreate the same list of dictionaries you used during assignment 2.09. (Scroll down to see assignment 2.09 instructions) * Create another variable and define it as an empty list. It will store middle names, so name the variable appropriately. * Loop through the list of dictionaries using a `for` loop, and add each middle name to the list created to hold middle names in the previous bullet point.
b. Cell Number 2 * Create a variable and assign it the length of the middle names list created in the previous cell. Use the appropriate instruction to calculate the length instead of just typing the correct number, which is known as hard-coding. (Hint: You don't have to redefine the list in the new cell as long as you ran the previous cell recently) * Use a `while` loop to count up to the length of the middle names list, and print out the index and value of each item in the list using a format string. (Hint: start your counter at `0` and stop iterating before you reach the length by using a `<` operator)
c. Cell Number 3 * Loop through the list of dictionaries defined in the first cell using another `for` loop. (Hint: Again, you do not need to redefine the list of dictionaries from the previous cell as long as you executed it recently) * Nested inside of that loop, loop through the keys in the current dictionary using another `for` loop and the `enumerate()` instruction. * Nested inside of the nested loop, print out the key and value using a format string. (Hint: You'll need to use the key to get the value out of the dictionary) * Also inside of the nested loop, once the index is greater than or equal to 2, break out of the loop.
2.09 assingment instructions for question 1
**Requirements:** * Create a list containing separate dictionaries for at least 3 people (family members, actors, invisible friends, etc.) and assign the list to a variable. Instead of using your actual family members' names, I want you think of different names starting with the same letter as your family member so that I can't be accused of identity theft. * Each person dictionary should have at least 4 key/value pairs: * first name * middle name. * age (rounded to the nearest decade) * your favorite thing about them * Be sure to use the same keys for each person (eg. "first_name" for everyone's first names). * Print out the entire list.
In: Computer Science
i. List the different types of horizontal distance measurement methods.
ii. Among the list which method is fastest one and why, explain the principles followed in the same method.
In: Civil Engineering
You have been assigned to discuss diuretics in post conference.
a) Define the term diuretic.
b) List the five types of diuretic drugs and list the major site of action.
In: Nursing
write a java program to Implement a Priority Queue using a linked list. Include a main method demonstrating enqueuing and dequeuing several numbers, printing the list contents for each.
In: Computer Science
In python I want to create a function that takes in a linked list. Using recursion only, I want to check if the linked list is sorted. How do i do this?
In: Computer Science