diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1586/CH8/EX8.1 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-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.jpg | bin | 0 -> 186088 bytes | |||
-rw-r--r-- | 1586/CH8/EX8.1/EXP8_1.sce | 12 |
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 Binary files differnew file mode 100644 index 000000000..b89440509 --- /dev/null +++ b/1586/CH8/EX8.1/EXP8_1.jpg 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:")
|