summaryrefslogtreecommitdiff
path: root/147/CH13/EX13.16/Example13_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '147/CH13/EX13.16/Example13_16.sce')
-rw-r--r--147/CH13/EX13.16/Example13_16.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/147/CH13/EX13.16/Example13_16.sce b/147/CH13/EX13.16/Example13_16.sce
new file mode 100644
index 000000000..957097c38
--- /dev/null
+++ b/147/CH13/EX13.16/Example13_16.sce
@@ -0,0 +1,14 @@
+//Transformer frequency fr, Source frequency fs
+close();
+clear;
+clc;
+Pr = 500;//VA
+ft = 25;//Hz
+fs = 60;
+V1 = 120;
+V2 = 30;
+//Maximum permissible primary voltage 'V1max'
+V1max = fs/ft*V1;
+V2r = fs/ft*V2;
+I2r = Pr/V2;
+mprintf('Maximum primary voltage = %0.0f V\nrated V2 = %0.0f V\nrated I2 = %0.2f A',V1max,V2r,I2r); \ No newline at end of file