diff options
Diffstat (limited to '608/CH3/EX3.09')
-rwxr-xr-x | 608/CH3/EX3.09/3_09.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/608/CH3/EX3.09/3_09.sce b/608/CH3/EX3.09/3_09.sce new file mode 100755 index 000000000..6be6ce8a8 --- /dev/null +++ b/608/CH3/EX3.09/3_09.sce @@ -0,0 +1,14 @@ +//Problem 3.09: An aluminium cable has a resistance of 27 ohms at a temperature of 35°C. Determine its resistance at 0°C. Take the temperature coefficient of resistance at 0°C to be 0.0038/°C
+
+//initializing the variables:
+R1 = 27; // in ohms
+T0 = 0; // in °C
+T1 = 35; // in °C
+a0 = 0.0038; // in per°C
+pi = 3.14;
+
+//calculation:
+R0 = R1/[1 + (a0*T1)]
+
+printf("\n\nResult\n\n")
+printf("\nresistance %.2f Ohm\n",R0)
\ No newline at end of file |