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 /876/CH4/EX4.7/Ex4_7t.txt | |
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 '876/CH4/EX4.7/Ex4_7t.txt')
-rwxr-xr-x | 876/CH4/EX4.7/Ex4_7t.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/876/CH4/EX4.7/Ex4_7t.txt b/876/CH4/EX4.7/Ex4_7t.txt new file mode 100755 index 000000000..713797ee5 --- /dev/null +++ b/876/CH4/EX4.7/Ex4_7t.txt @@ -0,0 +1,17 @@ +//caption:find value of unknown inductance,resistance and Q for maxwell bridge
+//Ex4.7
+clc
+clear
+close
+R1=220//resistance of first arm(in ohm)
+C1=0.22*10^-6//capacitance of first arm(in F)
+R2=1000//resistance of second arm(in ohm)
+R3=1000//resistance of third arm(in ohm)
+f=1000//frequency of arm(in Hz)
+w=2*%pi*f
+R=(R2*R3)/R1
+disp(R,'resistance(in ohm)=')
+L=R2*R3*C1
+disp(L,'inductance(in H)=')
+Q=w*R1*C1
+disp(Q,'Q value of the bridge=')
\ No newline at end of file |