summaryrefslogtreecommitdiff
path: root/1991/CH2/EX2.31
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1991/CH2/EX2.31
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 '1991/CH2/EX2.31')
-rwxr-xr-x1991/CH2/EX2.31/31.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1991/CH2/EX2.31/31.sce b/1991/CH2/EX2.31/31.sce
new file mode 100755
index 000000000..5340e2d82
--- /dev/null
+++ b/1991/CH2/EX2.31/31.sce
@@ -0,0 +1,13 @@
+clc
+clear
+//input
+w=250*10^3
+s=0.00003//strain
+a=0.04//area
+w1=320*10^3
+//calculation
+e=w/(a*s)//youngs module
+st=w1/a//stress
+//output
+printf("the youngs modulus is %3.3e N/m^2",e)
+printf("\n the stress is %3.0e N/m^2",st)