diff options
Diffstat (limited to '1691/CH2/EX2.9')
-rwxr-xr-x | 1691/CH2/EX2.9/exmp2_9.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1691/CH2/EX2.9/exmp2_9.sce b/1691/CH2/EX2.9/exmp2_9.sce new file mode 100755 index 000000000..e1dc2d99b --- /dev/null +++ b/1691/CH2/EX2.9/exmp2_9.sce @@ -0,0 +1,10 @@ +//Example 2.9
+clc
+disp("The given values are,")
+disp(" L1 = 0.5 mH, L2 = 1 mH, C = 0.2 uF")
+disp("Now f = 1 / 2*pi*sqrt(C*L_eq)")
+leq=0.5+1 // in mH
+disp(leq,"and L_eq(in mH) = L1 + L2 =")
+f=(1/(2*%pi*sqrt(1.5*0.2*10^-9)))*10^-3 // in kHz
+format(5)
+disp(f,"Therefore, f(in kHz) =")
|