summaryrefslogtreecommitdiff
path: root/3763/CH5/EX5.5/Ex5_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3763/CH5/EX5.5/Ex5_5.sce')
-rw-r--r--3763/CH5/EX5.5/Ex5_5.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3763/CH5/EX5.5/Ex5_5.sce b/3763/CH5/EX5.5/Ex5_5.sce
new file mode 100644
index 000000000..1a67cab8b
--- /dev/null
+++ b/3763/CH5/EX5.5/Ex5_5.sce
@@ -0,0 +1,18 @@
+clear
+//
+//
+//
+
+//Variable declaration
+rho1=1.2*10**-8 //resistivity(ohm m)
+rho2=0.12*10**-8 //resistivity(ohm m)
+p1=0.4 //atomic percent
+p2=0.5 //atomic percent
+rho=1.5*10**-8 //resistivity(ohm m)
+
+//Calculation
+rho_i=(rho1*p1)+(rho2*p2) //increase of resistivity(ohm m)
+Tr=rho+rho_i //total resistivity of copper alloy(ohm m)
+
+//Result
+printf("\n increase of resistivity is %0.2f *10**-8 ohm m",rho_i*10**8)