diff options
Diffstat (limited to '620/CH10/EX10.8.a')
-rw-r--r-- | 620/CH10/EX10.8.a/example10_8a.sce | 12 | ||||
-rw-r--r-- | 620/CH10/EX10.8.a/example10_8a.txt | 4 |
2 files changed, 16 insertions, 0 deletions
diff --git a/620/CH10/EX10.8.a/example10_8a.sce b/620/CH10/EX10.8.a/example10_8a.sce new file mode 100644 index 000000000..0a6714198 --- /dev/null +++ b/620/CH10/EX10.8.a/example10_8a.sce @@ -0,0 +1,12 @@ +v1=10;
+v2=20;
+r1=10^3;
+r2=2*10^3;
+r3=3*10^3;
+r4=4*10^3;
+r5=5*10^3;
+i2=(v*(r1+r2)-v1*r2)/((r2+r3+r5)*(r1+r2)-r2^2);
+vth=v2-i2*r5;
+rth=(r1*r2/(r1+r2)+r3)*r5/(r1*r2/(r1+r2)+r3+r5);
+i=vth/(rth+r4);
+disp("the current (in mA) in R4 is"); disp(i*10^3);
\ No newline at end of file diff --git a/620/CH10/EX10.8.a/example10_8a.txt b/620/CH10/EX10.8.a/example10_8a.txt new file mode 100644 index 000000000..c8d91dc2d --- /dev/null +++ b/620/CH10/EX10.8.a/example10_8a.txt @@ -0,0 +1,4 @@ +
+ the current (in mA) in R4 is
+
+ 2.7672956
\ No newline at end of file |