summaryrefslogtreecommitdiff
path: root/3864/CH2/EX2.2/Ex2_2.sce
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3864/CH2/EX2.2/Ex2_2.sce
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3864/CH2/EX2.2/Ex2_2.sce')
-rw-r--r--3864/CH2/EX2.2/Ex2_2.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3864/CH2/EX2.2/Ex2_2.sce b/3864/CH2/EX2.2/Ex2_2.sce
new file mode 100644
index 000000000..b255a81fa
--- /dev/null
+++ b/3864/CH2/EX2.2/Ex2_2.sce
@@ -0,0 +1,19 @@
+clear
+//
+
+//Initilization of Variables
+
+A=15*0.75 //mm**2 //area of steel tape
+P=100 //N //Force apllied
+L=30*10**3 //mm //Length of tape
+E=200*10**3 //N/m**2 //Modulus of Elasticity of steel tape
+AB=150 //m //Measurement of Line AB
+
+//Calculations
+
+dell_l=P*L*(A*E)**-1 //mm //Elongation
+l=L+dell_l*10**-3 //mm //Actual Length
+AB1=AB*l*L**-1 //m Actual Length of AB
+
+//Result
+printf("\n The Actual Length of Line AB is %0.2f m",AB1)