summaryrefslogtreecommitdiff
path: root/3835/CH6/EX6.13/Ex6_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3835/CH6/EX6.13/Ex6_13.sce')
-rw-r--r--3835/CH6/EX6.13/Ex6_13.sce35
1 files changed, 35 insertions, 0 deletions
diff --git a/3835/CH6/EX6.13/Ex6_13.sce b/3835/CH6/EX6.13/Ex6_13.sce
new file mode 100644
index 000000000..a2537b7fd
--- /dev/null
+++ b/3835/CH6/EX6.13/Ex6_13.sce
@@ -0,0 +1,35 @@
+clear
+//
+//given and 1.732 is the value of root 3
+v=6600
+i=10
+n=15
+//case a
+v2l=v/n
+printf("\n v2l= %0.1f V",v2l)
+i1p=10/1.732
+i2p=i1p*n
+printf("\n i2p= %0.1f A",i2p)
+i2l=n*i1p*1.732
+printf("\n i2l= %0.1f A",i2l)
+//case b
+v2p=v/(n*1.732)
+printf("\n v2p= %0.1f V",v2p)
+v2l=v2p*1.732
+printf("\n v2l= %0.1f V",v2l)
+printf("\n i2p=i2l= %0.1f A",i2p)
+//case c
+v2p=v/n
+printf("\n v2p= %0.1f V",v2p)
+v2l=(v*1.732)/n
+printf("\n v2l= %0.1f V",v2l)
+i1p=i/1.732
+printf("\n i2p= %0.1f A",i2p)
+//case d
+v1p=v/1.732
+printf("\n v2p= %0.1f V",v2p)
+i1p=10
+i2p=i1p*n
+printf("\n i2p= %0.1f A",i2p)
+i2l=i2p*1.732
+printf("\n i2l= %0.1f A",i2l)