summaryrefslogtreecommitdiff
path: root/1991/CH11/EX11.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1991/CH11/EX11.2
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1991/CH11/EX11.2')
-rwxr-xr-x1991/CH11/EX11.2/2.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1991/CH11/EX11.2/2.sce b/1991/CH11/EX11.2/2.sce
new file mode 100755
index 000000000..5538c58dd
--- /dev/null
+++ b/1991/CH11/EX11.2/2.sce
@@ -0,0 +1,13 @@
+clc
+clear
+//input
+vbe=1.2//pd across emitter
+ib=120*10^-6//base current
+v1=1.5//final voltafe
+i2=175*10^-6//increased current
+//calculation
+r=vbe/ib//static input resistence
+h=(v1-vbe)/(i2-ib)//input hybrid parameter
+//output
+printf("the static input resistence is %3.0e ohm",r)
+printf("\nthe input hybrid parameter is %3.3e ohm",h)