From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3754/CH5/EX5.6/5_6.sce | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 3754/CH5/EX5.6/5_6.sce (limited to '3754/CH5/EX5.6/5_6.sce') diff --git a/3754/CH5/EX5.6/5_6.sce b/3754/CH5/EX5.6/5_6.sce new file mode 100644 index 000000000..8e1a2b715 --- /dev/null +++ b/3754/CH5/EX5.6/5_6.sce @@ -0,0 +1,24 @@ +clear// + +//Variables + +V = 25.0 //Source voltage (in volts) +R1 = 100.0 //Resistance (in ohm) +R2 = 75.0 //Resistance (in ohm) +R3 = 50.0 //Resistance (in ohm) +R4 = 25.0 //Resistance (in ohm) +RL = 250.0 //Load resistance (in ohm) + +//Calculation + +I = V / (R1 + R2 + R3) //Series curren (in Ampere) +VR2 = I * R2 //Voltage drop across R2 +VOC = VR2 //Open circuit voltage (in volts) +Vth = VOC //Thevenin's equivalent voltage (in volts) +Rth = R4 + R2*(R1 + R3)/(R1 + R2 + R3) //Thevenin's equivalent resistance (in ohm) +IL = Vth/(Rth + RL) + +//Result + +printf("\n Thevenins equivalent voltage is %0.3f V. and resistance in %0.3f ohm.",Vth,Rth) +printf("\n Current through load resistance is %0.3f A.",IL) -- cgit