diff options
Diffstat (limited to '3802/CH13/EX13.6')
-rw-r--r-- | 3802/CH13/EX13.6/Ex13_6.jpg | bin | 0 -> 15950 bytes | |||
-rw-r--r-- | 3802/CH13/EX13.6/Ex13_6.sce | 24 |
2 files changed, 24 insertions, 0 deletions
diff --git a/3802/CH13/EX13.6/Ex13_6.jpg b/3802/CH13/EX13.6/Ex13_6.jpg Binary files differnew file mode 100644 index 000000000..7f2e4c92b --- /dev/null +++ b/3802/CH13/EX13.6/Ex13_6.jpg diff --git a/3802/CH13/EX13.6/Ex13_6.sce b/3802/CH13/EX13.6/Ex13_6.sce new file mode 100644 index 000000000..cad8e07d2 --- /dev/null +++ b/3802/CH13/EX13.6/Ex13_6.sce @@ -0,0 +1,24 @@ +//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex13_6.sce
+
+clc;
+clear;
+R=20;
+L=0.5;
+V=100;
+R_S=10;
+t1=0;
+t2=50e-3;
+Req=R+R_S;
+T1=L/Req;//Time constant1
+T2=L/R;//Time constant2
+I=V/Req;
+printf("\n Steady state current=%1.3f A \n",I)
+i=I*exp(-t2/T2);
+printf("\n The value of current after 50 ms=%0.2f A \n",i)
+
+
|