summaryrefslogtreecommitdiff
path: root/1586/CH8/EX8.1
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1586/CH8/EX8.1
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1586/CH8/EX8.1')
-rw-r--r--1586/CH8/EX8.1/EXP8_1.jpgbin0 -> 186088 bytes
-rw-r--r--1586/CH8/EX8.1/EXP8_1.sce12
2 files changed, 12 insertions, 0 deletions
diff --git a/1586/CH8/EX8.1/EXP8_1.jpg b/1586/CH8/EX8.1/EXP8_1.jpg
new file mode 100644
index 000000000..b89440509
--- /dev/null
+++ b/1586/CH8/EX8.1/EXP8_1.jpg
Binary files differ
diff --git a/1586/CH8/EX8.1/EXP8_1.sce b/1586/CH8/EX8.1/EXP8_1.sce
new file mode 100644
index 000000000..e97366a85
--- /dev/null
+++ b/1586/CH8/EX8.1/EXP8_1.sce
@@ -0,0 +1,12 @@
+clc;funcprot(0);//EXAMPLE 8.1
+// Initialisation of Variables
+t0=1;.......//Thickness of Copper plate in cm
+tf=0.50;.....//Cold reducetion of coopper in cm in step1
+tf2=0.16;.....// Further Cold reduction of cooper in cm in step2
+//CALCULATIONS
+%CW1=((t0-tf)/t0)*100;......//Amount of Cold work accomplished in step1
+%CW2=((tf-tf2)/tf)*100;.....//Amount of Cold work accomplished in step2
+%CW=((t0-tf2)/t0)*100;.......//Actual Total Cold work in percent
+disp(%CW1,"Amount of Cold work accomplished in step1:")
+disp(%CW2,"Amount of Cold work accomplished in step2:")
+disp(%CW,"Actual Total Cold work in percent:")