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 /1445/CH1/EX1.27 | |
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 '1445/CH1/EX1.27')
-rw-r--r-- | 1445/CH1/EX1.27/Ex1_27.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1445/CH1/EX1.27/Ex1_27.sce b/1445/CH1/EX1.27/Ex1_27.sce new file mode 100644 index 000000000..e4aa7816d --- /dev/null +++ b/1445/CH1/EX1.27/Ex1_27.sce @@ -0,0 +1,21 @@ +//CHAPTER 1- D.C. CIRCUIT ANALYSIS AND NETWORK THEOREMS +//Example 27 + +disp("CHAPTER 1"); +disp("EXAMPLE 27"); + +//VARIABLE INITIALIZATION +I1=5; //current source in Amperes +vb=100; //voltage source in Volts +r1=20; //in Ohms +r2=10; //in Ohms +r3=20; //in Ohms + +//SOLUTION +va=I1*r1; //by applying node analysis at point 'a' +vth=va-vb; //Thevenin voltage vth=vab +rth=r1+((r3*0)/(r3+0)); //Thevenin resistance +I=vth/(rth+r2); +disp(sprintf("By Thevenin Theorem, the value of I is %d A",I)); + +//END |