summaryrefslogtreecommitdiff
path: root/1658/CH5/EX5.16/Ex5_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '1658/CH5/EX5.16/Ex5_16.sce')
-rwxr-xr-x1658/CH5/EX5.16/Ex5_16.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1658/CH5/EX5.16/Ex5_16.sce b/1658/CH5/EX5.16/Ex5_16.sce
new file mode 100755
index 000000000..8f4bc0feb
--- /dev/null
+++ b/1658/CH5/EX5.16/Ex5_16.sce
@@ -0,0 +1,13 @@
+clc;
+R=20*10**3;
+I=(R-0.7)/R;
+disp('mA',I*1,"I=");
+rj=50;
+rB=1;
+re=rB+rj;
+R1=(R*re)/(re+R);
+disp(R1);
+V=10*(re/(re+1000));
+disp('mV',V*1,"V=");
+i=0:0.01:6*%pi;
+plot(sin(i));