diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2621/CH7/EX7.4 | |
download | Scilab-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.4')
-rw-r--r-- | 2621/CH7/EX7.4/Ex7_4.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2621/CH7/EX7.4/Ex7_4.sce b/2621/CH7/EX7.4/Ex7_4.sce new file mode 100644 index 000000000..6d40a2d49 --- /dev/null +++ b/2621/CH7/EX7.4/Ex7_4.sce @@ -0,0 +1,19 @@ +// Example 7.4
+clc;
+clear;
+close;
+// Given data
+format('v',5);
+fc= 1*10^3;// in Hz
+alpha= 1.414;
+C= 0.1*10^-6;// in F (assume)
+C_desh= C*alpha^2/4;// in F
+C_desh= C_desh*10^6;// in µF
+disp("The value of C'' is : "+string(C_desh)+" µF");
+C_desh= C_desh*10^-6;// in F
+R_desh= 1/(2*%pi*fc*sqrt(C*C_desh));// in Ω
+R_desh= R_desh*10^-3;// in kΩ
+disp("The value of R'' is : "+string(R_desh)+" kΩ (standard value 2.2 kΩ)")
+
+
+
|