diff options
Diffstat (limited to '3554/CH13/EX13.3/Ex13_3.sce')
-rw-r--r-- | 3554/CH13/EX13.3/Ex13_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3554/CH13/EX13.3/Ex13_3.sce b/3554/CH13/EX13.3/Ex13_3.sce new file mode 100644 index 000000000..e61b81efd --- /dev/null +++ b/3554/CH13/EX13.3/Ex13_3.sce @@ -0,0 +1,16 @@ +// Exa 13.3
+
+clc;
+clear all;
+
+// Given data
+
+K=2; // Gauge factor
+strain=1*10^-6; // Ratio of change in length to original length
+R=130; // Resistance in Ohms
+
+// Solution
+
+// As K = ratio of dell R/R to dell L/L
+Dell_R =K*R*strain ; // Change in resistance
+printf(' The change in resistance = %d micro Ohms \n',Dell_R*10^6);
|