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 /2594/CH7/EX7.10/Ex7_10.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 '2594/CH7/EX7.10/Ex7_10.sce')
-rwxr-xr-x | 2594/CH7/EX7.10/Ex7_10.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2594/CH7/EX7.10/Ex7_10.sce b/2594/CH7/EX7.10/Ex7_10.sce new file mode 100755 index 000000000..0970df7d8 --- /dev/null +++ b/2594/CH7/EX7.10/Ex7_10.sce @@ -0,0 +1,11 @@ +clc
+ro=500*10^3
+disp("ro = "+string(ro)+" ohm") //initializiation the value of output resistance .
+Vce1=7
+disp("Vce1 = "+string(Vce1)+" V") //initializiation the initial value of collector emitter voltage .
+Vce2=1
+disp("Vce2 = "+string(Vce2)+" V") //initializiation the final value of collector emitter voltage .
+Vce=6
+disp("change in the collector-emitter voltage,Vce1-Vce2 = "+string(Vce)+" V") //calculation.
+Ic=(Vce/ro)
+disp("change in the collector current,Ic=(Vce/ro))="+string(Ic)+" A")//calculation
|