diff options
Diffstat (limited to 'Working_Examples/154/CH8/EX8.10/ch8_10.sce')
-rwxr-xr-x | Working_Examples/154/CH8/EX8.10/ch8_10.sce | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/Working_Examples/154/CH8/EX8.10/ch8_10.sce b/Working_Examples/154/CH8/EX8.10/ch8_10.sce new file mode 100755 index 0000000..3c081ca --- /dev/null +++ b/Working_Examples/154/CH8/EX8.10/ch8_10.sce @@ -0,0 +1,25 @@ +clc
+disp("Example 8.10")
+printf("\n")
+
+printf("Given")
+disp("vs= 5V t<0")
+disp("vs=5*sin(w*t) t>0")
+vs=5;
+R=5;L=10*10^-3;
+//At t<0
+//Inductor behaves as a short circuit
+//Let i(0-)=i
+i=vs/R;
+printf("i(0-)=%dA\n",i)
+//During the transition from t=0- to t=0+
+//Let i(0+)=i1
+i1=i
+printf("i(0+)=%dA\n",i1)
+//Applying KVL equation to the loop
+disp("vs=i*R+v")
+//Let v(0+)=v1 ; vs(0+)=vs1
+//From given vs(0+)=0
+vs1=0;
+v1=vs1-i*R
+printf("\nv(0+)=%dV\n",v1)
|