Answer:
Explanation:
Given:
Tooth Number, N = 24
Diametral pitch pd = 12
pitch diameter, d = N/pd = 24/12 = 2in
circular pitch, pc = π/pd = 3.142/12 = 0.2618in
Addendum, a = 1/pd = 1/12 =0.08333in
Dedendum, b = 1.25/pd = 0.10417in
Tooth thickness, t = 0.5pc = 0,5 * 0.2618 = 0.1309in
Clearance, c = 0.25/pd = 0.25/12 = 0.02083in
Answer:
Explanation:
Usage: flip [-t|-u|-d|-m] filename[s]
Converts ASCII files between Unix, MS-DOS/Windows, or Macintosh newline formats
Options:
-u = convert file(s) to Unix newline format (newline)
-d = convert file(s) to MS-DOS/Windows newline format (linefeed + newline)
-m = convert file(s) to Macintosh newline format (linefeed)
-t = display current file type, no file modifications
Answer:
h = 375 KW/m^2K
Explanation:
Given:
Thermo-couple distances: L_1 = 10 mm , L_2 = 20 mm
steel thermal conductivity k = 15 W / mK
Thermo-couple temperature measurements: T_1 = 50 C , T_2 = 40 C
Air Temp T_∞ = 100 C
Assuming there are no other energy sources, energy balance equation is:
E_in = E_out
q"_cond = q"_conv
Since, its a case 1-D steady state conduction, the total heat transfer rate can be found from Fourier's Law for surfaces 1 and 2
q"_cond = k * (T_1 - T_2) / (L_2 - L_1) = 15 * (50 - 40) / (0.02 - 0.01)
=15KW/m^2
Assuming SS is solid, temperature at the surface exposed to air will be 60 C since its gradient is linear in the case of conduction, and there are two temperatures given in the problem. Convection coefficient can be found from Newton's Law of cooling:
q"_conv = h * ( T_∞ - T_s ) ----> h = q"_conv / ( T_∞ - T_s )
h = 15000 W / (100 - 60 ) C = 375 KW/m^2K
Answer: environmental impact
Explanation:
From the question, we are informed that Harlin is designing a new car engine that does not create pollution.
The technological design factor which is probably the most important for the design is the impact on the environment.
Pollution has a negative effect on the environment a d doing this shows that emphasis is placed on how the environmental issue of pollution can be tackled.
Answer:
The code is attached.
Explanation:
I created a string s including 6 colors with spaces in between. Then I converted the string into a list x by using split() method. I used three different methods for removing elements from the list. These methods are remove(), pop() and del.
Then I used methods append(), insert() and extend() for adding elements to the list.
Finally I converted list into a string using join() and adding space in between the elements of the list.