From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 1823/CH1/EX1.9/SolEx1_9.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 1823/CH1/EX1.9/SolEx1_9.sce (limited to '1823/CH1/EX1.9/SolEx1_9.sce') 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) + -- cgit