diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1892/CH1/EX1.83/Example1_83.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1892/CH1/EX1.83/Example1_83.sce')
-rwxr-xr-x | 1892/CH1/EX1.83/Example1_83.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1892/CH1/EX1.83/Example1_83.sce b/1892/CH1/EX1.83/Example1_83.sce new file mode 100755 index 000000000..4b7d50f3a --- /dev/null +++ b/1892/CH1/EX1.83/Example1_83.sce @@ -0,0 +1,18 @@ +// Example 1.83
+
+clc;clear;close;
+
+// Given data
+format('v',7);
+Zst=25;//in N-m
+
+//calculations
+disp("Zst=K*R2/(R2^2+X2^2)");
+//K=2*Zst*R2
+KbyR2=2*Zst;//calculation
+//(a) Tst=K*2*R2/((2*R2)^2+R2^2)
+Tst=KbyR2*2/(2^2+1);//in N-m
+disp(Tst,"(a) Starting torque in N-m ; ");
+//(b) Tst=K/2*R2/((R2/2)^2+R2^2)
+Tst=KbyR2/2/((1/2)^2+1);//in N-m
+disp(Tst,"(b) Starting torque in N-m ; ");
|