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 /2129/CH3/EX3.10.18 | |
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 '2129/CH3/EX3.10.18')
-rwxr-xr-x | 2129/CH3/EX3.10.18/ex3_10_18.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2129/CH3/EX3.10.18/ex3_10_18.sce b/2129/CH3/EX3.10.18/ex3_10_18.sce new file mode 100755 index 000000000..4d49f63ba --- /dev/null +++ b/2129/CH3/EX3.10.18/ex3_10_18.sce @@ -0,0 +1,15 @@ +// Exa 3.10.18
+clc;
+clear;
+close;
+// Given data
+W = 2 * 10^-4;// in cm
+W = W * 10^-2;// in m
+A = 1;// in mm^2
+A = A * 10^-6;// in m^2
+epsilon_r = 16;
+epsilon_o = 8.854 * 10^-12;// in F/m
+epsilon = epsilon_r * epsilon_o;
+C_T = (epsilon * A)/W;// in F
+disp(C_T*10^12,"The barrier capacitance in pF is");
+
|