From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3523/CH16/EX16.7.10/Ex16_10.sce | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 3523/CH16/EX16.7.10/Ex16_10.sce (limited to '3523/CH16/EX16.7.10') diff --git a/3523/CH16/EX16.7.10/Ex16_10.sce b/3523/CH16/EX16.7.10/Ex16_10.sce new file mode 100644 index 000000000..6d675c739 --- /dev/null +++ b/3523/CH16/EX16.7.10/Ex16_10.sce @@ -0,0 +1,27 @@ +clear all +clc +close + +n=12;//no ofstage +C1=0.125*1e-6;//Each stage capacitor in F +C2=1000e-12;//Load capacitance in F +R1=70;//Front resistance in ohm +R2=400;//Tail resistance in ohm + +R1T=R1*n; +R2T=R2*n; +C1T=C1/n; + +theta=sqrt(C1T*C2*R1T*R2T); + +eta=1/(1+(1+R1T/R2T)*C2/C1T); + +alpha=R2T*C1T/(2*eta*theta); + +//Wavetail time in us +T2=7*theta*1e6; +printf('Wave tail time in us %f',T2) + +//Wave front time in us +T1=T2/25; +printf('Wave front time in us %f',T1) -- cgit