diff options
Diffstat (limited to '506/CH12/EX12.1.a')
-rwxr-xr-x | 506/CH12/EX12.1.a/Example12_1a.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/506/CH12/EX12.1.a/Example12_1a.sce b/506/CH12/EX12.1.a/Example12_1a.sce new file mode 100755 index 000000000..7f78a48c6 --- /dev/null +++ b/506/CH12/EX12.1.a/Example12_1a.sce @@ -0,0 +1,17 @@ +clear;
+clc;
+
+//Caption:Minimum value of coupling capacitance for a given FET
+//Given Value
+Ry=1;//in K
+Rg=1;//in M
+Ri=1;//in K
+hOE=1/40;//in K^-1
+
+//fL=1/(2*%pi*(ro+ri)*Cb)<=10
+//Since ri=1M , ro<Ry=1K , then ro+ri=1M
+
+Cb=1/(2*%pi*1*10);
+disp(Cb,'Minimum Value of coupling Capacitance for given FET=');
+
+//end
\ No newline at end of file |