diff options
Diffstat (limited to '929/CH2/EX2.11.c/Example2_11_c.sce')
-rwxr-xr-x | 929/CH2/EX2.11.c/Example2_11_c.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/929/CH2/EX2.11.c/Example2_11_c.sce b/929/CH2/EX2.11.c/Example2_11_c.sce new file mode 100755 index 000000000..83835c1ab --- /dev/null +++ b/929/CH2/EX2.11.c/Example2_11_c.sce @@ -0,0 +1,21 @@ +//Example 2.11(c)
+
+clear;
+
+clc;
+
+R0=100;
+
+alpha=0.00392;
+
+dT=10;
+
+delta=alpha*dT;
+
+deltaper=delta*100;
+
+dR=R0*delta;
+
+printf("Change in R=%.2f ohms",dR);
+
+printf("\nPercentage Deviation=%.2f percent",deltaper);
\ No newline at end of file |