summaryrefslogtreecommitdiff
path: root/569/CH6/EX6.12/6_12.sci
diff options
context:
space:
mode:
Diffstat (limited to '569/CH6/EX6.12/6_12.sci')
-rwxr-xr-x569/CH6/EX6.12/6_12.sci15
1 files changed, 15 insertions, 0 deletions
diff --git a/569/CH6/EX6.12/6_12.sci b/569/CH6/EX6.12/6_12.sci
new file mode 100755
index 000000000..3debcba52
--- /dev/null
+++ b/569/CH6/EX6.12/6_12.sci
@@ -0,0 +1,15 @@
+// Calculating Signal to noise ratio and CMRR
+clc;
+V2=30*10^-3;
+V1=-30*10^-3;
+Vd=V2-V1;
+Ad=150;
+Vos=Ad*Vd;
+Ac=0.04;
+Vc=600*10^-3;
+Von=Ac*Vc;
+SNR=Vos/Von;
+CMRR=Ad/Ac;
+disp(SNR,'Signal to Noise Ratio=')
+
+disp(CMRR,'CMRR=') \ No newline at end of file