blob: 37c8dce9911e4f57b71546c8ccb5230687f3d915 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//to calculate force per unit area
//force of attraction per unit area is given by F=(epsilon0*E^2)/2 eq(1)
//E=V/d eq(2)
epsilon0=8.85*10^-12 //permittivity of free space
d=1*10^-3 //distance
V=100 //potential difference in volts
//from eq(1) and eq(2),we get
F=(epsilon0*V^2)/(2*d^2)
disp("force per unit area is F="+string(F)+"N/m^2")
//answer is given incorrect in the book ,F=4.425*10^-12
|