diff options
Diffstat (limited to '1217/CH4/EX4.15/Exa4_15.sce')
-rwxr-xr-x | 1217/CH4/EX4.15/Exa4_15.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1217/CH4/EX4.15/Exa4_15.sce b/1217/CH4/EX4.15/Exa4_15.sce new file mode 100755 index 000000000..ca2f063ee --- /dev/null +++ b/1217/CH4/EX4.15/Exa4_15.sce @@ -0,0 +1,19 @@ +//Exa 4.15
+clc;
+clear;
+close;
+// given data
+Gain=10;//Unitless
+fb=10;//in KHz
+//Assuming fa=fb/10
+fa=fb/10;//in KHz
+// Formula : fa=1/(2*pi*RF*CF)
+RFCF=1/(2*%pi*fa);
+//Assuming R1=1Kohm
+R1=1;//in Kohm
+RF=10*R1;//in Kohm
+CF=RFCF/RF;//in uF
+Rcomp=(R1*RF)/(R1+RF);// in Kohm
+disp(RF,"Value of RF in Kohm is : ");
+disp(CF,"Value of CF in uF is : ");
+disp(Rcomp*1000,"Value of Rcomp in ohm is : ");
\ No newline at end of file |