diff options
Diffstat (limited to '3673/CH3/EX3.a.17/Example_a_3_17.sce')
-rw-r--r-- | 3673/CH3/EX3.a.17/Example_a_3_17.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3673/CH3/EX3.a.17/Example_a_3_17.sce b/3673/CH3/EX3.a.17/Example_a_3_17.sce new file mode 100644 index 000000000..c115831db --- /dev/null +++ b/3673/CH3/EX3.a.17/Example_a_3_17.sce @@ -0,0 +1,16 @@ +//Example_a_3_17 page no:146
+clc;
+V=100;
+R1=10;
+R2=20;
+R3=30;
+R4=40;
+Va=V*(R3/(R3+R1));
+Vb=V*(R4/(R4+R2));
+Vab=Va-Vb;
+Rab=(((30*10)/(30+10))+((20*40)/(20+40)));
+Rl=Rab;
+Il=Vab/(Rl+Rl);
+P=Il^2*Rl;//power calculation
+disp(Rl,"the load resistance is (in ohm)");
+disp(P,"the maximum power delivered to load is (in W)");
|