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 /695/CH2/EX2.45 | |
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 '695/CH2/EX2.45')
-rwxr-xr-x | 695/CH2/EX2.45/Ex2_45.sce | 14 | ||||
-rwxr-xr-x | 695/CH2/EX2.45/Ex2_45.txt | 14 | ||||
-rwxr-xr-x | 695/CH2/EX2.45/R2_45.txt | 5 |
3 files changed, 33 insertions, 0 deletions
diff --git a/695/CH2/EX2.45/Ex2_45.sce b/695/CH2/EX2.45/Ex2_45.sce new file mode 100755 index 000000000..91e00be32 --- /dev/null +++ b/695/CH2/EX2.45/Ex2_45.sce @@ -0,0 +1,14 @@ +//Caption:Find the no load speed
+//Exa:2.45
+clc;
+clear;
+close;
+V=220;//in volts
+R_a=2.5;//in ohms
+N_1=859;//in rpm
+I_ao=0;
+I_a=8;//in amperes
+E_b1=V-I_a*R_a;
+E_bo=V-I_ao*R_a;
+N_o=N_1*E_bo/E_b1;
+disp(N_o,'No Load Speed (in RPM)=')
\ No newline at end of file diff --git a/695/CH2/EX2.45/Ex2_45.txt b/695/CH2/EX2.45/Ex2_45.txt new file mode 100755 index 000000000..91e00be32 --- /dev/null +++ b/695/CH2/EX2.45/Ex2_45.txt @@ -0,0 +1,14 @@ +//Caption:Find the no load speed
+//Exa:2.45
+clc;
+clear;
+close;
+V=220;//in volts
+R_a=2.5;//in ohms
+N_1=859;//in rpm
+I_ao=0;
+I_a=8;//in amperes
+E_b1=V-I_a*R_a;
+E_bo=V-I_ao*R_a;
+N_o=N_1*E_bo/E_b1;
+disp(N_o,'No Load Speed (in RPM)=')
\ No newline at end of file diff --git a/695/CH2/EX2.45/R2_45.txt b/695/CH2/EX2.45/R2_45.txt new file mode 100755 index 000000000..4450e16f3 --- /dev/null +++ b/695/CH2/EX2.45/R2_45.txt @@ -0,0 +1,5 @@ +
+ No Load Speed (in RPM)=
+
+ 944.9
+
\ No newline at end of file |