summaryrefslogtreecommitdiff
path: root/Working_Examples/215/CH9/EX9.1
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/215/CH9/EX9.1')
-rwxr-xr-xWorking_Examples/215/CH9/EX9.1/ex9_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/Working_Examples/215/CH9/EX9.1/ex9_1.sce b/Working_Examples/215/CH9/EX9.1/ex9_1.sce
new file mode 100755
index 0000000..a20494a
--- /dev/null
+++ b/Working_Examples/215/CH9/EX9.1/ex9_1.sce
@@ -0,0 +1,18 @@
+//Example 9.1
+//Calculate resistor values for underdamped and overdamped responses
+printf("Given")
+disp('L=10mH and C=100uF')
+L=10*10^-3;C=100*10^-6
+w0=sqrt(1/(L*C))
+printf("w0=%drad/s\n",w0)
+//alpha(a)=1/(2*R*C)
+disp('For an overdamped response')
+disp('a > w0')
+//On solving
+disp('Hence')
+disp('R<5ohm')
+disp('For an underdamped response')
+disp('a < w0')
+//On solving
+disp('Hence')
+disp('R>5ohm') \ No newline at end of file