diff options
Diffstat (limited to '147/CH2/EX2.10/Example2_10.sce')
-rw-r--r-- | 147/CH2/EX2.10/Example2_10.sce | 14 |
1 files changed, 14 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 |