diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2582/CH5/EX5.8 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2582/CH5/EX5.8')
-rwxr-xr-x | 2582/CH5/EX5.8/Ex5_8.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2582/CH5/EX5.8/Ex5_8.sce b/2582/CH5/EX5.8/Ex5_8.sce new file mode 100755 index 000000000..84407b966 --- /dev/null +++ b/2582/CH5/EX5.8/Ex5_8.sce @@ -0,0 +1,11 @@ +//Ex 5.8
+clc;clear;close;
+format('v',5);
+//vo/v1=1+R2/R1;//
+//For v2/v1 i.e. gain=2, R1 & R2 should be equal
+Vpp=10;//V
+R1=10;//kohm
+R2=10;//kohm
+//Avg=1/T*integrate('Vpp*sin(2*%pi*t/T)','t',0,T/2);
+Avg=-Vpp/(2*%pi)*[cos(%pi)-cos(0)];
+disp(Avg,"Average output voltage(V) : ");
|