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 /2414/CH14/EX14.7 | |
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 '2414/CH14/EX14.7')
-rwxr-xr-x | 2414/CH14/EX14.7/Ex14_7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2414/CH14/EX14.7/Ex14_7.sce b/2414/CH14/EX14.7/Ex14_7.sce new file mode 100755 index 000000000..7f81dcd6d --- /dev/null +++ b/2414/CH14/EX14.7/Ex14_7.sce @@ -0,0 +1,16 @@ +clc;
+close();
+clear();
+//page no 480
+//prob no. 14.7;
+Rin=50 //ohm
+Rout=50; //ohm
+Vrms=400; //V
+Zin=Rin;
+mprintf('(a)The input impedance is, Zin = %i ohm\n',Zin);
+Irms=Vrms/(Rin+Rout); //A
+mprintf(' (b)The rms current , Irms = %i A \n',Irms);
+Pin=Irms^2*Rin;
+mprintf(' (c)The input power is, Pin = %i W \n',Pin);
+Pl=Pin;
+mprintf(' (d)The load power is, Pl = %i W \n',Pl);
|