summaryrefslogtreecommitdiff
path: root/3630/CH12/EX12.7/Ex12_7.sce
diff options
context:
space:
mode:
Diffstat (limited to '3630/CH12/EX12.7/Ex12_7.sce')
-rw-r--r--3630/CH12/EX12.7/Ex12_7.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/3630/CH12/EX12.7/Ex12_7.sce b/3630/CH12/EX12.7/Ex12_7.sce
new file mode 100644
index 000000000..85875fb3e
--- /dev/null
+++ b/3630/CH12/EX12.7/Ex12_7.sce
@@ -0,0 +1,17 @@
+clc;
+//from example 12.7 Idqmax and Idqmin
+Idqmax=0.006;
+Idqmin=0.0015;
+Vdd=10;
+Rs=500;
+Rd=500;
+Vdsqmax=Vdd-Idqmin*(Rs+Rd);
+Vdsqmin=Vdd-Idqmax*(Rs+Rd);
+disp('V',Vdsqmax,"Vsdqmax=")
+disp('V',Vdsqmin,"Vsdqmin=")
+disp('The value of Vdsq will fall between Vdsqmax and Vdsqmin')
+
+
+
+
+