diff options
Diffstat (limited to '147/CH2/EX2.10')
-rw-r--r-- | 147/CH2/EX2.10/Example2_10.sce | 14 | ||||
-rw-r--r-- | 147/CH2/EX2.10/Result2_10.txt | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/147/CH2/EX2.10/Example2_10.sce b/147/CH2/EX2.10/Example2_10.sce new file mode 100644 index 000000000..d37d6959c --- /dev/null +++ b/147/CH2/EX2.10/Example2_10.sce @@ -0,0 +1,14 @@ +//Resistance R, Voltage V
+close();
+clear;
+clc;
+V = 110;//V
+//From previous question
+Rao = 1.5;//ohm
+Rbo = 1;
+Rco = 3;
+Rcd = 3;
+Rth = Rao + Rbo*(Rco+Rcd)/(Rbo+Rco+Rcd);
+//For maximum power
+Rad = Rth;
+mprintf('Rad = %0.2f ohm',Rad);
\ No newline at end of file diff --git a/147/CH2/EX2.10/Result2_10.txt b/147/CH2/EX2.10/Result2_10.txt new file mode 100644 index 000000000..81ac39a3e --- /dev/null +++ b/147/CH2/EX2.10/Result2_10.txt @@ -0,0 +1 @@ +Rad = 2.36 ohm
\ No newline at end of file |