diff options
Diffstat (limited to '1757/CH13/EX13.8/EX13_8.sce')
-rwxr-xr-x | 1757/CH13/EX13.8/EX13_8.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1757/CH13/EX13.8/EX13_8.sce b/1757/CH13/EX13.8/EX13_8.sce new file mode 100755 index 000000000..f0c62ef74 --- /dev/null +++ b/1757/CH13/EX13.8/EX13_8.sce @@ -0,0 +1,11 @@ +//Example13.8 // to design astable multivibrator
+clc;
+clear;
+close;
+f = 25*10^3 ;
+
+// The output frequency of practical astable multivibrator is defined as
+// f = 1/(2*R*C);
+C = 0.1*10^-6 ; // uF we choose
+R = 1/(2*f*C);
+disp('The value of resistor R is = '+string(R)+ ' ohm ' );
|