summaryrefslogtreecommitdiff
path: root/3802/CH8/EX8.9/Ex8_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '3802/CH8/EX8.9/Ex8_9.sce')
-rw-r--r--3802/CH8/EX8.9/Ex8_9.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3802/CH8/EX8.9/Ex8_9.sce b/3802/CH8/EX8.9/Ex8_9.sce
new file mode 100644
index 000000000..9de1ebe68
--- /dev/null
+++ b/3802/CH8/EX8.9/Ex8_9.sce
@@ -0,0 +1,19 @@
+//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex8_9.sce.
+
+clc;
+clear;
+Ra=0.8;
+Rsh=45;
+Rse=0.6;
+P=5e3;
+V=250;
+Il=P/V;
+If=(V+(Rse*Il))/Rsh;
+Ia=Il+If;
+E=V+(Il*Rse)+(Ia*Ra);
+printf("\n Armature generated voltage=%3.2f volt \n",E)