From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3754/CH3/EX3.11/3_11.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3754/CH3/EX3.11/3_11.sce (limited to '3754/CH3/EX3.11/3_11.sce') diff --git a/3754/CH3/EX3.11/3_11.sce b/3754/CH3/EX3.11/3_11.sce new file mode 100644 index 000000000..ccc4b00e9 --- /dev/null +++ b/3754/CH3/EX3.11/3_11.sce @@ -0,0 +1,18 @@ +clear// + +//Variables + +lc = 200 //Length of copper wire (in meter) +Rc = 1.5 //Resistance of Copper wire(in ohm) +pc = 1.7 * 10**-8 //Resistivity of (in ohm-meter) +ls = 10 //Length of silver wire (in meter) +ps = 1.6 * 10**-8 //Resistivity of Silver (in ohm-meter) + +//Calculation + +A = pc * lc / Rc //Area of cross section (in metersquare) +Rs = ps * ls / A //Resistance of silver wire(in ohm) + +//Result + +printf("\n The resistance of silver wire is %0.2f ohm.",Rs) -- cgit