diff options
Diffstat (limited to '2288/CH4/EX4.16.9/ex4_16_9.sce')
-rwxr-xr-x | 2288/CH4/EX4.16.9/ex4_16_9.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2288/CH4/EX4.16.9/ex4_16_9.sce b/2288/CH4/EX4.16.9/ex4_16_9.sce new file mode 100755 index 000000000..352b24435 --- /dev/null +++ b/2288/CH4/EX4.16.9/ex4_16_9.sce @@ -0,0 +1,12 @@ +// Exa 4.16.9
+clc;
+clear;
+close;
+// Given data
+I_o = 1.8 * 10^-9;// A
+v = 0.6;// in V
+Eta = 2;
+V_T = 26;// in mV
+V_T=V_T*10^-3;// in V
+I = I_o *(%e^(v/(Eta * V_T)));// in A
+disp(I*10^3,"The current in the junction in mA is");
|