diff options
Diffstat (limited to '620/CH4/EX4.4/example4_4.sce')
-rw-r--r-- | 620/CH4/EX4.4/example4_4.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/620/CH4/EX4.4/example4_4.sce b/620/CH4/EX4.4/example4_4.sce new file mode 100644 index 000000000..cc6455ef6 --- /dev/null +++ b/620/CH4/EX4.4/example4_4.sce @@ -0,0 +1,17 @@ +disp("Part a");
+th=0.01*10^(-2);
+bdv=20/10^(-3);
+v=bdv*th;
+disp("the following potential differnce (in V) will puncture the sheet of paper");
+disp(v);
+disp("Part b");
+v1=600;
+bdv1=16*10^3;
+th1=v1/bdv1;
+disp("the minimum thickness (in mm) is"); disp(th1);
+disp("Part c");
+th2=5;
+f=2
+v2=250;
+bdv2=f*v2/th2;
+disp("the minimum breakdown voltage (in kV/mm) required is"); disp(bdv2);
\ No newline at end of file |