From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 68/CH10/EX10.2/ex2.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 68/CH10/EX10.2/ex2.sce (limited to '68/CH10/EX10.2') diff --git a/68/CH10/EX10.2/ex2.sce b/68/CH10/EX10.2/ex2.sce new file mode 100755 index 000000000..21340b2fc --- /dev/null +++ b/68/CH10/EX10.2/ex2.sce @@ -0,0 +1,15 @@ +// Example 10.2 : W/L ratios for the logic circuit +//For basic inverter +n=1.5; +p=5; +L=0.25*10^-6; // (m) +WbyL=2*n; // W/L for Q_NB , Q_NC , Q_ND +disp(WbyL,"W/L ratio for Q_NB") +disp(WbyL,"W/L ratio for Q_NC") +disp(WbyL,"W/L ratio for Q_ND") +WbyL=n; // W/L ratio for Q_NA +disp(WbyL,"W/L ratio for Q_NA") +WbyL=3*p; // W/L for Q_PA, Q_PC , Q_PD +disp(WbyL,"W/L ratio for Q_PA") +disp(WbyL,"W/L ratio for Q_PC") +disp(WbyL,"W/L ratio for Q_PD") \ No newline at end of file -- cgit