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 /1691/CH1/EX1.14/Example1_14.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 '1691/CH1/EX1.14/Example1_14.sce')
-rwxr-xr-x | 1691/CH1/EX1.14/Example1_14.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1691/CH1/EX1.14/Example1_14.sce b/1691/CH1/EX1.14/Example1_14.sce new file mode 100755 index 000000000..f8ca30278 --- /dev/null +++ b/1691/CH1/EX1.14/Example1_14.sce @@ -0,0 +1,17 @@ +//Example 1.14
+clc
+disp("Given A_vf = 120")
+disp("A_v = Vo/V_s = Vo/60mV")
+disp("and A_vf = Vo/0.5")
+vo=0.5*120
+format(3)
+disp(vo,"Therefore, Vo(in V) =")
+disp("with Vo = 60 V we have,")
+av=60/(60*10^-3)
+format(5)
+disp(av,"A_v =")
+b=((1000/120)-1)/1000
+format(8)
+disp("We know that,")
+disp("A_vf = A_v / 1+A_v*beta")
+disp(b,"Therefore, beta =")
|