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.21/ex1_21.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 343/CH1/EX1.21/ex1_21.sce (limited to '343/CH1/EX1.21') diff --git a/343/CH1/EX1.21/ex1_21.sce b/343/CH1/EX1.21/ex1_21.sce new file mode 100755 index 000000000..39a321bb0 --- /dev/null +++ b/343/CH1/EX1.21/ex1_21.sce @@ -0,0 +1,15 @@ +R1=5; //Assigning values to resistors +R2=15; +R3=10; +R4=10; +R5=40; +R6=30; +R7=20; +R8=8; +Rc=R2+R3; //Simplifying the network +Re=R4+R5; +Rf=R6+R7; +R=1/((1/Re)+(1/Rf)); +Rd=1/((1/R)+(1/Rc)); +Req=Rd+R1+R8; +disp("Ohms",Req,"Effective resistance"); \ No newline at end of file -- cgit