diff options
Diffstat (limited to '380/CH1/EX1.1/ex1_1.sce')
-rwxr-xr-x | 380/CH1/EX1.1/ex1_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/380/CH1/EX1.1/ex1_1.sce b/380/CH1/EX1.1/ex1_1.sce new file mode 100755 index 000000000..4f0028786 --- /dev/null +++ b/380/CH1/EX1.1/ex1_1.sce @@ -0,0 +1,14 @@ +// Caption:finding the max power delivered
+//Exa:1.1
+close;
+clc;
+clear;
+//on applying KVL we get
+i=75/50;//in Amperes
+v_th=(30*i)+25;//Equivalent Thevenin voltage (in Volts)
+r_th=(20*30)/(20+30);//Equivalent thevenin resistance (in Ohms)
+R_load=r_th;//Load resistance=thevenin resistance (in Ohms)
+disp(R_load,'load resistance (in ohms)=') //in ohms
+i_load=v_th/(r_th+R_load);//in Amperes
+p_max=(i_load^2)*r_th;//in Watts
+disp(p_max,'max power (in watts)=')//maximum power dissipiated
\ No newline at end of file |