diff options
Diffstat (limited to '1223/CH14/EX14.10/Ex14_10.sce')
-rwxr-xr-x | 1223/CH14/EX14.10/Ex14_10.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1223/CH14/EX14.10/Ex14_10.sce b/1223/CH14/EX14.10/Ex14_10.sce new file mode 100755 index 000000000..91a971f84 --- /dev/null +++ b/1223/CH14/EX14.10/Ex14_10.sce @@ -0,0 +1,12 @@ +clear;
+clc;
+//Example 14.10
+Kn1=105;
+Kn2=100;
+Iq=200;
+dKn=Kn1-Kn2;
+printf('\ndifference in conduction parameter=%.2f microA/V^2\n',dKn)
+Kn=(Kn1+Kn2)/2;
+printf('\naverage of the conduction parameter=%.2f microA/V^2\n',Kn)
+Vos=sqrt(Iq/(2*Kn))*dKn/(2*Kn);
+printf('\noffset voltage=%f V\n',Vos)
|