diff options
Diffstat (limited to '3523/CH16/EX16.7.11/Ex16_11.sce')
-rw-r--r-- | 3523/CH16/EX16.7.11/Ex16_11.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/3523/CH16/EX16.7.11/Ex16_11.sce b/3523/CH16/EX16.7.11/Ex16_11.sce new file mode 100644 index 000000000..4617fb4a1 --- /dev/null +++ b/3523/CH16/EX16.7.11/Ex16_11.sce @@ -0,0 +1,19 @@ +clear all
+clc
+close
+
+C = 8*10^-6;//in Farad
+L = 8*10^-6;//in Henry
+V = 25*10^3;//in V
+T1 = 8;//in us time for the first peak
+ohmega = 0.02*10^-6;//in sec^-1
+R = sqrt((4*L/C)-(4*L^2*ohmega^2));
+printf("resistance is %f ohms \n",R)
+gama = R/(2*L);//in sec^-1
+printf("parameter gama is %f sec^-1 \n",gama)
+
+//Now eq for generated impulse pulse is I(t)= 156.25*10^3exp(-12.3*10^4t)sin(0.02*10^6t)A
+
+
+
+
|