summaryrefslogtreecommitdiff
path: root/3554/CH20/EX20.1/Ex20_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3554/CH20/EX20.1/Ex20_1.sce')
-rw-r--r--3554/CH20/EX20.1/Ex20_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3554/CH20/EX20.1/Ex20_1.sce b/3554/CH20/EX20.1/Ex20_1.sce
new file mode 100644
index 000000000..16c5732f1
--- /dev/null
+++ b/3554/CH20/EX20.1/Ex20_1.sce
@@ -0,0 +1,15 @@
+// Exa 20.1
+
+clc;
+clear all;
+
+// Given data
+
+V1=20;// superimposed small AF voltage(V)
+V2=30;//Bridge balance voltage(V)
+R1=100;// Bridge arm resistor(ohms)
+
+// Solution
+
+RF_pwr=(V2^2-V1^2)/(4*R1);
+printf('RF test power = %.2f W \n',RF_pwr);