summaryrefslogtreecommitdiff
path: root/3648/CH19/EX19.5/Ex19_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH19/EX19.5/Ex19_5.sce')
-rw-r--r--3648/CH19/EX19.5/Ex19_5.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3648/CH19/EX19.5/Ex19_5.sce b/3648/CH19/EX19.5/Ex19_5.sce
new file mode 100644
index 000000000..72f1dcd6f
--- /dev/null
+++ b/3648/CH19/EX19.5/Ex19_5.sce
@@ -0,0 +1,12 @@
+//Example 19_5
+clc();
+clear;
+//To find the time constant of the circuit and the final energy stored
+l=0.5 //Units in H
+r1=2 //Units in Ohms
+r2=4 //Units in Ohms
+r=r1+r2 //Units in Ohms
+l_r=l/r //Units in sec
+i=2 //Units in A
+ene=0.5*l*i^2
+printf("The time constant is L/R=%.4f Sec\n The energy stored is=%d J",l_r,ene)