diff options
Diffstat (limited to '3754/CH9/EX9.8/9_8.sce')
-rw-r--r-- | 3754/CH9/EX9.8/9_8.sce | 18 |
1 files changed, 18 insertions, 0 deletions
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)
|