summaryrefslogtreecommitdiff
path: root/2492/CH6/EX6.3/ex6_3.sce
blob: 4571c86db82bdefeaddd28e828532daca51e0a5c (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
// Exa 6.3
format('e',8)
clc;
clear;
close;
// Given data
f_osc = 6.5;// in kHz
f_osc = f_osc * 10^3;// in Hz
// f_osc = 1/(2*%pi*sqrt(6)*RC);
RC = 1/(2*%pi*sqrt(6)*f_osc);// in sec
disp(RC,"The value of RC in sec is : ")
format('v',5)
// Possible selection of R and C may be
R= 1;// in k ohm
C= RC/R;// in mF
C= C*10^3;// in µF
disp("The posible selection of R and C : ")
disp("(a) : "+string(R)+" kΩ and "+string(C)+" µF")
format('v',6)
R= 10;// in k ohm
C= RC/R;// in mF
C= C*10^3;// in µF
disp("The posible selection of R and C : ")
disp("(a) : "+string(R)+" kΩ and "+string(C)+" µF")