summaryrefslogtreecommitdiff
path: root/3257/CH12/EX12.2
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /3257/CH12/EX12.2
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 '3257/CH12/EX12.2')
-rwxr-xr-x3257/CH12/EX12.2/Ex12_2.sce13
-rwxr-xr-x3257/CH12/EX12.2/Ex12_2.txt3
2 files changed, 16 insertions, 0 deletions
diff --git a/3257/CH12/EX12.2/Ex12_2.sce b/3257/CH12/EX12.2/Ex12_2.sce
new file mode 100755
index 000000000..0532aa291
--- /dev/null
+++ b/3257/CH12/EX12.2/Ex12_2.sce
@@ -0,0 +1,13 @@
+// current in shielded metal arc welding
+clc
+V = 20 // applied voltage in Volt
+b = 10 // base in mm
+h = 10 // height in mm
+e = 0.75 // efficiency
+u = 10.3 // specific energy in J/mm^3
+v = 10 // weld speed in mm/sec
+printf("\n Example 12.2")
+A = 1/2*b*h // Area in mm^2
+I = v*u*A/(e*V) // Current in Ampere
+printf("\n Amount of current needed for welding is %d Ampere.",I)
+
diff --git a/3257/CH12/EX12.2/Ex12_2.txt b/3257/CH12/EX12.2/Ex12_2.txt
new file mode 100755
index 000000000..e8b710221
--- /dev/null
+++ b/3257/CH12/EX12.2/Ex12_2.txt
@@ -0,0 +1,3 @@
+
+ Example 12.2
+ Amount of current needed for welding is 343 Ampere. \ No newline at end of file