summaryrefslogtreecommitdiff
path: root/3554/CH13/EX13.3/Ex13_3.sce
blob: e61b81efdcca1b19d5324538a37f6f594fb26785 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);