diff options
Diffstat (limited to '620/CH5/EX5.10/example5_10.sce')
-rw-r--r-- | 620/CH5/EX5.10/example5_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/620/CH5/EX5.10/example5_10.sce b/620/CH5/EX5.10/example5_10.sce new file mode 100644 index 000000000..ce5139c32 --- /dev/null +++ b/620/CH5/EX5.10/example5_10.sce @@ -0,0 +1,12 @@ +disp("Part a");
+v1=25;
+v2=10;
+v=v1-v2;
+r1=470;
+r2=220;
+r=r1+r2;
+i=v/r;
+disp("the current (in mA) is"); disp(i*10^3);
+disp("Part b");
+vb=v2+i*r2;
+disp("the voltage (in V) at A w.r.t. B is"); disp(vb);
\ No newline at end of file |