summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.42/Example1_42.sce
diff options
context:
space:
mode:
Diffstat (limited to '1892/CH1/EX1.42/Example1_42.sce')
-rwxr-xr-x1892/CH1/EX1.42/Example1_42.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1892/CH1/EX1.42/Example1_42.sce b/1892/CH1/EX1.42/Example1_42.sce
new file mode 100755
index 000000000..da0cf3856
--- /dev/null
+++ b/1892/CH1/EX1.42/Example1_42.sce
@@ -0,0 +1,17 @@
+// Example 1.42
+
+clear; clc; close;
+
+format('v',6);
+// Given data
+Sfl=5;//in %
+IscByIfl=6;//ratio
+
+//Calculations
+Sfl=Sfl/100;//slip
+TstByTfl=1;//as Tfl=Tst
+//Let X= tapping on transformer
+X=sqrt(TstByTfl/(IscByIfl^2)/Sfl);//Tapping on transformer
+disp(X,"Tapping on auto transformer : ");
+IstByIfl=X^2*IscByIfl;//supply starting current to full load current
+disp("The supply starting current is "+string(IstByIfl)+" times of full load current.");