summaryrefslogtreecommitdiff
path: root/3648/CH17/EX17.4/Ex17_4.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH17/EX17.4/Ex17_4.sce')
-rw-r--r--3648/CH17/EX17.4/Ex17_4.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH17/EX17.4/Ex17_4.sce b/3648/CH17/EX17.4/Ex17_4.sce
new file mode 100644
index 000000000..a6069e15b
--- /dev/null
+++ b/3648/CH17/EX17.4/Ex17_4.sce
@@ -0,0 +1,9 @@
+//Example 17_4
+clc();
+clear;
+//To find the appropriate resistance of the wire
+alpha=0.0045 //Units in Centigrade^-1
+t=1780 //Units in Centigrade
+deltaR=240 //Units in Ohms
+ro=deltaR/(1+(alpha*t)) //Units in ohms
+printf("The appropriate resistance in wire is Ro=%.1f Ohms",ro)