diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3523/CH16/EX16.7.10 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3523/CH16/EX16.7.10')
-rw-r--r-- | 3523/CH16/EX16.7.10/Ex16_10.sce | 27 |
1 files changed, 27 insertions, 0 deletions
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)
|