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/CH1/EX1.7 | |
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/CH1/EX1.7')
-rwxr-xr-x | 2582/CH1/EX1.7/Ex1_7.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2582/CH1/EX1.7/Ex1_7.sce b/2582/CH1/EX1.7/Ex1_7.sce new file mode 100755 index 000000000..e4b73fcde --- /dev/null +++ b/2582/CH1/EX1.7/Ex1_7.sce @@ -0,0 +1,11 @@ +//Ex 1.7
+clc;clear;close;
+format('v',5);
+Beta=80;//untless
+disp("IREF=IC1+IC1/Beta+IO/Beta");
+disp("IO/IREF=m implies IC1=IO/m as IC1=IREF");
+disp("IREF=IO*(1/m+1/m/Beta+1/Beta");
+disp("IO/IREF=m/(1+1/Beta+m/Beta");
+disp("IO/IREF=m*(1-5/100);//for large Beta");
+m=(1/(1-5/100)-1)*Beta-1;//Current transfer ratio
+disp(m,"Largest current transfer ratio : ");
|