Answer:
a) V(t) = Ldi(t)/dt
b) If current is constant, V = 0
Explanation:
a) The voltage, V(t), across an inductor is proportional to the rate of change of the current flowing across it with time.
If V represents the Voltage across the inductor
and i(t) represents the current across the inductor in time, t.
V(t) ∝ di(t)/dt
Introducing a proportionality constant,L, which is the inductance of the inductor
The general equation describing the voltage across the inductor of inductance, L, as a function of time when a current flows through it is shown below.
V(t) = Ldi(t)/dt ..................................................(1)
b) If the current flowing through the inductor is constant i.e. does not vary with time
di(t)/dt = 0 and hence the general equation (1) above becomes
V(t) = 0
Answer:
a) 24 kg
b) 32 kg
Explanation:
The gauge pressure is of the gas is equal to the weight of the piston divided by its area:
p = P / A
p = m * g / (π/4 * d^2)
Rearranging
p * (π/4 * d^2) = m * g
m = p * (π/4 * d^2) / g
m = 1200 * (π/4 * 0.5^2) / 9.81 = 24 kg
After the weight is added the gauge pressure is 2.8kPa
The mass of piston plus addded weight is
m2 = 2800 * (π/4 * 0.5^2) / 9.81 = 56 kg
56 - 24 = 32 kg
The mass of the added weight is 32 kg.
Here’s some of them
6. J
7. I
10. O
13. F
14. E
15. N
Full Question
1. Correct the following code and
2. Convert the do while loop the following code to a while loop
declare integer product
declare integer number
product = 0
do while product < 100
display ""Type your number""
input number
product = number * 10
loop
display product
End While
Answer:
1. Code Correction
The errors in the code segment are:
a. The use of do while on line 4
You either use do or while product < 100
b. The use of double "" as open and end quotes for the string literal on line 5
c. The use of "loop" statement on line 7
The correction of the code segment is as follows:
declare integer product
declare integer number
product = 0
while product < 100
display "Type your number"
input number
product = number * 10
display product
End While
2. The same code segment using a do-while statement
declare integer product
declare integer number
product = 0
Do
display "Type your number"
input number
product = number * 10
display product
while product < 100
Answer:
Both model building codes and NFPA 220 can be used to determine the type of construction used in a building.