diff options
Diffstat (limited to '377/CH9/EX9.11/9_11.sce')
-rw-r--r-- | 377/CH9/EX9.11/9_11.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/377/CH9/EX9.11/9_11.sce b/377/CH9/EX9.11/9_11.sce new file mode 100644 index 000000000..0da234704 --- /dev/null +++ b/377/CH9/EX9.11/9_11.sce @@ -0,0 +1,11 @@ +disp("Is=A*R*T*exp(-q*Va/(K*T))");
+A=10^-3;
+R=110;
+T=300;
+Va=0.67;
+Va1=0.3;
+a=0.026; //say a=K*T/q
+Is=A*R*T*exp(-Va/a)*10^8;
+printf('\n The value of Is is %f*10^-8 A',Is*10^2);
+I=Is*exp(-Va1/a)*10^7;
+printf('\n The value of I is %f*10^-3 A',I);
|