diff options
Diffstat (limited to '683/CH30/EX30.4')
-rwxr-xr-x | 683/CH30/EX30.4/CD_4.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/683/CH30/EX30.4/CD_4.sce b/683/CH30/EX30.4/CD_4.sce new file mode 100755 index 000000000..baffdd600 --- /dev/null +++ b/683/CH30/EX30.4/CD_4.sce @@ -0,0 +1,20 @@ +// sum 30-5
+clc;
+clear;
+G=2;
+P=5000;
+Ks=1.7;
+Pd=P*Ks;
+K2=1.7;
+p=15.88;
+n1=17;
+n2=n1*G;
+D1=n1*p;
+D2=n2*p;
+C=40*p;
+Ln=(2*C/p)+((n1+n2)/2)+((((n2-n1)/(2*%pi))^2)*(p/C));
+L=Ln*p;
+
+ // printing data in scilab o/p window
+ printf("L is %0.2f mm ",L);
+//The difference in the value of L is due to rounding-off the values.
|