summaryrefslogtreecommitdiff
path: root/Working_Examples/215/CH11/EX11.3/ex11_3.sce
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/215/CH11/EX11.3/ex11_3.sce')
-rwxr-xr-xWorking_Examples/215/CH11/EX11.3/ex11_3.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/Working_Examples/215/CH11/EX11.3/ex11_3.sce b/Working_Examples/215/CH11/EX11.3/ex11_3.sce
new file mode 100755
index 0000000..4fb84d3
--- /dev/null
+++ b/Working_Examples/215/CH11/EX11.3/ex11_3.sce
@@ -0,0 +1,11 @@
+clc
+//Example 11.3
+//Calculate the Average Power
+printf("Given")
+disp('ZL=8-i*11 ohm, I=5(20 deg)A')
+R=8;Iamp=5;
+//We need to calculate the average power
+//In the calculation of average power the resistance part of impedace only occurs
+//Let P be the average power
+P=0.5*Iamp^2*R
+printf("Average Power=%d W \n",P) \ No newline at end of file