diff options
Diffstat (limited to '74/CH3/EX3.21/example21_sce.sce')
-rwxr-xr-x | 74/CH3/EX3.21/example21_sce.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/74/CH3/EX3.21/example21_sce.sce b/74/CH3/EX3.21/example21_sce.sce new file mode 100755 index 000000000..395cce6b1 --- /dev/null +++ b/74/CH3/EX3.21/example21_sce.sce @@ -0,0 +1,11 @@ +//chapter 3
+//example 3.21
+//page 167
+Ro=100;
+x=0.00392;
+T1=25;//temp at 25c
+R(25)=Ro*(1+(x*T1));
+disp(R(25))// resistance at 25 degree
+T2=100;
+R(100)=Ro*(1+(x*T2));
+disp(R(100))//resistance at 100 degree
\ No newline at end of file |