diff options
Diffstat (limited to '2528/CH9/EX9.6/Ex9_6.sce')
-rwxr-xr-x | 2528/CH9/EX9.6/Ex9_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2528/CH9/EX9.6/Ex9_6.sce b/2528/CH9/EX9.6/Ex9_6.sce new file mode 100755 index 000000000..5fe80af1e --- /dev/null +++ b/2528/CH9/EX9.6/Ex9_6.sce @@ -0,0 +1,14 @@ +// Chapter 9
+// 2kHZ Square Wave generator
+// Page.No-323
+// Example9_6
+//Figure 9.23
+// Given
+clear;clc;
+R1=10000; //in Ohm
+R2=R1/0.859; //in Ohm
+fo=2000; //in Hz
+
+printf("\n R2 is %.0f Ohm\n",R2); // Result
+C=1/(2*R1*fo);
+printf("\n C is %.9f F\n",C); // Result
|