diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1430/CH5/EX5.6/exa5_6.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
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)=");
|