summaryrefslogtreecommitdiff
path: root/3866/CH5/EX5.2/Ex5_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3866/CH5/EX5.2/Ex5_2.sce')
-rw-r--r--3866/CH5/EX5.2/Ex5_2.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3866/CH5/EX5.2/Ex5_2.sce b/3866/CH5/EX5.2/Ex5_2.sce
new file mode 100644
index 000000000..e43dc52ba
--- /dev/null
+++ b/3866/CH5/EX5.2/Ex5_2.sce
@@ -0,0 +1,17 @@
+clc; clear; close;
+
+Wn1=400;//in nm
+Wp1=400;//in nm
+Wn2=200;//in nm
+Wp2=800;//in nm
+Vdd=1.8;//in volts
+Vtp=0.5;//in volts
+Vtn=0.5;//in volts
+Ep=24;//in volts
+En=6;//in volts
+X1=sqrt((Wn1*Ep)/(Wp1*En));
+Vs1=(Vdd+(X1*Vtn)-Vtp)/(1+X1);
+X2=sqrt((Wn2*Ep)/(Wp2*En));
+Vs2=(Vdd+(X2*Vtn)-Vtp)/(1+X2);
+disp(Vs1,'Vs when one input is high and other is varied(in volts)=');
+disp(Vs2,'Vs when both inputs are varied(in volts)=');