From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1850/CH8/EX8.16/exa_8_16.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 1850/CH8/EX8.16/exa_8_16.sce (limited to '1850/CH8/EX8.16/exa_8_16.sce') 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 ") -- cgit