blob: aee5ea67452d1102e746248a5e00b771d29b3300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//problem 7 pagenumber 2.91
//given
format(6);
r1=1e3;//ohm
r2=100e3;//ohm
rf1=90e3;//ohm
//determine cmrr
ac=(r2-rf1)/(r1+r2);
ad=(rf1+((((rf1+r1)/r1)*r2)/(r1+r2)))/r1;format(12);
disp( 'CMRR = '+string(ad/(ac)));//no unit
|