Answer:
surface temperature = 128.74⁰c
Explanation:
Given data
diameter of cable = 5 mm = 0.005 m
length of cable = 4 m
T∞ ( surrounding temperature ) = 20⁰c
voltage drop across cable ( dv )= 60 V
current across cable = 1.5 A
attached to this answer is the comprehensive analysis and solution to the problem.
The assumption made is not a good one since the calculated Ts ( surface temperature ) is very much different from the assumed Ts
B) Oxygen combines with nitrogen in the air to form NOx at about 2500 degrees Fahrenheit.
Answer:
it is not possible to place the wires in the condui
Explanation:
given data
total area = 2.04 square inches
wires total area = 0.93 square inches
maximum fill conduit = 40%
to find out
Can it is possible place wire in conduit conduit
solution
we know maximum fill is 40%
so here first we get total area of conduit that will be
total area of conduit = 40% × 2.04
total area of conduit = 0.816 square inches
but this area is less than required area of wire that is 0.93 square inches
so we can say it is not possible to place the wires in the conduit
Answer:
You need a 120V to 24V commercial transformer (transformer 1:5), a 100 ohms resistance, a 1.5 K ohms resistance and a diode with a minimum forward current of 20 mA (could be 1N4148)
Step by step design:
- Because you have a 120V AC voltage supply you need an efficient way to reduce that voltage as much as possible before passing to the rectifier, for that I recommend a standard 120V to 24V transformer. 120 Vrms = 85 V and 24 Vrms = 17V = Vin
- Because 17V is not 15V you still need a voltage divider to step down that voltage, for that we use R1 = 100Ω and R2 = 1.3KΩ. You need to remember that more than 1 V is going to be in the diode, so for our calculation we need to consider it. Vf = (V*R2)/(R1+R2), V = Vin - 1 = 17-1 = 16V and Vf = 15, Choosing a fix resistance R1 = 100Ω and solving the equation we find R2 = 1.5KΩ
- Finally to select the diode you need to calculate two times the maximum current and that would be the forward current (If) of your diode. Imax = Vf/R2 = 10mA and If = 2*Imax = 20mA
Our circuit meet the average voltage (Va) specification:
Va = (15)/(pi) = 4.77V considering the diode voltage or 3.77V without considering it
Answer:
Explanation:
ADT for an 2-D array:
struct array{
int arr[10];
}arrmain[10];
An application that stores an array with 1000 rows and 1000 columns, where less than 10,000 of the array values are non-zero. The two different implementations for such arrays that would be more space efficient than a standard two-dimensional array implementation requiring one million positions are :
1) struct array{
int *p;
}arr[1000];
2) struct array{
int *p;
}arr[1000];