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 /2300/CH14/EX14.12.2 | |
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 '2300/CH14/EX14.12.2')
-rwxr-xr-x | 2300/CH14/EX14.12.2/Ex14_2.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2300/CH14/EX14.12.2/Ex14_2.sce b/2300/CH14/EX14.12.2/Ex14_2.sce new file mode 100755 index 000000000..c6e165ef9 --- /dev/null +++ b/2300/CH14/EX14.12.2/Ex14_2.sce @@ -0,0 +1,9 @@ +//scilab 5.4.1
+//Windows 7 operating system
+//chapter 14 Integrated Circuits and Operational Amplifiers
+clc
+clear
+R1=2*1000//R1=input resistance in ohms in the non-inverting amplifier circuit
+Rf=5*1000//Rf=feedback resistance in ohms
+AV=1+(Rf/R1)//AV=voltage gain of the non-inverting amplifier circuit
+disp(AV,"The voltage gain of the given non-inverting amplifier circuit is =")
|