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 /569/CH5/EX5.37 | |
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 '569/CH5/EX5.37')
-rwxr-xr-x | 569/CH5/EX5.37/5_37.sci | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/569/CH5/EX5.37/5_37.sci b/569/CH5/EX5.37/5_37.sci new file mode 100755 index 000000000..b6b4beb8b --- /dev/null +++ b/569/CH5/EX5.37/5_37.sci @@ -0,0 +1,21 @@ +//Calculate the change in capacitance and ratio
+clc;
+e0=8.85*10^-12;
+A=500*10^-6;
+d=0.2*10^-3;
+C=e0*A/d;
+d1=0.18*10^-3;
+C_new=e0*A/d1;
+C_change=C_new-C;
+Ratio=(C_change/C)/(0.02/0.2);
+disp(Ratio,'ratio of per unit change of capacitance to per unit change of diaplacement')
+d1=0.19*10^-3;
+e1=1;
+d2=0.01*10^-3;
+e2=8;
+C=(e0*A)/((d1/e1)+(d2/e2));
+d1_new=0.17*10^-3;
+C_new=(e0*A)/((d1_new/e1)+(d2/e2));
+C_change=C_new-C;
+Ratio=(C_change/C)/(0.02/0.2);
+disp(Ratio,'ratio of per unit change of capacitance to per unit change of diaplacement')
|