diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3816/CH1/EX1.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3816/CH1/EX1.1')
-rw-r--r-- | 3816/CH1/EX1.1/1_1.jpg | bin | 0 -> 67507 bytes | |||
-rw-r--r-- | 3816/CH1/EX1.1/1_1.sce | 27 |
2 files changed, 27 insertions, 0 deletions
diff --git a/3816/CH1/EX1.1/1_1.jpg b/3816/CH1/EX1.1/1_1.jpg Binary files differnew file mode 100644 index 000000000..5388f3559 --- /dev/null +++ b/3816/CH1/EX1.1/1_1.jpg diff --git a/3816/CH1/EX1.1/1_1.sce b/3816/CH1/EX1.1/1_1.sce new file mode 100644 index 000000000..6ce13e369 --- /dev/null +++ b/3816/CH1/EX1.1/1_1.sce @@ -0,0 +1,27 @@ +clc;
+clear;
+//case1:
+disp('To find no. of primary & secondary turns:')
+Bm1=1.5;//Max flux density of primary in tesla
+Vt1=10.7;//Terminal voltage of primary in volts
+Bm2=1.46;//Max flux density of secondary in tesla
+Vt2=10.46;//Terminal voltage of secondary in volts
+V1=11000;//Primary RMS voltage in volts
+V2=415;//Secondary RMS voltage in volts
+P=300e3;//Input power in volt-amphere
+N2=(V2)/(Vt2);//No.of turns in secondary
+N1=(V1)/(Vt1);//No.of turns in primary
+disp(N1,'No of turns in primary is')
+disp(N2,'No of turns in secondary is')
+//case2:
+disp('To find rated current:')
+I1=P/(V1);
+I2=P/(V2);
+disp(I1,'The primary rated current in amps is')
+disp(I2,'The secondary rated current in amps is')
+//case3:
+disp('To find primary &secondary load impedance:')
+Z1=(V1)/(I1);
+Z2=(V2)/(I2);
+disp(Z1,'The primary load impedance in ohms is')
+disp(Z2,'The secondary load impedance in ohms is')
|