diff options
Diffstat (limited to '2702/CH5/EX5.2/Ex_5_2.sce')
-rw-r--r-- | 2702/CH5/EX5.2/Ex_5_2.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2702/CH5/EX5.2/Ex_5_2.sce b/2702/CH5/EX5.2/Ex_5_2.sce new file mode 100644 index 000000000..86552de31 --- /dev/null +++ b/2702/CH5/EX5.2/Ex_5_2.sce @@ -0,0 +1,17 @@ +// Exa 5.2
+clc;
+clear;
+close;
+// Given data
+Af= 100;// unit less
+Vi= 50;// in mV
+Vi= Vi*10^-3;// in V
+Vs= 0.5;// in V
+// Formula Af= Vo/Vs
+Vo= Af*Vs;// in V
+A= Vo/Vi;
+disp(A,"Value of A is : ")
+// Formula Af= A/(1+B*A)
+B= 1/Af-1/A;
+B=B*100;// in %
+disp(B,"Value of B is in percent : ")
|