diff options
Diffstat (limited to '196/CH8/EX8.9')
-rwxr-xr-x | 196/CH8/EX8.9/example_8_9.sce | 11 | ||||
-rwxr-xr-x | 196/CH8/EX8.9/result_8_9.txt | 1 |
2 files changed, 12 insertions, 0 deletions
diff --git a/196/CH8/EX8.9/example_8_9.sce b/196/CH8/EX8.9/example_8_9.sce new file mode 100755 index 000000000..0bb31a0c0 --- /dev/null +++ b/196/CH8/EX8.9/example_8_9.sce @@ -0,0 +1,11 @@ +//Chapter 8
+//Example 8-9
+//ProbOnStrainGage
+//Page 230,231
+clear;clc;
+//Given
+GF = 2 ;//Gage factor
+DR = 0.001 ;
+R = 120 ;
+L = DR /(R*GF) ;
+printf ( "\n\n Change in length is %.9f inches per inch ", L )
\ No newline at end of file diff --git a/196/CH8/EX8.9/result_8_9.txt b/196/CH8/EX8.9/result_8_9.txt new file mode 100755 index 000000000..0b1a8cd40 --- /dev/null +++ b/196/CH8/EX8.9/result_8_9.txt @@ -0,0 +1 @@ +Change in length is 0.000004167 inches per inch
\ No newline at end of file |