summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.30/Ex2_30.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /695/CH2/EX2.30/Ex2_30.sce
downloadScilab-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.30/Ex2_30.sce')
-rwxr-xr-x695/CH2/EX2.30/Ex2_30.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/695/CH2/EX2.30/Ex2_30.sce b/695/CH2/EX2.30/Ex2_30.sce
new file mode 100755
index 000000000..23d36b4f7
--- /dev/null
+++ b/695/CH2/EX2.30/Ex2_30.sce
@@ -0,0 +1,23 @@
+//Caption:Determine the (a)speed at full load (b)speed at double full load (c)stalling torque in terms of full load torque
+//Exa:2.30
+clc;
+clear;
+close;
+V=250;//in volts
+R_a=0.2;//in ohms
+N_1=800;//in rpm
+R_f=250;//in ohms
+I_f=V/R_f;//in amperes
+I=41;//in ampers
+I_a1=I-I_f;//in amperes
+E_1=V-(I_a1*R_a);//in volts
+E_2=V-(I_a1*(R_a+2));//in volts
+N_2=E_2*N_1/E_1;
+disp(N_2,'(a) Speed at full load (in rpm)=');
+I_a2=I_a1*2;//in amperes
+E_3=V-I_a2*(R_a+2);//in volts
+N_3=E_3*N_1/E_1;//in rpm
+disp(N_3,'(b) Speed at double full load (in rpm)=');
+I_ao=V/(R_a+2);
+r=I_ao/I_a1;
+disp(r,'(c) stalling torque is (times full load torque) =') \ No newline at end of file