summaryrefslogtreecommitdiff
path: root/3554/CH20/EX20.1/Ex20_1.sce
blob: 16c5732f16290deb1beb967db5fc2f4ad3d769be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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);