summaryrefslogtreecommitdiff
path: root/45/CH7/EX7.6/example_7_6.sce
blob: 228e91db6d3888049cb76b7e27ffbe1d2e901b77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//example 7.6 
clc
clear
//rb=input('Enter the value of the resistance RB in Kohms :');
//dc =input('Enter required duty cycle in % :');
//clk = input('Enter the provided clock frequency in MHz:');
rb=0.75//taking the given values for input 
dc=25
clk=1
ra = (rb*100/dc) - 2*rb;//mking neccesary calculations 
 format('v',18);
t2 = dc/(clk*10^8);
C = t2/(693*rb)
C=C*10^12;
//C=round(C);
printf('The value of RA is %f Kohms\n',ra);//displaying the output
printf('The value of C is %f pico farads',C);