summaryrefslogtreecommitdiff
path: root/978/CH13/EX13.2/Example13_2.sce
blob: bcd89ca6f9435a16835f22cf82eb3ee4d554d662 (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
//chapter-13,Example13_2,pg 509

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

//voltage switching

V1=0.5//level-1

V2=1//level-2

//current switching

I1=1*10^-3//level-1

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

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

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

printf("pseudoimpedance\n")

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

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