Answer:
a) 6 coulombs
b) The electrons carrying the charge will enter at point b with respect to element and this is because electrons follow in opposite direction of current
c) = -72 joules
Energy is taken from element
Explanation:
Given data:
V ab = -12 v
I ab = 3A
period ( t ) = 2 seconds
a) determine how much charge moves through the element
q = I * t
= 3 * 2 = 6 coulombs
b) The electrons carrying the charge will enter at point b with respect to element and this is because electrons follow in opposite direction of current
c) determine how much energy is transferred
= Vab * Iab * t
= -12 * 3 * 2
= -72 joules
Energy is taken from element
Answer:
Rated power = 1345.66 W/m²
Mechanical power developed = 3169035.1875 W
Explanation:
Wind speed, V = 13 m/s
Coefficient of performance of turbine,
= 0.3
Rotor diameter, d = 100 m
or
Radius = 50 m
Air density, ρ = 1.225 kg/m³
Now,
Rated power = 
or
Rated power = 
or
Rated power = 1345.66 W/m²
b) Mechanical power developed = 
Here, A is the area of the rotor
or
A = π × 50²
thus,
Mechanical power developed = 
or
Mechanical power developed = 3169035.1875 W
Answer:
Explanation:
t1 = 1000 F = 1460 R
t0 = 80 F = 540 R
T2 = 3600 R
The working substance has an available energy in reference to the 80F source of:
B1 = Q1 * (1 - T0 / T1)
B1 = 100 * (1 - 540 / 1460) = 63 BTU
The available energy of the heat from the heat wource at 3600 R is
B2 = Q1 * (1 - T0 / T2)
B2 = 100 * (1 - 540 / 3600) = 85 BTU
The reduction of available energy between the source and the 1460 R temperature is:
B3 = B2 - B1 = 85 - 63 = 22 BTU
Answer:
Thy answer to your very sophisticated question is 1E23
Explanation:
IT JUST IS! Dont ask any questions
mAsquErade, mAsquerade tHat iS mY naME
Answer:
The program is as follows:
i = 1
while(i<11):
j = 1
while(j<=i):
print('*', end = '')
j += 1
i += 1
print()
Explanation:
Initialize i to 1
i = 1
The outer loop is repeated as long as i is less than 11
while(i<11):
Initialize j to 1
j = 1
The inner loop is repeated as long as j is less than or equal i
while(j<=i):
This prints a *
print('*', end = '')
This increments j and ends the inner loop
j += 1
This increments i
i += 1
This prints a blank and ends the inner loop
print()