diff options
Diffstat (limited to '3745/CH1/EX1.6')
-rw-r--r-- | 3745/CH1/EX1.6/Ex1_6.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3745/CH1/EX1.6/Ex1_6.sce b/3745/CH1/EX1.6/Ex1_6.sce new file mode 100644 index 000000000..606558602 --- /dev/null +++ b/3745/CH1/EX1.6/Ex1_6.sce @@ -0,0 +1,15 @@ +// Ex 6 Page 346 + +clc;clear;close; +// Given + +Ro=600;//ohm +fc=2*1000;//Hz +alfa=10;//dB + + +L=Ro/%pi/fc*1000;//mH +C=1/(%pi*Ro*fc)*10**6;//uF +alfa=alfa/8.686;//nepers +f=fc*cosh(alfa/2)/1000;//kHz +printf("\nat f = %.2f kHz, the above filter will have required attenuation.",f) |