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/CH19/EX19.3/S_19_3.sce | |
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/CH19/EX19.3/S_19_3.sce')
-rw-r--r-- | 1205/CH19/EX19.3/S_19_3.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1205/CH19/EX19.3/S_19_3.sce b/1205/CH19/EX19.3/S_19_3.sce new file mode 100644 index 000000000..4a0cfee32 --- /dev/null +++ b/1205/CH19/EX19.3/S_19_3.sce @@ -0,0 +1,20 @@ +clc;
+m=10;//kg, mass of disk
+r=200;//mm, radius of disk
+r=r/1000;//m, conversion into meter
+Tn=1.13;//s, Period of torsional vibration for disk
+T=1.93;//s, Period of torsional vibration for gear
+theta=90;//degrees
+theta=theta*%pi/180;//rad
+//From theory we get
+I=1/2*m*r^2;//kg,
+K=(2*%pi/Tn)^2*r;//N.m/rad , torsional spring constant
+printf("torsional spring constant = %.2f N.m/rad \n",K);
+//For gear
+Igear=(T/2/%pi)^2*K;//kg.m^2, moment of inertia of gear
+printf("moment of inertia of gear = %.3f kg.m^2\n",Igear);
+//Wm=Theta*Wn=theta*2*%pi/T
+
+Wm=theta*2*%pi/T;//rad/s MAximum angular velocity
+printf("Maximum angular velocity = %.2f rad/s \n",Wm);
+
|