summaryrefslogtreecommitdiff
path: root/61/CH12/EX12.10
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /61/CH12/EX12.10
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '61/CH12/EX12.10')
-rwxr-xr-x61/CH12/EX12.10/ex12_10.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/61/CH12/EX12.10/ex12_10.sce b/61/CH12/EX12.10/ex12_10.sce
new file mode 100755
index 000000000..f40646f2f
--- /dev/null
+++ b/61/CH12/EX12.10/ex12_10.sce
@@ -0,0 +1,15 @@
+//ex12.10
+A_v1=40; //all gains are in decibels
+A_v2=32;
+A_v3=20;
+f_c1=2*10^3;
+f_c2=40*10^3;
+f_c3=150*10^3;
+f=f_c1;
+A_ol_mid=A_v1+A_v2+A_v3;
+theta_1=phase_shift(f,f_c1);
+theta_2=phase_shift(f,f_c2);
+theta_3=phase_shift(f,f_c3);
+theta_tot=theta_1+theta_2+theta_3;
+disp(A_ol_mid,'open loop midrange gain in decibels')
+disp(theta_tot,'total phase lag in degrees') \ No newline at end of file