diff options
Diffstat (limited to '3769/CH14/EX14.11')
-rw-r--r-- | 3769/CH14/EX14.11/Ex14_11.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3769/CH14/EX14.11/Ex14_11.sce b/3769/CH14/EX14.11/Ex14_11.sce new file mode 100644 index 000000000..14166279b --- /dev/null +++ b/3769/CH14/EX14.11/Ex14_11.sce @@ -0,0 +1,14 @@ +clear +//Given +V=200 //V +Vp=200 //V +n=200.0 +Ip=2 //A + +//Calculation +Vs=Vp*n +Is=(Ip*V)/Vs + +//Result +printf("\n (i) Voltage developed in the secondary is %0.3f V", Vs) +printf("\n (ii) The current in the secondary is %0.3f A",Is ) |