blob: cc6455ef61fdb6182f52c3505e1b44718d29bf85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
|