summaryrefslogtreecommitdiff
path: root/3821/CH5/EX5.3/Example5_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3821/CH5/EX5.3/Example5_3.sce')
-rw-r--r--3821/CH5/EX5.3/Example5_3.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3821/CH5/EX5.3/Example5_3.sce b/3821/CH5/EX5.3/Example5_3.sce
new file mode 100644
index 000000000..583bcd87e
--- /dev/null
+++ b/3821/CH5/EX5.3/Example5_3.sce
@@ -0,0 +1,17 @@
+///Example 5.3 Page No:88
+///Find Height required to setup of bar
+//Input data
+clc;
+clear;
+//Import maths
+L=100; //Height of sine bar
+theta=12.8 //angle in degree minut
+//Z=sin(theta)=0.22154849
+Z=0.22154849
+
+///Calculation
+b=Z*L; //Height required to setup in mm
+
+
+///Output
+printf('Height required= %f mm \n',b);