diff options
Diffstat (limited to '2093/CH1/EX1.17/exa_1_17.sce')
-rwxr-xr-x | 2093/CH1/EX1.17/exa_1_17.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2093/CH1/EX1.17/exa_1_17.sce b/2093/CH1/EX1.17/exa_1_17.sce new file mode 100755 index 000000000..2981c2cc6 --- /dev/null +++ b/2093/CH1/EX1.17/exa_1_17.sce @@ -0,0 +1,13 @@ +// Exa 1.17
+clc;
+clear;
+close;
+// Given data
+R1=10;// in kohm
+R2=150;// in kohm
+R3=10;// in kohm
+R4=300;// in kohm
+V1= 1;// in V
+V2= 2;// in V
+Vo= [(1+R4/R2)*(R3*V1/(R1+R3))-(R4/R2)*V2];
+disp(Vo,"Output voltage in volts is : ")
|