summaryrefslogtreecommitdiff
path: root/3802/CH8/EX8.10/Ex8_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '3802/CH8/EX8.10/Ex8_10.sce')
-rw-r--r--3802/CH8/EX8.10/Ex8_10.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3802/CH8/EX8.10/Ex8_10.sce b/3802/CH8/EX8.10/Ex8_10.sce
new file mode 100644
index 000000000..2615493d1
--- /dev/null
+++ b/3802/CH8/EX8.10/Ex8_10.sce
@@ -0,0 +1,22 @@
+//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex8_10.sce.
+
+clc;
+clear;
+Ra=0.1;
+
+printf("\n (a)")
+Ia=80;
+V=230;
+E=V+(Ia*Ra);
+printf("\n The generated emf when running as generator=%3.0f volt \n",E)
+
+printf("\n (b)")
+Ia=60;
+V=230;
+E=V-(Ia*Ra);
+printf("\n The generated emf when running as motor=%3.0f volt \n",E)