summaryrefslogtreecommitdiff
path: root/695/CH2/EX2.5/Ex2_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '695/CH2/EX2.5/Ex2_5.sce')
-rwxr-xr-x695/CH2/EX2.5/Ex2_5.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/695/CH2/EX2.5/Ex2_5.sce b/695/CH2/EX2.5/Ex2_5.sce
new file mode 100755
index 000000000..3b24f2096
--- /dev/null
+++ b/695/CH2/EX2.5/Ex2_5.sce
@@ -0,0 +1,17 @@
+//Caption:Find the (a)shunt feild current (b)armature current (c)generated emf in armature (d)load resistance
+//Exa:2.5
+clc;
+clear;
+close;
+V_t=250;//in volts
+I=195;//in amperes
+R_f=50;//shunt feild winding resistance in ohms
+R_a=0.05;//armature winding resistance in ohms
+I_f=V_t/R_f;//in amperes
+I_a=I+I_f;//in amperes
+E_g=V_t+(R_a*I_a);
+R_L=V_t/I;
+disp(I_f,'(a) Value of shunt feild current (in Amperes)=')
+disp(I_a,'(b) Value of armature current (in Amperes)=')
+disp(E_g,'(c) Value of generated voltage (in volts)=');
+disp(R_L,'(d) Value of load resistance (in ohms)=') \ No newline at end of file