summaryrefslogtreecommitdiff
path: root/695/CH3/EX3.5
diff options
context:
space:
mode:
Diffstat (limited to '695/CH3/EX3.5')
-rwxr-xr-x695/CH3/EX3.5/Ex3_5.sce15
-rwxr-xr-x695/CH3/EX3.5/Ex3_5.txt15
-rwxr-xr-x695/CH3/EX3.5/R3_5.txt12
3 files changed, 42 insertions, 0 deletions
diff --git a/695/CH3/EX3.5/Ex3_5.sce b/695/CH3/EX3.5/Ex3_5.sce
new file mode 100755
index 000000000..1463be81b
--- /dev/null
+++ b/695/CH3/EX3.5/Ex3_5.sce
@@ -0,0 +1,15 @@
+//Caption:Determine the (a)No load power factor(b)iron loss component of current (c)magnetising component of current
+//Exa:3.5
+clc;
+clear;
+close;
+f=50;//in Hz
+W=80;//in watts
+V=4400;//in volts
+I=0.04;//in amperes
+pf=W/(V*I);
+disp(pf,'(a)No load power factor=');
+I_w=I*pf;
+disp(I_w,'(b)Iron loss component of current (in amperes)=');
+I_m=I*sqrt(1-pf^2);
+disp(I_m,'(c)Magnetising component of current (in amperes)') \ No newline at end of file
diff --git a/695/CH3/EX3.5/Ex3_5.txt b/695/CH3/EX3.5/Ex3_5.txt
new file mode 100755
index 000000000..1463be81b
--- /dev/null
+++ b/695/CH3/EX3.5/Ex3_5.txt
@@ -0,0 +1,15 @@
+//Caption:Determine the (a)No load power factor(b)iron loss component of current (c)magnetising component of current
+//Exa:3.5
+clc;
+clear;
+close;
+f=50;//in Hz
+W=80;//in watts
+V=4400;//in volts
+I=0.04;//in amperes
+pf=W/(V*I);
+disp(pf,'(a)No load power factor=');
+I_w=I*pf;
+disp(I_w,'(b)Iron loss component of current (in amperes)=');
+I_m=I*sqrt(1-pf^2);
+disp(I_m,'(c)Magnetising component of current (in amperes)') \ No newline at end of file
diff --git a/695/CH3/EX3.5/R3_5.txt b/695/CH3/EX3.5/R3_5.txt
new file mode 100755
index 000000000..a173d4162
--- /dev/null
+++ b/695/CH3/EX3.5/R3_5.txt
@@ -0,0 +1,12 @@
+
+ (a)No load power factor=
+
+ 0.4545455
+
+ (b)Iron loss component of current (in amperes)=
+
+ 0.0181818
+
+ (c)Magnetising component of current (in amperes)
+
+ 0.0356289 \ No newline at end of file