summaryrefslogtreecommitdiff
path: root/929/CH2/EX2.7
diff options
context:
space:
mode:
Diffstat (limited to '929/CH2/EX2.7')
-rwxr-xr-x929/CH2/EX2.7/Example2_7.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/929/CH2/EX2.7/Example2_7.sce b/929/CH2/EX2.7/Example2_7.sce
new file mode 100755
index 000000000..b4c317478
--- /dev/null
+++ b/929/CH2/EX2.7/Example2_7.sce
@@ -0,0 +1,31 @@
+//Example 2.7
+
+clear;
+
+clc;
+
+R1=15*10^3;
+
+R2=3*10^3;
+
+R3=R1;
+
+R4=R2;
+
+a=200*10^3;
+
+Ro1num=R1*R2;
+
+Ro1den=R1+R2;
+
+Ro1=Ro1num/Ro1den;
+
+Ro2num=a;
+
+Ro2den=(1+(R2/R1));
+
+Ro2=Ro2num/Ro2den;
+
+Ro=Ro1*(1+Ro2);//Output resistance
+
+printf("Output Resistance (Ro)=%.f Mohms",Ro*10^(-6)); \ No newline at end of file