diff options
Diffstat (limited to '1319/CH5/EX5.14/5_14.sce')
-rw-r--r-- | 1319/CH5/EX5.14/5_14.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1319/CH5/EX5.14/5_14.sce b/1319/CH5/EX5.14/5_14.sce new file mode 100644 index 000000000..9aa16254c --- /dev/null +++ b/1319/CH5/EX5.14/5_14.sce @@ -0,0 +1,12 @@ +// To determine the ratio of weights of copper
+
+clc;
+clear;
+
+n=3; //transformation ratio
+
+// Ratio of weights of copper in an ato transformer and a two winding transformer
+
+roc=(1-(1/n));
+
+printf('Ratio of weights of copper in an ato transformer and a two winding transformer = %f \n',roc)
|