diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2702/CH6/EX6.11/Ex_6_11.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '2702/CH6/EX6.11/Ex_6_11.sce')
-rw-r--r-- | 2702/CH6/EX6.11/Ex_6_11.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2702/CH6/EX6.11/Ex_6_11.sce b/2702/CH6/EX6.11/Ex_6_11.sce new file mode 100644 index 000000000..3c33873e2 --- /dev/null +++ b/2702/CH6/EX6.11/Ex_6_11.sce @@ -0,0 +1,16 @@ +// Exa 6.11
+clc;
+clear;
+close;
+// Given data
+R= 10;// in kohm
+R=R*10^3;// in ohm
+f=1000;
+fie= 60;// in °
+// The impedence of given circuit , Z= R+j*1/(omega*C)
+// the phase shift, tan(fie)= imaginary part/ Real part
+// tand(fie) = 1/(omega*R*C)
+C= 1/(2*%pi*R*tand(fie));
+disp(C*10^12,"The value of C in pF is : ")
+
+// Note : There is an calculation error to evaluate the value of C, So the answer in the book is wrong
|