summaryrefslogtreecommitdiff
path: root/2138/CH5/EX5.2/ex_5_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2138/CH5/EX5.2/ex_5_2.sce')
-rwxr-xr-x2138/CH5/EX5.2/ex_5_2.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/2138/CH5/EX5.2/ex_5_2.sce b/2138/CH5/EX5.2/ex_5_2.sce
new file mode 100755
index 000000000..76fa73b03
--- /dev/null
+++ b/2138/CH5/EX5.2/ex_5_2.sce
@@ -0,0 +1,13 @@
+//Example 5.2: thickness
+clc;
+clear;
+close;
+//given data :
+Z=0.329*10^-3;// IN g/C
+I=1;// in amperes
+t=90*60;// in seconds
+M=Z*I*t;// in grams
+A=200;//area in centimete square
+S=8.9;//density in g/cc
+T=(M)/(2*A*S);//thickness in cm
+disp(T,"thickness of copper in cm is")