From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 695/CH3/EX3.6/Ex3_6.sce | 17 +++++++++++++++++ 695/CH3/EX3.6/Ex3_6.txt | 17 +++++++++++++++++ 695/CH3/EX3.6/R3_6.txt | 12 ++++++++++++ 3 files changed, 46 insertions(+) create mode 100755 695/CH3/EX3.6/Ex3_6.sce create mode 100755 695/CH3/EX3.6/Ex3_6.txt create mode 100755 695/CH3/EX3.6/R3_6.txt (limited to '695/CH3/EX3.6') diff --git a/695/CH3/EX3.6/Ex3_6.sce b/695/CH3/EX3.6/Ex3_6.sce new file mode 100755 index 000000000..c621385fe --- /dev/null +++ b/695/CH3/EX3.6/Ex3_6.sce @@ -0,0 +1,17 @@ +//Caption:Determine the (a)No load input power (b)magnetising component of current and no load power factor +//Exa:3.6 +clc; +clear; +close; +f=50;//in Hz +P=20*1000;//in watts +E_1=2200;//in volts +E_2=220;//in volts +I=1.3;//in amperes +I_w=0.5;//in amperes +W=E_2*I_w; +disp(W,'(a)No load input power (in watts)=') +pf=I_w/I; +disp(pf,'(b)No load power factor='); +I_m=I*sqrt(1-pf^2); +disp(I_m,' Magnetising component of current (in amperes)') \ No newline at end of file diff --git a/695/CH3/EX3.6/Ex3_6.txt b/695/CH3/EX3.6/Ex3_6.txt new file mode 100755 index 000000000..c621385fe --- /dev/null +++ b/695/CH3/EX3.6/Ex3_6.txt @@ -0,0 +1,17 @@ +//Caption:Determine the (a)No load input power (b)magnetising component of current and no load power factor +//Exa:3.6 +clc; +clear; +close; +f=50;//in Hz +P=20*1000;//in watts +E_1=2200;//in volts +E_2=220;//in volts +I=1.3;//in amperes +I_w=0.5;//in amperes +W=E_2*I_w; +disp(W,'(a)No load input power (in watts)=') +pf=I_w/I; +disp(pf,'(b)No load power factor='); +I_m=I*sqrt(1-pf^2); +disp(I_m,' Magnetising component of current (in amperes)') \ No newline at end of file diff --git a/695/CH3/EX3.6/R3_6.txt b/695/CH3/EX3.6/R3_6.txt new file mode 100755 index 000000000..e9bd60112 --- /dev/null +++ b/695/CH3/EX3.6/R3_6.txt @@ -0,0 +1,12 @@ + + (a)No load input power (in watts)= + + 110. + + (b)No load power factor= + + 0.3846154 + + Magnetising component of current (in amperes) + + 1.2 \ No newline at end of file -- cgit