summaryrefslogtreecommitdiff
path: root/3515/CH5/EX5.2
diff options
context:
space:
mode:
Diffstat (limited to '3515/CH5/EX5.2')
-rw-r--r--3515/CH5/EX5.2/Ex_5_2.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3515/CH5/EX5.2/Ex_5_2.sce b/3515/CH5/EX5.2/Ex_5_2.sce
new file mode 100644
index 000000000..241d99ff9
--- /dev/null
+++ b/3515/CH5/EX5.2/Ex_5_2.sce
@@ -0,0 +1,18 @@
+// Exa 5.2
+format('v',7);
+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 : ")