blob: 946ab3b4316c5ad9e9f0892cf0d22a51069d35e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// sum 10-1
clc;
clear;
sigta=140/2;
nt=0.75;
//Let the flow rate be Q
Q=0.25;
v=1.2;
D=1.13*sqrt(Q/v);
D=520;
p=0.7;
C=9;
t=(p*D)/(2*sigta*nt)+C;
// printing data in scilab o/p window
printf(" t is %0.1f mm ",t);
|