summaryrefslogtreecommitdiff
path: root/2621/CH7/EX7.16
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2621/CH7/EX7.16
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 '2621/CH7/EX7.16')
-rw-r--r--2621/CH7/EX7.16/Ex7_16.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2621/CH7/EX7.16/Ex7_16.sce b/2621/CH7/EX7.16/Ex7_16.sce
new file mode 100644
index 000000000..a6fe85fe3
--- /dev/null
+++ b/2621/CH7/EX7.16/Ex7_16.sce
@@ -0,0 +1,13 @@
+// Example 7.16
+clc;
+clear;
+close;
+// Given data
+format('v',5);
+R= 15*10^3;// in Ω
+C= 0.01*10^-6;// in F
+f= 2*10^3;// in Hz
+PhaseShift= -2*atand(2*%pi*f*R*C);// in °
+disp("The phase shift is : "+string(PhaseShift)+"° i.e. "+string(abs(PhaseShift))+"° (lagging)")
+
+