diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1382/CH5/EX5.26/EX_5_26.SCE | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1382/CH5/EX5.26/EX_5_26.SCE')
-rwxr-xr-x | 1382/CH5/EX5.26/EX_5_26.SCE | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1382/CH5/EX5.26/EX_5_26.SCE b/1382/CH5/EX5.26/EX_5_26.SCE new file mode 100755 index 000000000..4230f1dd6 --- /dev/null +++ b/1382/CH5/EX5.26/EX_5_26.SCE @@ -0,0 +1,15 @@ +// Example 5.25:PERCENTAGE TILT
+clc;
+clear;
+close;
+Rc=2;//RESISTANCE IN KILLO OHMS
+Rl=10;//RESISTANCE IN KILLO OHMS
+R1=Rc+Rl;//
+C=10;//capacitance in micro farad
+fl=(1/(2*%pi*R1*10^3*C*10^-6));//LOWER CUT -OFF FREQUENCY
+f=100;//frequency in hertz
+P= (%pi*fl)/f;//
+p1=0.02
+f=(%pi*fl)/p1;//
+disp(P*100,"percentage tilt is")
+disp(f,"as the input frequency increases the percentage tilt decreases")
|