diff options
Diffstat (limited to '1430/CH5/EX5.6')
-rw-r--r-- | 1430/CH5/EX5.6/exa5_6.sce | 17 | ||||
-rw-r--r-- | 1430/CH5/EX5.6/exa5_6.txt | 20 |
2 files changed, 37 insertions, 0 deletions
diff --git a/1430/CH5/EX5.6/exa5_6.sce b/1430/CH5/EX5.6/exa5_6.sce new file mode 100644 index 000000000..ca6526fe2 --- /dev/null +++ b/1430/CH5/EX5.6/exa5_6.sce @@ -0,0 +1,17 @@ +//Example 5.6
+// DC Steady-state Analysis
+// Under DC steady-state means inductor acts as a short circuit while the
+// Capacitor acts as an open circuit
+//Form figure 5.17(b)
+i_l=30/(20+40);// Ohm's Law
+v_c= (40*30)/(20+40); // Voltage divider relationship
+//Energy stored in capacitor
+w_c=0.5*(5*10^-6)*400;
+//Energy stored in Inductor
+w_l=0.5*(16*10^-3)*(0.5)^2;
+// total energy stored in the circuit is
+w=w_l+w_c;
+disp(i_l,"Current through the inductor(in Amps)=");
+disp(v_c,"Voltage across the capacitor(in Volts)=");
+disp(w_l,"Energy stored in inductor(Joules)=");
+disp(w_c,"Energy stored in Capacitor(Joules)=");
diff --git a/1430/CH5/EX5.6/exa5_6.txt b/1430/CH5/EX5.6/exa5_6.txt new file mode 100644 index 000000000..9ebe8f713 --- /dev/null +++ b/1430/CH5/EX5.6/exa5_6.txt @@ -0,0 +1,20 @@ +
+
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 5\exa5.6.sce', -1)
+
+ Current through the inductor(in Amps)=
+
+ 0.5
+
+ Voltage across the capacitor(in Volts)=
+
+ 20.
+
+ Energy stored in inductor(Joules)=
+
+ 0.002
+
+ Energy stored in Capacitor(Joules)=
+
+ 0.001
+
|