diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /343/CH1/EX1.70 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '343/CH1/EX1.70')
-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 |