diff options
Diffstat (limited to '2444/CH7/EX7.3/ex7_3.sce')
-rwxr-xr-x | 2444/CH7/EX7.3/ex7_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2444/CH7/EX7.3/ex7_3.sce b/2444/CH7/EX7.3/ex7_3.sce new file mode 100755 index 000000000..aecda30e0 --- /dev/null +++ b/2444/CH7/EX7.3/ex7_3.sce @@ -0,0 +1,17 @@ +// Exa 7.3
+clc;
+clear;
+close;
+format('v',7)
+// Given data
+V_CC = 12;// in V
+Pout = 88;// in mW
+Plosses = 8;// in mW
+Pin = Pout+Plosses;// in mW
+Pin = Pin * 10^-3;// in W
+I_C = Pin/V_CC;// in A
+Gm = 10;// in mA/V
+Gm = Gm * 10^-3;// in A/V
+V_B = I_C/Gm;// in V
+ratio = V_CC/V_B;// Transformer winding turn ratio
+disp(ratio,"The Transformer winding turn ratio is");
|