Answer:
a) 23.89 < -25.84 Ω
b) 31.38 < 25.84 A
c) 0.9323 leading
Explanation:
A) Calculate the load Impedance
current on load side = 0.75 p.u
power factor angle = 25.84
= 0.75 < 25.84°
attached below is the remaining part of the solution
<u>B) Find the input current on the primary side in real units </u>
load current in primary = 31.38 < 25.84 A
<u>C) find the input power factor </u>
power factor = 0.9323 leading
<em></em>
<em>attached below is the detailed solution </em>
So I’m thinking C because they both have a lot to do with design here is my evidence. Structural engineering is a component of civil engineering which focuses on the design and development of infrastructures such as bridges, skyscrapers, dams. Civil engineering is a professional engineering discipline that deals with the design, construction, and maintenance of the physical and naturally built environment. I may be wrong but hope this helped!
Answer:
Attached below is the Radial power circuit arrangement
Explanation:
Radial power circuit arrangement is done in a way that a single cable starts from the fuse box and connects to all the outlet socket contained in the circuit also the cable contains wires ( live , neutral and earth )
The advantage of a radial power circuit arrangement is that it enables easy identification of electrical faults on the circuit.
Answer:
transmitter hope thus helped!
Explanation:
Answer:
#include<iostream>
Using namespace std;
int main()
{
int n, qty;
double price, amount;
cout<<"Number of items ";
cin>>n;
cout<<"ITEM<<"\t"<<"QUANTITY"<<"\t"<<"PRICE"<<"\t"<<"ITEM TOTAL";
for(int i= 1; I<= n; i++)
{
cin>>qty;
cin>>price;
amount = qty * price;
cout<<i<<"\t "<<qty<<"\t"<<price<<"\t"<<amount;
}
}
Explanation
The above program is written in C++ programming language
5 variables are declared and used in the program
n is declared as an integer to represent the total number of items
qty is declared as integer to represent the total quantity of each item
price is declared as double to represent the amount of each individual item
amount is declared as double to represent the total amount of an item; it is gotten by qty * price
i is declared as integer to iterated between each items
The amount of each item is calculated within the iteration and also printed immediately