blob: 74164d7d119bfb388c9834451bed021c1041b356 (
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
|
//chapter-12,Example12_1,pg 371
E=10^6//electric field
l=10^-6//thickness of LCD
V=E*l//excitation potential
I=0.1*10^-6//current
rho=E/I//crystal resistivity
P=10*10^-6//power consumption
A=(P/(V*I))//area of electrodes
printf("excitation potential\n")
printf("V=%.2f V\n",V)
printf("crystal resistivity\n")
printf("rho=%.2f ohm-cm\n",rho)
printf("area of electrodes\n")
printf("A=%.2f cm^2",A)
|