blob: ab1cbcf69c44a3009ec48e48850b73408b1aeee8 (
plain)
1
2
3
4
5
6
7
8
9
|
v=20;
disp("Part a");
d=0.5*10^(-3);
e=v/d;
disp("the electric field intensity (in kV/m) is"); disp(e*10^(-3));
disp("Part b");
d1=0.25*10^(-3);
e1=v/d1;
disp("the electric field intensity (in kV/m) is"); disp(e1*10^(-3));
|