summaryrefslogtreecommitdiff
path: root/1205/CH3/EX3.7/S_3_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '1205/CH3/EX3.7/S_3_7.sce')
-rw-r--r--1205/CH3/EX3.7/S_3_7.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1205/CH3/EX3.7/S_3_7.sce b/1205/CH3/EX3.7/S_3_7.sce
new file mode 100644
index 000000000..325348336
--- /dev/null
+++ b/1205/CH3/EX3.7/S_3_7.sce
@@ -0,0 +1,12 @@
+clc;
+Mo=-24;//N.m *k, Couple of moment
+f=400;//N, Magnitude of force
+OB=300;//mm,Distance of force from point O
+theta=60;// degree, angle made by lever with +ve X axis
+theta=theta*%pi/180;// Conversion of angle into radian
+// Mo=BC_ * F relation 3.7 from section 3.5
+//BC_ * F=BC*f*cos(theta)------ Defination of cross product
+BC=Mo/(-cos(theta)*f);//m
+BC=BC*1000;//mm, Conversion into millimeter
+OC=OB+BC;//mm, Distance from the shaft to the point of application of this equivalenet force
+printf("Distance from the shaft to the point of application of this equivalenet single force is %.2f mm",OC)