diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /863/CH1/EX1.5 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '863/CH1/EX1.5')
-rw-r--r-- | 863/CH1/EX1.5/Ex1_5.sce | 18 | ||||
-rw-r--r-- | 863/CH1/EX1.5/Ex1_5.txt | 18 | ||||
-rw-r--r-- | 863/CH1/EX1.5/Result1_5.txt | 10 |
3 files changed, 46 insertions, 0 deletions
diff --git a/863/CH1/EX1.5/Ex1_5.sce b/863/CH1/EX1.5/Ex1_5.sce new file mode 100644 index 000000000..4269d0841 --- /dev/null +++ b/863/CH1/EX1.5/Ex1_5.sce @@ -0,0 +1,18 @@ +//Caption:Determine (a)Minimum upper cut frequency (b)Minimum pulse width and duty cycle
+//Ex1.5
+clc;
+clear;
+close;
+prf=1.5//in Khz
+dc=3//Duty cycle(in %)
+pa=1.5//Amplitude of pulse(in Khz)
+fu=1//High frequency limit(in Mhz)
+tr=10//Rise time(in %)
+pw=(dc/100)*10^3/pa
+Tr=(tr/100)*pw
+fh=0.35*10^6/Tr
+disp(fh,'(a)Minimum upper cut frequency(in hertz)=')
+Tr2=0.35*10^(-6)/fu
+Pw=10*Tr2
+dc=Pw*100*(pa*1000)
+disp(dc,Pw,'(b)Pulse width(in sec) and Duty cycle(in %)=')
\ No newline at end of file diff --git a/863/CH1/EX1.5/Ex1_5.txt b/863/CH1/EX1.5/Ex1_5.txt new file mode 100644 index 000000000..4269d0841 --- /dev/null +++ b/863/CH1/EX1.5/Ex1_5.txt @@ -0,0 +1,18 @@ +//Caption:Determine (a)Minimum upper cut frequency (b)Minimum pulse width and duty cycle
+//Ex1.5
+clc;
+clear;
+close;
+prf=1.5//in Khz
+dc=3//Duty cycle(in %)
+pa=1.5//Amplitude of pulse(in Khz)
+fu=1//High frequency limit(in Mhz)
+tr=10//Rise time(in %)
+pw=(dc/100)*10^3/pa
+Tr=(tr/100)*pw
+fh=0.35*10^6/Tr
+disp(fh,'(a)Minimum upper cut frequency(in hertz)=')
+Tr2=0.35*10^(-6)/fu
+Pw=10*Tr2
+dc=Pw*100*(pa*1000)
+disp(dc,Pw,'(b)Pulse width(in sec) and Duty cycle(in %)=')
\ No newline at end of file diff --git a/863/CH1/EX1.5/Result1_5.txt b/863/CH1/EX1.5/Result1_5.txt new file mode 100644 index 000000000..b1ba3a610 --- /dev/null +++ b/863/CH1/EX1.5/Result1_5.txt @@ -0,0 +1,10 @@ +(a)Minimum upper cut frequency(in hertz)=
+
+ 175000.
+
+ (b)Pulse width(in sec) and Duty cycle(in %)=
+
+ 0.0000035
+
+ 0.525
+
\ No newline at end of file |