summaryrefslogtreecommitdiff
path: root/3630/CH19/EX19.2/Ex19_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH19/EX19.2/Ex19_2.sce')
-rw-r--r--3630/CH19/EX19.2/Ex19_2.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3630/CH19/EX19.2/Ex19_2.sce b/3630/CH19/EX19.2/Ex19_2.sce
new file mode 100644
index 000000000..2539dff8b
--- /dev/null
+++ b/3630/CH19/EX19.2/Ex19_2.sce
@@ -0,0 +1,17 @@
+clc;
+Vdd1=5;
+Idss=0.005;
+Rd1=1000;
+Vout1=Vdd1-(Idss*Rd1);
+Vdd=5;
+Id=0;
+Rd=1000;
+Vout2=Vdd-(Id*Rd);
+disp('V',Vout1,"Vout1=");//The answers vary due to round off error
+disp('V',Vout2,"Vout2=");//The answers vary due to round off error
+
+
+
+
+
+