diff options
Diffstat (limited to '3651/CH4/EX4.10/10.sce')
-rw-r--r-- | 3651/CH4/EX4.10/10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3651/CH4/EX4.10/10.sce b/3651/CH4/EX4.10/10.sce new file mode 100644 index 000000000..fe752c767 --- /dev/null +++ b/3651/CH4/EX4.10/10.sce @@ -0,0 +1,14 @@ +//Variable declaration
+rho1=1.2*10**-8
+p1=0.4
+rho2=0.12*10**-8
+p2=0.5
+rho3=1.5*10**-8
+//Calculations
+R=(rho1*p1)+(rho2*p2)
+R_c=R+rho3
+
+//Results
+printf('Increase in resistivity in copper =%0.3f *10**-8 ohm m \n ',(R*10**8))
+printf('Total resistivity of copper alloy =%0.3f *10**-8 ohm m \n ',(R_c*10**8))
+printf('The resistivity of alloy at 3K =%0.3f *10**-8 ohm m \n ',(R*10**8))
\ No newline at end of file |