diff options
Diffstat (limited to '995/CH4/EX4.16/Ex4_16.sce')
-rwxr-xr-x | 995/CH4/EX4.16/Ex4_16.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/995/CH4/EX4.16/Ex4_16.sce b/995/CH4/EX4.16/Ex4_16.sce new file mode 100755 index 000000000..9706157f8 --- /dev/null +++ b/995/CH4/EX4.16/Ex4_16.sce @@ -0,0 +1,12 @@ +//Ex:4.16
+clc;
+clear;
+close;
+V_p=200;
+V_s=10;
+N_p=1200;
+N_s=N_p*V_s/V_p;
+i_s=2.5;
+i_p=N_s*i_s/N_p;
+printf("Secondry turns = %d ",N_s);
+printf("\nprimary current = %f A",i_p);
\ No newline at end of file |