summaryrefslogtreecommitdiff
path: root/215/CH11/EX11.3/ex11_3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /215/CH11/EX11.3/ex11_3.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '215/CH11/EX11.3/ex11_3.sce')
-rwxr-xr-x215/CH11/EX11.3/ex11_3.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/215/CH11/EX11.3/ex11_3.sce b/215/CH11/EX11.3/ex11_3.sce
new file mode 100755
index 000000000..4fb84d381
--- /dev/null
+++ b/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