diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1205/CH3/EX3.7 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1205/CH3/EX3.7')
-rw-r--r-- | 1205/CH3/EX3.7/S_3_7.sce | 12 |
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)
|