diff options
Diffstat (limited to '3673/CH3/EX3.a.16/Example_a_3_16.sce')
-rw-r--r-- | 3673/CH3/EX3.a.16/Example_a_3_16.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3673/CH3/EX3.a.16/Example_a_3_16.sce b/3673/CH3/EX3.a.16/Example_a_3_16.sce new file mode 100644 index 000000000..b02032670 --- /dev/null +++ b/3673/CH3/EX3.a.16/Example_a_3_16.sce @@ -0,0 +1,16 @@ +//Example_a_3_16 page no:145
+clc;
+V1=50;
+R1=10;
+R2=2;
+R3=5;
+R4=3;
+Rt=(((3+2)*5)/((3+2)+5))+10;
+It=50/Rt;
+I3=It*(R3/(R3+R3));
+Vab=R4*I3;//in V
+Rth=((((10*5)/(10+5))+2)*3)/((((10*5)/(10+5))+2)+3);
+Rl=Rth;//here Rl is equal to Rth
+Il=Vab/(Rl+Rl);
+P=Il^2*Rl;
+disp(P,"the maximum power delivered to the load is (in W)");
|