diff options
Diffstat (limited to '2528/CH9/EX9.7/Ex9_7.sce')
-rwxr-xr-x | 2528/CH9/EX9.7/Ex9_7.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2528/CH9/EX9.7/Ex9_7.sce b/2528/CH9/EX9.7/Ex9_7.sce new file mode 100755 index 000000000..f9167d33c --- /dev/null +++ b/2528/CH9/EX9.7/Ex9_7.sce @@ -0,0 +1,16 @@ +// Chapter 9
+// determine Output frequency
+// Page.No-327
+// Example9_7
+//Figure 9.28
+// Given
+clear;clc;
+Vp=12; //in V
+R1=4700; //in Ohm
+R2=2000; //in Ohm
+R3=20000; //in Ohm
+C=1.1*10^-9; //in Farad
+Vc=Vp*(R3/(R2+R3));
+printf("\n The control Voltage is = %.2f V\n",Vc); // Result
+fo=2*(Vp-Vc)/(Vp*R1*C);
+printf("\n Output frequency = %.0f Hz\n",fo); // Result
|