diff options
Diffstat (limited to '1286/CH2/EX2.5')
-rwxr-xr-x | 1286/CH2/EX2.5/2_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1286/CH2/EX2.5/2_5.sce b/1286/CH2/EX2.5/2_5.sce new file mode 100755 index 000000000..c5bcf421c --- /dev/null +++ b/1286/CH2/EX2.5/2_5.sce @@ -0,0 +1,13 @@ +clc
+//initialisation
+t1=0//c
+t2=20//c
+g=0.000011//1/c
+h=0.000019//1/c
+l=41.628//cm
+//CALCULATIONS
+l20=l*(1+(h*(t2-t1)))
+l0=l20/(1+(g*(t2-t1)))
+//results
+printf(' true length of rod at 20 c= % 1f C',l20)
+printf(' true length of rod at 0 c= % 1f C',l0)
|