diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2360/CH6/EX6.40/ex6_40.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2360/CH6/EX6.40/ex6_40.sce')
-rwxr-xr-x | 2360/CH6/EX6.40/ex6_40.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2360/CH6/EX6.40/ex6_40.sce b/2360/CH6/EX6.40/ex6_40.sce new file mode 100755 index 000000000..c061cd5f5 --- /dev/null +++ b/2360/CH6/EX6.40/ex6_40.sce @@ -0,0 +1,23 @@ +// Exa 6.40
+format('v',7);clc;clear;close;
+// Given data
+f = 2;// in kHz
+f = f * 10^3;// in Hz
+R2= 834;// in Ω
+C2= 0.124*10^-6;// in F
+XC2= 1/(2*%pi*f*C2);// in Ω
+R3= 100;// in Ω
+C4 = 0.1;// in µF
+C4 = C4*10^-6;// in F
+XC4= 1/(2*%pi*f*C4);// in Ω
+Z2= R2+%i*XC2;// in Ω
+Z3= R3;// in Ω
+Z4= -%i*XC4;// in Ω
+// The bridge balance condition
+Z1= Z2*Z3/Z4;// in Ω
+mag= abs(Z1);// magnitude of effective impedence in Ω
+theta= atand(imag(Z1),real(Z1));// phase angle of effective impedence in °
+disp(mag,"The magnitude of effective impedence in Ω is : ")
+disp(theta,"The phase angle of effective impedence in ° is")
+
+
|