diff options
Diffstat (limited to '620/CH10/EX10.12/example10_12.sce')
-rw-r--r-- | 620/CH10/EX10.12/example10_12.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/620/CH10/EX10.12/example10_12.sce b/620/CH10/EX10.12/example10_12.sce new file mode 100644 index 000000000..88fe3e2fb --- /dev/null +++ b/620/CH10/EX10.12/example10_12.sce @@ -0,0 +1,22 @@ +r1=10^3;
+r2=2*10^3;
+r3=6*10^3;
+r4=6*10^3;
+v=12;
+v2=v*r2/(r1+r2);
+v4=v*r4/(r3+r4);
+disp("Part a");
+vth=v4-v2;
+disp("the Thevenin voltage (in V) is"); disp(vth);
+rth=r1*r2/(r1+r2)+r3*r4/(r3+r4);
+disp("the Thevenin resistance (in kΩ) is"); disp(rth*10^(-3));
+disp("Part b");
+in=vth/rth;
+disp("the Norton current (in mA) is"); disp(in);
+disp("the Norton resistance (in kΩ) is"); disp(rth*10^(-3));
+disp("Part c");
+disp("to deliver maximum power the load resistance value (in kΩ) is"); disp(rth*10^(-3));
+disp("Part d");
+vl=1;
+p=vl^2/rth;
+disp("the maximum power delivered (in mW) is"); disp(p*10^3);
\ No newline at end of file |