summaryrefslogtreecommitdiff
path: root/1823/CH1/EX1.9
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1823/CH1/EX1.9
downloadScilab-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.9')
-rwxr-xr-x1823/CH1/EX1.9/SolEx1_9.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/1823/CH1/EX1.9/SolEx1_9.sce b/1823/CH1/EX1.9/SolEx1_9.sce
new file mode 100755
index 000000000..2fde04ab5
--- /dev/null
+++ b/1823/CH1/EX1.9/SolEx1_9.sce
@@ -0,0 +1,20 @@
+
+//find the TheĀ“venin impedance as the ratio of open-circuit voltage to short-circuit current
+//Solved Example 1.9 page no 20
+clear
+clc
+printf("\n find the TheĀ“venin impedance as the ratio of open-circuit voltage to short-circuit current")
+V1=10//V
+V2=15//V
+R1=4//ohm
+R2=6//ohm
+I=(V1-V2)/(R1+R2)
+printf("\n The value of I is =%0.2f A",I)
+Vth=V1-I*R1
+Iab1=V1/R1
+Iab2=V2/R2
+printf("\n Then by superpostion ")
+In=Iab1+Iab2
+Zth=Vth/In
+printf("\n The value of Zth is =%0.2f ohm",Zth)
+