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.7 | |
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.7')
-rwxr-xr-x | 1217/CH4/EX4.7/Exa4_7.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1217/CH4/EX4.7/Exa4_7.sce b/1217/CH4/EX4.7/Exa4_7.sce new file mode 100755 index 000000000..330171778 --- /dev/null +++ b/1217/CH4/EX4.7/Exa4_7.sce @@ -0,0 +1,20 @@ +//Exa 4.7
+clc;
+clear;
+close;
+disp("The voltage at node X will be equal to the xvoltage across resistor R5, hence ");
+disp("Vx=(Vo*R5)/(R5+R6)");
+disp("Vx=Vo/8");
+Vz=1;//in Volt
+disp("writing KCL at node Y yields ");
+disp("(Vy-Vx)/R2+(Vy-Vz)/R3=0 or (Vy-Vx)/2+(Vy-1)/4=0");
+disp("Vy=(2*Vx+1)/3");
+disp("writing KCL at node X yields ");
+disp("(1-Vx)/R1+(Vy-Vx)/R2=0 or (1-Vx)/2+(Vy-Vx)/2=0 ");
+disp("Vy-2*Vx+1=0");
+disp("Now substituting for Vy from above equation, we get")
+disp("(2*Vx-1)/3-2*Vx+1=0");
+Vx=2/4;//in Volt
+disp(Vx,"The value of Vx in volt is :")
+Vo=8*Vx;//in Volt
+disp(Vo,"The output voltage of the circuit in volt is : ")
\ No newline at end of file |