summaryrefslogtreecommitdiff
path: root/3769/CH14/EX14.12
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH14/EX14.12')
-rw-r--r--3769/CH14/EX14.12/Ex14_12.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3769/CH14/EX14.12/Ex14_12.sce b/3769/CH14/EX14.12/Ex14_12.sce
new file mode 100644
index 000000000..9def5ec1a
--- /dev/null
+++ b/3769/CH14/EX14.12/Ex14_12.sce
@@ -0,0 +1,15 @@
+clear
+//Given
+Vp=220.0 //V
+Is=5 //A
+n=20
+
+//Calculation
+Vs=Vp*n
+Ip=(Vs*Is)/Vp
+P=Vs*Is
+
+//Result
+printf("\n (i) Voltage across secondary is %0.3f V",Vs)
+printf("\n (ii) The current in primary is %0.3f A",Ip)
+printf("\n (iii) The power output is %0.3f K W",P*10**-3)