summaryrefslogtreecommitdiff
path: root/3763/CH5/EX5.4
diff options
context:
space:
mode:
Diffstat (limited to '3763/CH5/EX5.4')
-rw-r--r--3763/CH5/EX5.4/Ex5_4.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3763/CH5/EX5.4/Ex5_4.sce b/3763/CH5/EX5.4/Ex5_4.sce
new file mode 100644
index 000000000..3292f3eef
--- /dev/null
+++ b/3763/CH5/EX5.4/Ex5_4.sce
@@ -0,0 +1,16 @@
+clear
+//
+//
+//
+
+//Variable declaration
+rho=1.7*10**-8 //resistivity(ohm m)
+T=300 //temperature(K)
+T1=973 //temperature(K)
+
+//Calculation
+a=rho/T
+rho_973=a*T1 //resistivity(ohm m)
+
+//Result
+printf("\n resistivity is %0.2f *10**-8 ohm m",rho_973*10**8)