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 /1823/CH1/EX1.8/SolEx1_8.sce | |
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 '1823/CH1/EX1.8/SolEx1_8.sce')
-rwxr-xr-x | 1823/CH1/EX1.8/SolEx1_8.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1823/CH1/EX1.8/SolEx1_8.sce b/1823/CH1/EX1.8/SolEx1_8.sce new file mode 100755 index 000000000..4f531741f --- /dev/null +++ b/1823/CH1/EX1.8/SolEx1_8.sce @@ -0,0 +1,18 @@ +
+//find the Norton equivalent for the network to the left of terminals a; b.
+//Solved Example 1.8 page no 19
+clear
+clc
+printf("\n find the Norton equivalent for the network to the left of termin")
+V1=10//V
+V2=15//V
+R1=4//ohm
+R2=6//ohm
+Iab1=V1/R1
+Iab2=V2/R2
+printf("\n Then by superpostion ")
+In=Iab1+Iab2
+Zth=(R1*R2)/(R1+R2)
+Yn=1/Zth//Rth=Zth
+printf("\n The value of In =%0.2f A and Yn= %0.4f A",In,Yn)
+
|