summaryrefslogtreecommitdiff
path: root/1217/CH4/EX4.25
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1217/CH4/EX4.25
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1217/CH4/EX4.25')
-rwxr-xr-x1217/CH4/EX4.25/Exa4_25.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1217/CH4/EX4.25/Exa4_25.sce b/1217/CH4/EX4.25/Exa4_25.sce
new file mode 100755
index 000000000..d1adc06fe
--- /dev/null
+++ b/1217/CH4/EX4.25/Exa4_25.sce
@@ -0,0 +1,15 @@
+//Exa 4.25
+clc;
+clear;
+close;
+// given data
+C1=0.1;//in uF
+f=100;//in Hz
+T=1/f;//in sec
+// Given also R1C1=0.2*T;
+R1=(0.2*T)/(C1*10^-6);//in ohm
+RF=0.05/(C1*10^-6);//in ohm
+CF=(R1*C1)/RF;//in uF
+disp(R1/1000,"Value of resistance R1 in ohm is : ")
+disp(RF/1000,"Value of resistance RF in Kohm is : ")
+disp(CF,"Value of Capacitance CF in uF is : ")