diff options
Diffstat (limited to '226/CH6/EX6.1/example1_sce.sce')
-rwxr-xr-x | 226/CH6/EX6.1/example1_sce.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/226/CH6/EX6.1/example1_sce.sce b/226/CH6/EX6.1/example1_sce.sce new file mode 100755 index 000000000..521f9d11b --- /dev/null +++ b/226/CH6/EX6.1/example1_sce.sce @@ -0,0 +1,12 @@ +//chapter 6
+//example 6.1
+//page 240
+printf("\n")
+printf("given")
+Vcc=12;R2=15*10^3;R1=33*10^3;rs=600;
+disp("with no signal source")
+Vb=(Vcc*R2)/(R1+R2);
+printf(" base bais voltage when no signal source is present %3.2fV\n",Vb)
+disp(" signal source directly connected")
+Vb=(Vcc*((rs*R2)/(rs+R2))/(R1+((rs*R2)/(rs+R2))));
+printf("base bais voltage is %3.2fV\n",Vb)
\ No newline at end of file |