summaryrefslogtreecommitdiff
path: root/3802/CH4/EX4.22/Ex4_22.sce
blob: df93e87656c479eac4e8a378cdd4ea13172db905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//Book Name:Fundamentals of Electrical Engineering
//Author:Rajendra Prasad
//Publisher: PHI Learning Private Limited
//Edition:Third ,2014

//Ex4_22.sce.

clc;
clear;
V=2.5;                //potential difference of the plates in kv
x=0.25;               //distance between two parallel plates in cm
x1=0.02;              //airgap in between the parallel plates in cm
x2=0.23;             //thickness of fibre sheet in the gap in cm
epsilon_r=5;

//As the eletric displacement is perpendicular to the boundary
//D=D1=D2;  ,   D1=epsilon_not*E1;         ,   D2=epsilon_not*epsilon_r*E2;
//from this E1=5*E2;

//V=V1+V2;       V1=x1*E1;        V2=x2*E2;
//from this we can find the equation of E2

E2=V/((x1*epsilon_r)+(x2));
E1=5*E2;

printf("\n Electric field strength in air , E1=%2.2f kV/cm \n",E1)
printf("\n Electric field strength in the fibre , E2=%1.3f kV/cm \n",E2)

E=30;          //Dielectric strength of air in kV/cm
if (E1>E) 
     printf("\n The air will break.")
else
    printf("\n The air will not break.")
end