summaryrefslogtreecommitdiff
path: root/257/CH3/EX3.11/example_3_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '257/CH3/EX3.11/example_3_11.sce')
-rw-r--r--257/CH3/EX3.11/example_3_11.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/257/CH3/EX3.11/example_3_11.sce b/257/CH3/EX3.11/example_3_11.sce
new file mode 100644
index 000000000..b9affc5fb
--- /dev/null
+++ b/257/CH3/EX3.11/example_3_11.sce
@@ -0,0 +1,20 @@
+// given gain of buffer amplifier is 1
+s=%s
+I=1;
+R=10^6;
+C=10^-6
+C2=0.5*10^-6;
+
+Vi=1/(C*s)*I + R*I
+V1=R * I
+disp(V1/Vi,"V1/Vi is ")
+
+V2=I/(C2*s) + I*R
+Vo= I*R
+disp(Vo/V2,"Vo/V2 is ")
+
+V1=V2 //because gain=1
+(s/(s+1))*Vi == (s+2)/s * Vo //
+
+disp(s^2/((s+2)*(s+1)),"transfer function is")
+