summaryrefslogtreecommitdiff
path: root/281/CH1/EX1.1/example1_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '281/CH1/EX1.1/example1_1.sce')
-rwxr-xr-x281/CH1/EX1.1/example1_1.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/281/CH1/EX1.1/example1_1.sce b/281/CH1/EX1.1/example1_1.sce
new file mode 100755
index 000000000..46060a03c
--- /dev/null
+++ b/281/CH1/EX1.1/example1_1.sce
@@ -0,0 +1,13 @@
+disp('chapter 1 ex1.1')
+disp('given')
+disp("input signal=1v")// input signal is 1v
+disp("V0=Vi-(Vi/M)")//formula to find o/p voltage
+Vi=1
+M=200000//Minimum Open loop gain is 50000, Typical M is 200000
+V0=Vi-(Vi/M)
+disp('output voltage for typical open loop gain of 200000 is')
+disp('volt',V0)
+M1=50000//Minimum open loop gain
+V01=Vi-(Vi/M1)//output for minimum open loop gain
+disp('output voltge for minimum open loop gain of 50000 is')
+disp('volt',V01) \ No newline at end of file