summaryrefslogtreecommitdiff
path: root/2414/CH14/EX14.7/Ex14_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '2414/CH14/EX14.7/Ex14_7.sce')
-rwxr-xr-x2414/CH14/EX14.7/Ex14_7.sce16
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);