diff options
Diffstat (limited to '3515/CH4/EX4.8/Ex4_8.sce')
-rw-r--r-- | 3515/CH4/EX4.8/Ex4_8.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3515/CH4/EX4.8/Ex4_8.sce b/3515/CH4/EX4.8/Ex4_8.sce new file mode 100644 index 000000000..51645764b --- /dev/null +++ b/3515/CH4/EX4.8/Ex4_8.sce @@ -0,0 +1,12 @@ +// Exa 4.8
+format('v',7);
+clc;
+clear;
+close;
+// Given data
+iE1_by_I= 0.99; // as it is given that iE1= 0.99 *I
+VT= 0.025;// in volt
+// Formula iE1= I/(1+%e^(-vid/VT))
+// %e^(-vid/VT)= 1/iE1_by_I-1
+vid= log( 1/iE1_by_I-1)*(-VT);// in volt
+disp(round(vid*10^3),"Input differential signal in mVis : ")
|