summaryrefslogtreecommitdiff
path: root/978/CH13/EX13.1/Example13_1.sce
blob: fab7710b40c46fed0db51b80dca68b34d4a7da9b (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
//chapter-13,Example13_1,pg 405

t1=0.1*10^-6//time span for voltage

//voltage switching

V1=0.5//level-1

V2=5//level-2

//current switching

I1=0//level-1

I2=10*10^-3//level-2

t2=1*10^-6//time span for current

DR=(((V2-V1)/t1)/((I2-I1)/t2))

printf("dissipation ratio\n")

printf("DR=%.2f ohm\n",DR)

printf("DR is quite large indicating noise interference by capacitive coupling")