diff options
Diffstat (limited to '1217/CH4/EX4.22')
-rwxr-xr-x | 1217/CH4/EX4.22/Exa4_22.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1217/CH4/EX4.22/Exa4_22.sce b/1217/CH4/EX4.22/Exa4_22.sce new file mode 100755 index 000000000..4cbf89169 --- /dev/null +++ b/1217/CH4/EX4.22/Exa4_22.sce @@ -0,0 +1,17 @@ +//Exa 4.22
+clc;
+clear;
+close;
+// given data
+fa=1.5;//in KHz
+fmax=1.5;//in KHz
+C1=0.1;//in uF
+RF=1/(2*%pi*fa*C1);//in Kohm
+fb=10*fa;//in Khz
+R1=1/(2*%pi*fb*C1);//in Kohm
+CF=(R1*C1)/RF;//in uF
+Rcomp=RF;//in Kohm
+disp(RF,"Value of resistance RF in Kohm is : ")
+disp(R1*1000,"Value of resistance R1 in ohm is : ")
+disp(CF,"Value of Capacitance CF in uF is : ")
+disp(Rcomp,"Value of resistance Rcomp in Kohm is : ")
\ No newline at end of file |