From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 343/CH1/EX1.68/ex_68.sce | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 343/CH1/EX1.68/ex_68.sce (limited to '343/CH1/EX1.68/ex_68.sce') diff --git a/343/CH1/EX1.68/ex_68.sce b/343/CH1/EX1.68/ex_68.sce new file mode 100755 index 000000000..7964f755c --- /dev/null +++ b/343/CH1/EX1.68/ex_68.sce @@ -0,0 +1,12 @@ +R1=10; //Assigning values to parameters +R2=20; +R3=40; +R4=30; +R5=15; +V=2; +I1=V/(R1+R4); +I2=V/(R2+R5); +Vth=R2*I2-R1*I1; //Calculation of Thevenin voltage +Rth=((R1*R4)/(R1+R4))+((R2*R5)/(R2+R5)); //Calculation of Thevenin resistance +Il=Vth/(Rth+R3); +disp("Amperes",Il,"Load current") \ No newline at end of file -- cgit