summaryrefslogtreecommitdiff
path: root/3648/CH17/EX17.3
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH17/EX17.3')
-rw-r--r--3648/CH17/EX17.3/Ex17_3.sce9
-rw-r--r--3648/CH17/EX17.3/Ex17_3.txt1
2 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH17/EX17.3/Ex17_3.sce b/3648/CH17/EX17.3/Ex17_3.sce
new file mode 100644
index 000000000..91d6c4a92
--- /dev/null
+++ b/3648/CH17/EX17.3/Ex17_3.sce
@@ -0,0 +1,9 @@
+//Example 17_3
+clc();
+clear;
+//To find the resistance in wire
+row=1.7*10^-8 //Units in Ohm meter
+l=40 //Units in meters
+a=0.0331*10^-4 //Units in meters^2
+r=(row*l)/a //Units in Ohms
+printf("The resistance in wire is=%.3f Ohms",r)
diff --git a/3648/CH17/EX17.3/Ex17_3.txt b/3648/CH17/EX17.3/Ex17_3.txt
new file mode 100644
index 000000000..939b3df44
--- /dev/null
+++ b/3648/CH17/EX17.3/Ex17_3.txt
@@ -0,0 +1 @@
+The resistance in wire is=0.205 Ohms \ No newline at end of file