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 /275/CH3/EX3.3.55 | |
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 '275/CH3/EX3.3.55')
-rwxr-xr-x | 275/CH3/EX3.3.55/Ch3_3_55.sce | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/275/CH3/EX3.3.55/Ch3_3_55.sce b/275/CH3/EX3.3.55/Ch3_3_55.sce index 351c6d536..a5f63195e 100755 --- a/275/CH3/EX3.3.55/Ch3_3_55.sce +++ b/275/CH3/EX3.3.55/Ch3_3_55.sce @@ -1,22 +1,22 @@ -clc
-disp("Example 3.55")
-printf("\n")
-disp("Calculate transistor hFE & new Vce level for hFE=100 of base bias ciruit")
-printf("Given\n")
-//given
-Vcc=24
-Rb=390*10^3
-Rc=3.3*10^3
-Vce=10
-//Find Ic
-Ic=(Vcc-Vce)/Rc //from circuit
-//find Ib
-Ib=(Vcc-Vbe)/Rb //from ciruit
-//the value of hFE
-hFE=Ic/Ib
-//to find Vce when hFE=100
-hFE1=100
-Ic1=hFE1*Ib
-Vce1=Vcc-(Ic1*Rc)
-printf("Value of hFE is \n%f\n",hFE)
-printf("New value of Vce is \n%f volt\n",Vce1)
+clc +disp("Example 3.55") +printf("\n") +disp("Calculate transistor hFE & new Vce level for hFE=100 of base bias ciruit") +printf("Given\n") +//given +Vcc=24 +Rb=390*10^3 +Rc=3.3*10^3 +Vce=10 +//Find Ic +Ic=(Vcc-Vce)/Rc //from circuit +//find Ib +Ib=(Vcc-Vce)/Rb //from ciruit +//the value of hFE +hFE=Ic/Ib +//to find Vce when hFE=100 +hFE1=100 +Ic1=hFE1*Ib +Vce1=Vcc-(Ic1*Rc) +printf("Value of hFE is \n%f\n",hFE) +printf("New value of Vce is \n%f volt\n",Vce1)
\ No newline at end of file |