diff options
Diffstat (limited to '1823/CH1/EX1.9/SolEx1_9.sce')
-rwxr-xr-x | 1823/CH1/EX1.9/SolEx1_9.sce | 20 |
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)
+
|