diff options
Diffstat (limited to '1991/CH8/EX8.13')
-rwxr-xr-x | 1991/CH8/EX8.13/13.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1991/CH8/EX8.13/13.sce b/1991/CH8/EX8.13/13.sce new file mode 100755 index 000000000..cddee3380 --- /dev/null +++ b/1991/CH8/EX8.13/13.sce @@ -0,0 +1,11 @@ +clc
+clear
+//input
+d=6*10^-5
+w=0.1
+er=9.4 //relative permittivity of medium
+c=1*10^-6 //capacitance
+//calculation
+l=c*d/(8.9*10^-12*er*w)//parallel plate capacitor formula
+//output
+printf("the length of wax paper is %3.3f m",l)
|