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 /275/CH5/EX5.5.10/Ch5_5_10.sce | |
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 '275/CH5/EX5.5.10/Ch5_5_10.sce')
-rwxr-xr-x | 275/CH5/EX5.5.10/Ch5_5_10.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/275/CH5/EX5.5.10/Ch5_5_10.sce b/275/CH5/EX5.5.10/Ch5_5_10.sce new file mode 100755 index 000000000..903318ed3 --- /dev/null +++ b/275/CH5/EX5.5.10/Ch5_5_10.sce @@ -0,0 +1,19 @@ +clc
+disp("Example 5.10")
+printf("\n")
+disp("Calculate overall voltage gain in db & output voltage when input voltage is 1uV for cascaded amplifier")
+printf("Given\n")
+//Voltage gain of amplifier
+Av1=10
+Av2=100
+Av3=1000
+//input voltage
+Vi=10^-6
+//overall voltage gain
+Av=Av1*Av2*Av3
+//in db
+Avdb=20*log10(Av)
+//output voltage when input voltage is 10^-6V
+Vo=Av*Vi
+printf("overall voltage gain in dB \n%f dB\n",Avdb)
+printf("output voltage \n%f volt\n",Vo)
|