summaryrefslogtreecommitdiff
path: root/3866/CH6/EX6.11/Ex6_11.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3866/CH6/EX6.11/Ex6_11.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3866/CH6/EX6.11/Ex6_11.sce')
-rw-r--r--3866/CH6/EX6.11/Ex6_11.sce27
1 files changed, 27 insertions, 0 deletions
diff --git a/3866/CH6/EX6.11/Ex6_11.sce b/3866/CH6/EX6.11/Ex6_11.sce
new file mode 100644
index 000000000..47f51a5cd
--- /dev/null
+++ b/3866/CH6/EX6.11/Ex6_11.sce
@@ -0,0 +1,27 @@
+clc; clear; close;
+
+LEnand=4/3;
+LEinv=1;
+LEnor=5/3;
+Cload=200;//in fF
+Cin=2;//in fF
+Pnand=1;
+Pinv=1/2;
+Pnor=3/2;
+Tinv=7.5;//in picoseconds
+path_effort=LEnand*LEinv*LEnor*Cload/Cin;
+disp(path_effort,'Total path effort=');
+Stage_effort=round(path_effort^(1/3));
+disp(Stage_effort,'Stage effort=');
+D=3*Stage_effort+Pnand+Pinv+Pnor;
+disp(D,'Normalised delay=');
+min_delay=Tinv*D;
+disp(min_delay,'Physical delay value(in picoseconds)=');
+cj2=Cload*LEnor/Stage_effort;
+disp(cj2,'Cj+2(in fF)=');
+cj1=cj2*LEinv/Stage_effort;
+disp(cj1,'Cj+1(in fF)=');
+cin=cj1*LEnand/Stage_effort;
+disp(cin,'Cj+2(in fF)=');
+mprintf('\n\nDevice size will be same as example 6.10');
+//answers vary due to round off error