Explanation:
animal parts, wood, rock, and clay
Answer:
V=33.66 m/s

Re>4000, The flow is turbulent flow.
Explanation:
Given that
Pressure difference = 50 mm of Hg
We know that density of Hg=136000
ΔP= 13.6 x 1000 x 0.05 Pa
ΔP=680 Pa
Diameter of tunnel = 200 mm
Property of air at 25°C
ρ=1.2
Dynamic viscosity

Velocity of fluid given as


V=33.66 m/s
Reynolds number



Re>4000,So the flow is turbulent flow.
Answer:
Resistance of copper = 1.54 * 10^18 Ohms
Explanation:
<u>Given the following data;</u>
Length of copper, L = 3 kilometers to meters = 3 * 1000 = 3000 m
Resistivity, P = 1.7 * 10^8 Ωm
Diameter = 0.65 millimeters to meters = 0.65/1000 = 0.00065 m
Radius = 0.000325 m
To find the resistance;
Mathematically, resistance is given by the formula;

Where;
- P is the resistivity of the material.
- L is the length of the material.
- A is the cross-sectional area of the material.
First of all, we would find the cross-sectional area of copper.
Area of circle = πr²
Substituting into the equation, we have;
Area = 3.142 * (0.000325)²
Area = 3.142 * 1.05625 × 10^-7
Area = 3.32 × 10^-7 m²
Now, to find the resistance of copper;


<em>Resistance = 1.54 * 10^18 Ohms </em>
Answer:
(a)This portion of the problem asks that we calculate, for a Pb-Mg alloy, the mass of lead in 7.5 kg of thesolidphase at 300C just below the solubility limit.From Figure 9.20, the solubility limit for thephase at
Explanation:
Answer:
Explanation:
for the first question:
P = F(r/12) (1 + r/12)^12N - 1
P = 10000(0.0435/12)(1+0.0435/12)^((12*N)-1)
n P
5 448.7710111
6 468.6865023
7 489.4858002
8
511.208126
9 533.894442
Using C#
public void Main( ){
Print(
}
public double CalcP(double T){
double a = 34172;
double b = 7.9622;
return Math.Exp(T/(0.0101*a) -b);
}
pubic void Print(params double[ ] T){
foreach (var t in T) {
Console.WriteLine( T-273 + " " + T + " " + CalcP(T) );
}
}