diff options
Diffstat (limited to '1430/CH5/EX5.6/exa5_6.sce')
-rw-r--r-- | 1430/CH5/EX5.6/exa5_6.sce | 17 |
1 files changed, 17 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)=");
|