summaryrefslogtreecommitdiff
path: root/1026/CH6/EX6.4
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1026/CH6/EX6.4
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1026/CH6/EX6.4')
-rwxr-xr-x1026/CH6/EX6.4/Example6_4.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/1026/CH6/EX6.4/Example6_4.sce b/1026/CH6/EX6.4/Example6_4.sce
new file mode 100755
index 000000000..40621e5cc
--- /dev/null
+++ b/1026/CH6/EX6.4/Example6_4.sce
@@ -0,0 +1,29 @@
+//chapter6,Example6_4,pg 122
+
+sig=3.82*10^7
+
+L=1000*12*2.54*10^-2//converting into m
+
+r=0.4*2.54*10^-2
+
+V=1.2
+
+Jc=sig*(V/L)
+
+A=3.14*(r^2)
+
+Ic=Jc*A
+
+P=Ic*V
+
+printf("current density\n")
+
+printf("Jc=%.f A/m2",Jc)
+
+printf("\ntotal current\n")
+
+printf("Ic=%.2f A",Ic)
+
+printf("\npower dissipation\n")
+
+printf("P=%.2f watt",P) \ No newline at end of file