diff options
Diffstat (limited to '2702/CH1/EX1.16/Ex_1_16.sce')
-rw-r--r-- | 2702/CH1/EX1.16/Ex_1_16.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2702/CH1/EX1.16/Ex_1_16.sce b/2702/CH1/EX1.16/Ex_1_16.sce new file mode 100644 index 000000000..3681bca6f --- /dev/null +++ b/2702/CH1/EX1.16/Ex_1_16.sce @@ -0,0 +1,15 @@ +// Exa 1.16
+clc;
+clear;
+close;
+// Given data
+R1= 33;// in kΩ
+R2= 10;// in kΩ
+R3= 330;// in kΩ
+V1= '50mV sin(1000 t)';
+V2= '10mV sin(3000 t)';
+Vo1= R3/R1*50*10^-3;
+Vo2= R3/R2*10*10^-3;
+// Vo= -Vo1-Vo2;
+disp("Output voltage is "+string(-Vo1)+" sin (1000 t)"+string(-Vo2)+" sin(3000 t)")
+
|