diff options
Diffstat (limited to '608/CH29/EX29.04/29_04.sce')
-rwxr-xr-x | 608/CH29/EX29.04/29_04.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/608/CH29/EX29.04/29_04.sce b/608/CH29/EX29.04/29_04.sce new file mode 100755 index 000000000..e00a0d3a1 --- /dev/null +++ b/608/CH29/EX29.04/29_04.sce @@ -0,0 +1,14 @@ +//Problem 29.03: A two-branch parallel network is shown in Figure 29.8. Determine the resonant frequency of the network.
+
+//initializing the variables:
+RL = 5; // in ohms
+L = 0.002; // IN Henry
+C = 25e-6; // IN fARADS
+Rc = 3; // in ohms
+
+//calculation:
+//Resonant frequency, for parallel
+fr = (1/(2*%pi*((L*C)^0.5)))*((RL^2 - (L/C))/(Rc^2 - (L/C)))^0.5
+
+printf("\n\n Result \n\n")
+printf("\n resonant frequency, fr is %.2f Hz",fr)
\ No newline at end of file |