Answer:
Hold the tape in place and go down to the end.
Explanation:
Answer:
Explanation:
Mean temperature is given by

Tmean = (Ti + T∞)/2

Tmean = 107.5⁰C
Tmean = 107.5 + 273 = 380.5K
Properties of air at mean temperature
v = 24.2689 × 10⁻⁶m²/s
α = 35.024 × 10⁻⁶m²/s
= 221.6 × 10⁻⁷N.s/m²
= 0.0323 W/m.K
Cp = 1012 J/kg.K
Pr = v/α = 24.2689 × 10⁻⁶/35.024 × 10⁻⁶
= 0.693
Reynold's number, Re
Pv = 4m/πD²
where Re = (Pv * D)/
Substituting for Pv
Re = 4m/(πD
)
= (4 x 0.003)/( π × 6 ×10⁻³ × 221.6 × 10⁻⁷)
= 28728.3
Since Re > 2000, the flow is turbulent
For turbulent flows, Use
Dittus - Doeltr correlation with n = 0.03
Nu = 0.023Re⁰⁸Pr⁰³ = (h₁D)/k
(h₁ × 0.006)/0.0323 = 0.023(28728.3)⁰⁸(0.693)⁰³
(h₁ × 0.006)/0.0323 = 75.962
h₁ = (75.962 × 0.0323)/0.006
h₁ = 408.93 W/m².K
Answer:
a) 4.7 kΩ, +/- 5%
b) 2.0 MΩ, +/- 20%
Explanation:
a) If the resistor has the following combination of color bands:
1) Yellow = 1st digit = 4
2) Violet = 2nd digit = 7
3) Red = multiplier = 10e2
4) Gold = tolerance = +/- 5%
this means that the resistor has 4700 Ω (or 4.7 kΩ), with 5% tolerance.
b) Repeating the process for the following combination of color bands:
1) Red = 1st digit = 2
2) Black = 2nd digit = 0
3) Green = multiplier = 10e5
4) Nothing = tolerance = +/- 20%
This combination represents to a resistor of 2*10⁶ Ω (or 2.0 MΩ), with +/- 20% tolerance.
Answer:
a)5.28 Å , b)3.73 Å , c)3.048 Å
Explanation:
the atoms are situated only at the corners of cube.Each and every atom in simple cubic primitive at the corner is shared with 8 adjacent unit cells.
Therefore, a particular unit cell consist only 1/8th part of an atom.
The lattice constant of a simple cubic primitive cell is 5.28 Å
We know formula of distance,
d = 
a)(100)
a=5.28 Å
Distance =
=5.28 Å
b)(110)
Distance =
= 3.73 Å
c)(111)
Distance=
= 3.048 Å
Answer:
Explanation:
var generator = new Random(1);
// Now the nextGaussian() function returns a normal distribution of random numbers with the following parameters: a mean of zero and a standard deviation of one
var draw = function() {
var num = generator.nextGaussian();
var standardDeviation = 60;
var mean = 2003;
// Multiply by the standard deviation and add the mean.
var x = standardDeviation * num + mean;
noStroke();
fill(214, 159, 214, 10);
ellipse(x, 200, 16, 16); };
Hope this will be helpful