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 /1217/CH4/EX4.13 | |
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 '1217/CH4/EX4.13')
-rwxr-xr-x | 1217/CH4/EX4.13/Exa4_13.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1217/CH4/EX4.13/Exa4_13.sce b/1217/CH4/EX4.13/Exa4_13.sce new file mode 100755 index 000000000..377a87772 --- /dev/null +++ b/1217/CH4/EX4.13/Exa4_13.sce @@ -0,0 +1,26 @@ +//Exa 4.13
+clc;
+clear;
+close;
+// given data
+Vdc=10;//in Volt
+R1=10;//in Kohm
+R2=10;//in Kohm
+R3=100;//in Kohm
+RF=100;//in Kohm
+// Part(i) Balance Bridge : RA=RB=RC=RT=150ohm and VAB=0
+RA=150;//in ohm
+RB=150;//in ohm
+RC=150;//in ohm
+RT=150;//in ohm
+VAB=0;//in Volt
+Vo=(-RF/R1)*VAB;
+// Part(ii) Unbalance Bridge : RT=200ohm
+RT=200;//in ohm
+VA=(RA/(RA+RT))*Vdc;
+VB=(RB/(RB+RC))*Vdc;
+VAB=VA-VB;//in Volt
+Vo=(-RF/R1)*VAB;
+disp(0,"Balance bridge have output voltage Vo in volt is :");
+disp(Vo,"Unbalance bridge have output voltage Vo in volt is :");
+
|