blob: ea25d989c2637d4a49c94424f915dcae4183fb22 (
plain)
1
2
3
4
5
6
7
|
clc;
disp("Example 3.12")
radiusratio=0.2;
// From the appropriate equation we see the dependence of volumetric flow rate with radius
ratio=1-(0.2^4)+((1-(0.2^2))^2)/log(0.2);
disp("Q2/Q1= ");
disp(ratio);
|