From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3864/CH2/EX2.2/Ex2_2.sce | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 3864/CH2/EX2.2/Ex2_2.sce (limited to '3864/CH2/EX2.2') 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) -- cgit