diff options
Diffstat (limited to '343/CH1/EX1.70/ex_70.sce')
-rwxr-xr-x | 343/CH1/EX1.70/ex_70.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/343/CH1/EX1.70/ex_70.sce b/343/CH1/EX1.70/ex_70.sce new file mode 100755 index 000000000..ea0348191 --- /dev/null +++ b/343/CH1/EX1.70/ex_70.sce @@ -0,0 +1,12 @@ +I1=5; //Assigning values to parameters
+I2=2;
+V1=6;
+R1=2;
+R2=4;
+I1=5;
+I2=(R1*I1-6)/R1;
+I3=I2+2;
+IN=I3; //Calculation of Norton current
+RN=R1; //Calculation of Norton resistance
+Il=IN*RN/(RN+R2); //Calculation of load current using Norton theorem
+disp("Amperes",Il,"Current in 4 Ohm resistor by Norton theorem");
\ No newline at end of file |