Answer:
Explanation:
Assumptions is that
1. The flow is an unsteady one
2. Bubbles diameter is constant
3. The bubble velocity is slow
4. There is no homogenous reaction
5. It has a one dimensional flux model along the radial direction
Answer:
Explanation:
% Clears variables and screen
clear; clc
% Asks user for input
n = input('Total number of objects: ');
r = input('Size of subgroup: ');
% Computes and displays permutation according to basic formulas
p = 1;
for i = n - r + 1 : n
p = p*i;
end
str1 = [num2str(p) ' permutations'];
disp(str1)
% Computes and displays combinations according to basic formulas
str2 = [num2str(p/factorial(r)) ' combinations'];
disp(str2)
=================================================================================
Example: check
How many permutations and combinations can be made of the 15 alphabets, taking four at a time?
The answer is:
32760 permutations
1365 combinations
==================================================================================
Answer:

Explanation:
Given data:
Diffusion constant for nitrogen is 
Diffusion flux 
concentration of nitrogen at high presuure = 2 kg/m^3
location on which nitrogen concentration is 0.5 kg/m^3 ......?
from fick's first law

Take C_A as point on which nitrogen concentration is 2 kg/m^3

Assume X_A is zero at the surface


Answer:
≅ 111 KN
Explanation:
Given that;
A medium-sized jet has a 3.8-mm-diameter i.e diameter (d) = 3.8
mass = 85,000 kg
drag co-efficient (C) = 0.37
(velocity (v)= 230 m/s
density (ρ) = 1.0 kg/m³
To calculate the thrust; we need to determine the relation of the drag force; which is given as:
=
× CρAv²
where;
ρ = density of air wind.
C = drag co-efficient
A = Area of the jet
v = velocity of the jet
From the question, we can deduce that the jet is in motion with a constant speed; as such: the net force acting on the jet in the air = 0
SO, 
We can as well say:

We can now replace
in the above equation.
Therefore,
=
× CρAv²
The A which stands as the area of the jet is given by the formula:

We can now have a new equation after substituting our A into the previous equation as:
=
× Cρ 
Substituting our data from above; we have:
=
× 
= 
= 110,990N
in N (newton) to KN (kilo-newton) will be:
= 
= 110.990 KN
≅ 111 KN
In conclusion, the jet engine needed to provide 111 KN thrust in order to cruise at 230 m/s at an altitude where the air density is 1.0 kg/m³.