diff options
Diffstat (limited to '3640/CH1/EX1.5/Ex1_5.sce')
-rw-r--r-- | 3640/CH1/EX1.5/Ex1_5.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3640/CH1/EX1.5/Ex1_5.sce b/3640/CH1/EX1.5/Ex1_5.sce new file mode 100644 index 000000000..51978a0ce --- /dev/null +++ b/3640/CH1/EX1.5/Ex1_5.sce @@ -0,0 +1,12 @@ +clc
+Pk=75 //core loss of transfomer in watts
+R=0.048 //internal resistance in ohms
+V2=240// secondary voltage in volts
+I2=sqrt(Pk/R)//secondary current in amperes
+mprintf("I2=%f A\n",I2)//ans may vary due to roundoff error
+mprintf("|S|=V2*I2=%d VA",V2*I2)//The answer in the textbook is wrong //output volt ampere of transformer
+
+
+
+
+
|