diff options
Diffstat (limited to '3871/CH7/EX7.12/Ex7_12.sce')
-rw-r--r-- | 3871/CH7/EX7.12/Ex7_12.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3871/CH7/EX7.12/Ex7_12.sce b/3871/CH7/EX7.12/Ex7_12.sce new file mode 100644 index 000000000..25780fcc6 --- /dev/null +++ b/3871/CH7/EX7.12/Ex7_12.sce @@ -0,0 +1,17 @@ +//===========================================================================
+//chapter 7 example 12
+clc;clear all;
+
+//variable declaration
+V1 = 6600; //primary voltage in V
+V2 = 110; //secondary voltage in V
+I1 = 50; //primary current in A
+I2 = 5; //secondary voltage in A
+
+//calculations
+r = V1/V2; //hence transformation ratio of PT
+r1 = I1/I2; //transformation ratio of CT
+
+//result
+mprintf("transformation ratio of CT = %3.2f ",r1);
+
|