diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /704/CH3/EX3.37 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '704/CH3/EX3.37')
-rwxr-xr-x | 704/CH3/EX3.37/3_37.txt | 18 | ||||
-rwxr-xr-x | 704/CH3/EX3.37/R3_37.txt | 17 | ||||
-rwxr-xr-x | 704/CH3/EX3.37/ex3_37.sce | 18 |
3 files changed, 53 insertions, 0 deletions
diff --git a/704/CH3/EX3.37/3_37.txt b/704/CH3/EX3.37/3_37.txt new file mode 100755 index 000000000..0efb16c50 --- /dev/null +++ b/704/CH3/EX3.37/3_37.txt @@ -0,0 +1,18 @@ +//Caption:In a auto transformer determine Transformation ratio secondary current primary current and number of turns across secondary if total number of turns is 250.
+//Exam:3.37
+clc;
+clear;
+close;
+V_1=250;//Primary voltage(in Voltage)
+V_2=125;//Secondary voltage(in Voltage)
+K=V_2/V_1;//Transformation ratio
+N_1=250;//Primary turns
+disp(K,'Transformation ratio=')
+P_f=1;//Unity power factor
+L=5;//Value of load(in KW)
+I_2=L*1000/(V_2*P_f);//Secondary current(in Amp)
+disp(I_2,'Secondary current(in Amp)=');
+I_1=K*I_2;//Primary current(in Amp)
+disp(I_1,'Primary current(in Amp)=');
+N_2=K*N_1;//Secondary turns
+disp(N_2,'number of turns across secondary winding=');
\ No newline at end of file diff --git a/704/CH3/EX3.37/R3_37.txt b/704/CH3/EX3.37/R3_37.txt new file mode 100755 index 000000000..882283765 --- /dev/null +++ b/704/CH3/EX3.37/R3_37.txt @@ -0,0 +1,17 @@ +
+ Transformation ratio=
+
+ 0.5
+
+ Secondary current(in Amp)=
+
+ 40.
+
+ Primary current(in Amp)=
+
+ 20.
+
+ number of turns across secondary winding=
+
+ 125.
+
\ No newline at end of file diff --git a/704/CH3/EX3.37/ex3_37.sce b/704/CH3/EX3.37/ex3_37.sce new file mode 100755 index 000000000..0efb16c50 --- /dev/null +++ b/704/CH3/EX3.37/ex3_37.sce @@ -0,0 +1,18 @@ +//Caption:In a auto transformer determine Transformation ratio secondary current primary current and number of turns across secondary if total number of turns is 250.
+//Exam:3.37
+clc;
+clear;
+close;
+V_1=250;//Primary voltage(in Voltage)
+V_2=125;//Secondary voltage(in Voltage)
+K=V_2/V_1;//Transformation ratio
+N_1=250;//Primary turns
+disp(K,'Transformation ratio=')
+P_f=1;//Unity power factor
+L=5;//Value of load(in KW)
+I_2=L*1000/(V_2*P_f);//Secondary current(in Amp)
+disp(I_2,'Secondary current(in Amp)=');
+I_1=K*I_2;//Primary current(in Amp)
+disp(I_1,'Primary current(in Amp)=');
+N_2=K*N_1;//Secondary turns
+disp(N_2,'number of turns across secondary winding=');
\ No newline at end of file |