diff options
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 ; ");
|