Answer:
The differential equation and the boundary conditions are;
A) -kdT(r1)/dr = h[T∞ - T(r1)]
B) -kdT(r2)/dr = q'_s = 734.56 W/m²
Explanation:
We are given;
T∞ = 70°C.
Inner radii pipe; r1 = 6cm = 0.06 m
Outer radii of pipe;r2 = 6.5cm=0.065 m
Electrical heat power; Q'_s = 300 W
Since power is 300 W per metre length, then; L = 1 m
Now, to the heat flux at the surface of the wire is given by the formula;
q'_s = Q'_s/A
Where A is area = 2πrL
We'll use r2 = 0.065 m
A = 2π(0.065) × 1 = 0.13π
Thus;
q'_s = 300/0.13π
q'_s = 734.56 W/m²
The differential equation and the boundary conditions are;
A) -kdT(r1)/dr = h[T∞ - T(r1)]
B) -kdT(r2)/dr = q'_s = 734.56 W/m²
Answer:
A.) 0.3088
B.) 0.0017
C.) part A
Explanation:
A.)




B.)


C.) Since the seat performance for an individual pilot is more important than 39 different pilots.
Answer:
public static int average(int j, int k) {
return (int)(( (long)(i) + (long)(j) ) /2 );
}
Explanation:
The above code returns the average of two integer variables
Line 1 of the code declares a method along with 2 variables
Method declared: average of integer data type
Variables: j and k of type integer, respectively
Line 2 calculates the average of the two variables and returns the value of the average.
The first of two integers to average is j
The second of two integers to average is k
The last parameter ensures average using (j+k)/2