summaryrefslogtreecommitdiff
path: root/1757/CH13/EX13.10/EX13_10.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1757/CH13/EX13.10/EX13_10.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1757/CH13/EX13.10/EX13_10.sce')
-rwxr-xr-x1757/CH13/EX13.10/EX13_10.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1757/CH13/EX13.10/EX13_10.sce b/1757/CH13/EX13.10/EX13_10.sce
new file mode 100755
index 000000000..bcd9f0be0
--- /dev/null
+++ b/1757/CH13/EX13.10/EX13_10.sce
@@ -0,0 +1,12 @@
+//Example13.10 // Determine the frequency of the monostable multivibrator
+clc;
+clear;
+close;
+R1 = 5*10^3 ;
+R2 =15*10^3 ;
+C = 0.01*10^-6 ;
+R = 12*10^3 ;
+
+// the output of monostable multivibrator is defined as
+f = 1/(R*C*(log(1+(R2/R1))));
+disp('the output of monostable multivibrator is = ' +string(f)+ ' Hz');