diff options
Diffstat (limited to '620/CH18/EX18.1/example18_1.sce')
-rw-r--r-- | 620/CH18/EX18.1/example18_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/620/CH18/EX18.1/example18_1.sce b/620/CH18/EX18.1/example18_1.sce new file mode 100644 index 000000000..8c9303b51 --- /dev/null +++ b/620/CH18/EX18.1/example18_1.sce @@ -0,0 +1,11 @@ +n1=50;
+n2=300;
+v1=120;
+disp("Part a");
+r=n1/n2;
+disp("the transformation ratio is"); disp(r);
+disp("Part b");
+v2=v1*n2/n1;
+disp("the secondary voltage (in V) is"); disp(v2);
+disp("Part c");
+disp("since the transformation ratio is lesser than unity , this is a atep-up transformer");
\ No newline at end of file |