summaryrefslogtreecommitdiff
path: root/3630/CH19/EX19.3
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH19/EX19.3')
-rw-r--r--3630/CH19/EX19.3/Ex19_3.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/3630/CH19/EX19.3/Ex19_3.sce b/3630/CH19/EX19.3/Ex19_3.sce
new file mode 100644
index 000000000..64da32880
--- /dev/null
+++ b/3630/CH19/EX19.3/Ex19_3.sce
@@ -0,0 +1,11 @@
+clc;
+Vdd=10;
+Idss1=0.002;
+Rd1=1000;
+Rd2=100;
+Vout1=Vdd-(Idss1*Rd1);
+Vout2=Vdd-(Idss1*Rd2);
+disp('V',Vout1,"Vout1=");//The answers vary due to round off error
+disp('V',Vout2,"Vout2=");//The answers vary due to round off error
+
+