diff options
Diffstat (limited to '3890/CH3/EX3.3')
-rw-r--r-- | 3890/CH3/EX3.3/Ex3_3.png | bin | 0 -> 32413 bytes | |||
-rw-r--r-- | 3890/CH3/EX3.3/Ex3_3.sce | 15 |
2 files changed, 15 insertions, 0 deletions
diff --git a/3890/CH3/EX3.3/Ex3_3.png b/3890/CH3/EX3.3/Ex3_3.png Binary files differnew file mode 100644 index 000000000..5a3b4ef33 --- /dev/null +++ b/3890/CH3/EX3.3/Ex3_3.png diff --git a/3890/CH3/EX3.3/Ex3_3.sce b/3890/CH3/EX3.3/Ex3_3.sce new file mode 100644 index 000000000..a8c10b3ba --- /dev/null +++ b/3890/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,15 @@ +//Electric machines and power systems by Syed A Nasar
+//Publisher:TataMcgraw Hill
+//Year: 2002 ; Edition - 7
+//Example 3.3
+//Scilab Version : 6.0.0 ; OS : Windows
+
+clc;
+clear;
+
+a=5; //turns ratio
+Z=10; //load on transformer
+
+z1=(a^2)*Z;
+
+printf('The impedance at primary is %d ohms',z1)
|