Answer:
See explanation
Explanation:
The magnetic force is
F = qvB sin θ
We see that sin θ = 1, since the angle between the velocity and the direction of the field is 90º. Entering the other given quantities yields
F
=
(
20
×
10
−
9
C
)
(
10
m/s
)
(
5
×
10
−
5
T
)
=
1
×
10
−
11
(
C
⋅
m/s
)
(
N
C
⋅
m/s
)
=
1
×
10
−
11
N
Answer:
The source temperature is 1248 R.
Explanation:
Second law efficiency of the engine is the ratio of actual efficiency to the maximum possible efficiency that is reversible efficiency.
Given:
Temperature of the heat sink is 520 R.
Second law efficiency is 60%.
Actual thermal efficiency is 35%.
Calculation:
Step1
Reversible efficiency is calculated as follows:



Step2
Source temperature is calculated as follows:



T = 1248 R.
The heat engine is shown below:
Thus, the source temperature is 1248 R.
Answer:
a) Δd(change in wood diameter) = 5%
b) The wood would swell since the moisture content is increasing which will also led to increase in the wood's diameter
C) new diameter (D2) = 10.5 in
Explanation:
Wood pole diameter = 10 inches
moisture content = 5%
FSP = 30%
A) The percentage change in the wood's diameter
note : moisture fluctuations from 5% to 30% causes dimensional changes in the wood but above 30% up to 55% causes no change. hence this formula can be used to calculate percentage change in the wood's diameter
Δd/d = 1/5(30 - 5)
Δd/d = 5%
Δd = 5%
B) would the wood swell or shrink
The wood would swell since the moisture content is increasing which will also led to increase in the wood's diameter
C) The new diameter of the wood
D2 = D + D(
)
D = initial diameter= 10 in , M1 = initial moisture content = 5%
therefore D2 = 10 + 10( 5/100 )
new diameter (D2) = 10.5 in
Using the knowledge of computational language in python it is possible to write a code that writes a list and defines the arrange.
<h3>Writing code in python:</h3>
<em>def isSorted(lyst):</em>
<em>if len(lyst) >= 0 and len(lyst) < 2:</em>
<em>return True</em>
<em>else:</em>
<em>for i in range(len(lyst)-1):</em>
<em>if lyst[i] > lyst[i+1]:</em>
<em>return False</em>
<em>return True</em>
<em>def main():</em>
<em>lyst = []</em>
<em>print(isSorted(lyst))</em>
<em>lyst = [1]</em>
<em>print(isSorted(lyst))</em>
<em>lyst = list(range(10))</em>
<em>print(isSorted(lyst))</em>
<em>lyst[9] = 3</em>
<em>print(isSorted(lyst))</em>
<em>main()</em>
See more about python at brainly.com/question/18502436
#SPJ1