blob: d7f3d3ee4bd386eecccfbb0787d7a9f49370505d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//chapter-12,Example12_5,pg 508
rho=4*10^12//resistivity of LCD
Vgrad=10^6//potential gradient
j=(Vgrad/rho)//current density
printf("current per cm^2\n")
printf("j=%.8f A/cm^2\n",j)
|