summaryrefslogtreecommitdiff
path: root/620/CH10/EX10.1/example10_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '620/CH10/EX10.1/example10_1.sce')
-rw-r--r--620/CH10/EX10.1/example10_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/620/CH10/EX10.1/example10_1.sce b/620/CH10/EX10.1/example10_1.sce
new file mode 100644
index 000000000..1fcfe2828
--- /dev/null
+++ b/620/CH10/EX10.1/example10_1.sce
@@ -0,0 +1,13 @@
+vb=13.2;
+rb=0.5;
+vg=14.5;
+rg=0.1;
+rl=2;
+ib=(vg*rl-vb*(rg+rl))/(rl^2-(rb+rl)*rg+rl);
+disp("the battery current (in A) is"); disp(ib);
+ig=(vb-ib*(rb+rl))/rl;
+disp("the generator current (in A) is"); disp(ig);
+il=ib+ig;
+disp("the load current (in A) is"); disp(il);
+vl=il*rl;
+disp("the load voltage (in V) is"); disp(vl);