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/CH9/EX9.8/9_8.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3754/CH9/EX9.8/9_8.sce (limited to '3754/CH9/EX9.8/9_8.sce') diff --git a/3754/CH9/EX9.8/9_8.sce b/3754/CH9/EX9.8/9_8.sce new file mode 100644 index 000000000..e33fa49bc --- /dev/null +++ b/3754/CH9/EX9.8/9_8.sce @@ -0,0 +1,18 @@ +clear// + +//Variables + +IS =1.5 //Source current (in milli-Ampere) +RS = 2 //Source resistance (in kilo-ohm) + +//Calculation + +RL = 10*40/(10+40) //Load Reistance (in kilo-ohm) +IL = IS * RS/(RL +RS) //Load current (in milli-Ampere) +IL2 = IL * 10/(10 +40) //Current through part 2 (in milli-Ampere) +VS = IS * RS //Souce voltage (in volts) + +//Result + +printf("\n current through 40 kilo-ohm resistor is %0.3f mA.",IL2) +printf("\n Equivalent volage source is %0.3f V.",VS) -- cgit