summaryrefslogtreecommitdiff
path: root/2129/CH3/EX3.10.4
diff options
context:
space:
mode:
Diffstat (limited to '2129/CH3/EX3.10.4')
-rwxr-xr-x2129/CH3/EX3.10.4/ex3_10_4.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2129/CH3/EX3.10.4/ex3_10_4.sce b/2129/CH3/EX3.10.4/ex3_10_4.sce
new file mode 100755
index 000000000..7eee50724
--- /dev/null
+++ b/2129/CH3/EX3.10.4/ex3_10_4.sce
@@ -0,0 +1,16 @@
+//Exa 3.10.4
+clc;
+clear;
+close;
+// Given data
+// Part (i)
+T1= 25;// in °C
+T2= 80;// in °C
+// Formula Io2= Io1*2^((T2-T1)/10)
+AntiFactor= 2^((T2-T1)/10);
+disp(round(AntiFactor),"Anticipated factor for Ge is : ")
+// Part (ii)
+T1= 25;// in °C
+T2= 150;// in °C
+AntiFactor= 2^((T2-T1)/10);
+disp(round(AntiFactor),"Anticipated factor for Si is : ")