diff options
Diffstat (limited to '1664/CH11/EX11.5/Ex11_5.sce')
-rwxr-xr-x | 1664/CH11/EX11.5/Ex11_5.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1664/CH11/EX11.5/Ex11_5.sce b/1664/CH11/EX11.5/Ex11_5.sce new file mode 100755 index 000000000..8534fac63 --- /dev/null +++ b/1664/CH11/EX11.5/Ex11_5.sce @@ -0,0 +1,10 @@ +
+//Example NO.11.5
+//Page No.336
+clc;clear;
+E0 = (8.854*10^-12);// [C^2/N.m^2].
+Er = 6;//Dielectric constant.
+C = (0.02*10^-6);//Capacitance -[F].
+d = (0.002*10^-2);//Thickness of mica -[m].
+A = ((C*d)/(E0*Er));//Area of the metal sheet.
+printf("\nArea of the metal sheet required is %3.3e m^2",A);
|