summaryrefslogtreecommitdiff
path: root/1850/CH8/EX8.16/exa_8_16.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1850/CH8/EX8.16/exa_8_16.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 '1850/CH8/EX8.16/exa_8_16.sce')
-rwxr-xr-x1850/CH8/EX8.16/exa_8_16.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1850/CH8/EX8.16/exa_8_16.sce b/1850/CH8/EX8.16/exa_8_16.sce
new file mode 100755
index 000000000..98d31d492
--- /dev/null
+++ b/1850/CH8/EX8.16/exa_8_16.sce
@@ -0,0 +1,15 @@
+// Exa 8.16
+clc;
+clear;
+close;
+//given data
+Vin= 2;//in volt
+Vout= 10;//in volt
+R=100;// in kohm
+R=R*10^3;//in ohm
+C=0.1;// in micro F
+C=C*10^-6;//in F
+// Formula Vout = -1/(R*C)*integrate('Vin','t',0,t) = -Vin*t/(R*C)
+t= Vout*R*C/Vin;// in sec
+disp(t,"The maximum time upto which the reference voltage can be integrated in second")
+disp(t*10^3,"Or in mili seconds ")