summaryrefslogtreecommitdiff
path: root/73/CH16/EX16.13/Example16_13.sci
diff options
context:
space:
mode:
Diffstat (limited to '73/CH16/EX16.13/Example16_13.sci')
-rwxr-xr-x73/CH16/EX16.13/Example16_13.sci15
1 files changed, 15 insertions, 0 deletions
diff --git a/73/CH16/EX16.13/Example16_13.sci b/73/CH16/EX16.13/Example16_13.sci
new file mode 100755
index 000000000..a3eb7bc88
--- /dev/null
+++ b/73/CH16/EX16.13/Example16_13.sci
@@ -0,0 +1,15 @@
+//Chapter 16_Bipolar and MOS Digital Gate Circuits
+//Caption : Power Dissipation
+// Example16.13: Calculate the maximum power dissipated by saturated load NMOS inverter for following given values: Vdd=5V;Vth=1.5V; device transconductance parameter for load device Kl=23.34*10^-6 A/V^2.Assume Vo=0V in low state.
+// Solution:
+clear;
+clc;
+Vdd=5;// drain voltage of NMOS inverter in Volt
+Vth=1.5;// threshold voltage of NMOS inverter in Volt
+Kl=23.34*10^-6;// transconductance Parameter for load device
+// since maximum power can be obtained if maximum device current flows whish is when Vo=low i.e.,0 V. So,for saturation region of operation we have Id=Kl*(Vgs-Vth)^2/2;
+// for saturated load inverter Vgs=Vds and
+//Vds=Vdd in low output condition,so Id=Kl*(Vdd-Vth)^2/2
+Id=23.34*10^-6*(Vdd-Vth)^2/2;
+Pmax=Id*Vdd;
+disp('mW',Pmax/10^-3,'maximum power dissipated by saturated load NMOS inverter is:') \ No newline at end of file