diff options
Diffstat (limited to '1085/CH14/EX14.1')
-rwxr-xr-x | 1085/CH14/EX14.1/ex14_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1085/CH14/EX14.1/ex14_1.sce b/1085/CH14/EX14.1/ex14_1.sce new file mode 100755 index 000000000..1ece714c5 --- /dev/null +++ b/1085/CH14/EX14.1/ex14_1.sce @@ -0,0 +1,9 @@ +//Exam:14.1
+clc;
+clear;
+close;
+l=100;//length of wire
+p=2.66*10^(-8);//resistivity
+A=3*10^(-6);//cross sectional area
+R=p*l/A;//resistance of an aluminium wire
+disp(R,'resistance of an aluminium wire(in Ohm)=');
\ No newline at end of file |