summaryrefslogtreecommitdiff
path: root/608/CH28/EX28.06/28_06.sce
diff options
context:
space:
mode:
Diffstat (limited to '608/CH28/EX28.06/28_06.sce')
-rwxr-xr-x608/CH28/EX28.06/28_06.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/608/CH28/EX28.06/28_06.sce b/608/CH28/EX28.06/28_06.sce
new file mode 100755
index 000000000..33626afd8
--- /dev/null
+++ b/608/CH28/EX28.06/28_06.sce
@@ -0,0 +1,11 @@
+//Problem 28.06: An inductor of Q-factor 60 is connected in series with a capacitor having a Q-factor of 390. Determine the overall Q-factor of the circuit.
+
+//initializing the variables:
+QL = 60; // Q-factor
+Qc = 390; // Q-factor
+
+//calculation:
+QT = QL*Qc/(QL + Qc)
+
+printf("\n\n Result \n\n")
+printf("\n the overall Q-factor is %.0f \n",QT) \ No newline at end of file