diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /281/CH3 | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '281/CH3')
-rwxr-xr-x | 281/CH3/EX3.9/example3_9.sce | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/281/CH3/EX3.9/example3_9.sce b/281/CH3/EX3.9/example3_9.sce index f0a8a28cb..3f82a2076 100755 --- a/281/CH3/EX3.9/example3_9.sce +++ b/281/CH3/EX3.9/example3_9.sce @@ -1,23 +1,23 @@ -disp('chapter 3 ex3.9')
-disp('given')
-disp('the direct sum of two inputs which range from .1Volt to 1V0lt')
-Vsmin=0.1
-Vsmax=1
-disp('IBmax=500nA')
-disp('I1min=100*IBmax')
-IBmax=500*10^(-9)
-I1min=100*IBmax
-disp('amperes',I1min)
-disp('R1=Vsmin/I1min')
-R1=Vsmin/I1min
-disp('ohms',R1)
-disp('using standard value R2=R1=1.8kohms')
-R1=1800
-R2=1800
-disp('for Av=1 R3=R1=1.8kohms')
-Av=1
-R3=1800
-disp('R4=R1||R2||R3')
-R4=R1/3
-disp('ohms',R4)
-disp('standard value is 560ohms)
\ No newline at end of file +disp('chapter 3 ex3.9') +disp('given') +disp('the direct sum of two inputs which range from .1Volt to 1V0lt') +Vsmin=0.1 +Vsmax=1 +disp('IBmax=500nA') +disp('I1min=100*IBmax') +IBmax=500*10^(-9) +I1min=100*IBmax +disp('amperes',I1min) +disp('R1=Vsmin/I1min') +R1=Vsmin/I1min +disp('ohms',R1) +disp('using standard value R2=R1=1.8kohms') +R1=1800 +R2=1800 +disp('for Av=1 R3=R1=1.8kohms') +Av=1 +R3=1800 +disp('R4=R1||R2||R3') +R4=R1/3 +disp('ohms',R4) +disp('standard value is 560ohms')
\ No newline at end of file |