diff options
Diffstat (limited to '3830/CH7/EX7.5/Ex7_5.sce')
-rw-r--r-- | 3830/CH7/EX7.5/Ex7_5.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3830/CH7/EX7.5/Ex7_5.sce b/3830/CH7/EX7.5/Ex7_5.sce new file mode 100644 index 000000000..1efe69c70 --- /dev/null +++ b/3830/CH7/EX7.5/Ex7_5.sce @@ -0,0 +1,18 @@ +// Exa 7.5
+
+clc;
+clear;
+
+// Given
+
+L = 0.1 ; // Initial length of wire in m
+R = 120; // Initial resistance of wire in ohms
+delta_L = 0.1*10^-3;// change in length of wire in m
+delta_R = 0.21; // change in resistance of wire in ohms
+
+// Solution
+
+e = delta_L/L;
+G = (delta_R/R)/e;
+
+printf(' The gauge factor of device = %.2f \n',G);
|