diff options
Diffstat (limited to '3648/CH17/EX17.3/Ex17_3.sce')
-rw-r--r-- | 3648/CH17/EX17.3/Ex17_3.sce | 9 |
1 files changed, 9 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)
|