summaryrefslogtreecommitdiff
path: root/929/CH6/EX6.8.d
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /929/CH6/EX6.8.d
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 '929/CH6/EX6.8.d')
-rwxr-xr-x929/CH6/EX6.8.d/Example6_8_d.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/929/CH6/EX6.8.d/Example6_8_d.sce b/929/CH6/EX6.8.d/Example6_8_d.sce
new file mode 100755
index 000000000..60e6f6b23
--- /dev/null
+++ b/929/CH6/EX6.8.d/Example6_8_d.sce
@@ -0,0 +1,22 @@
+//Example 6.8(d)
+
+clear;
+
+clc;
+
+Vs=13;
+
+A=10;
+
+ft=1*10^6;
+
+SR=0.5*10^6;
+
+f=2*10^3;
+
+Vommax=SR/(2*%pi*f);
+
+if Vommax>Vs then
+Vimmax=Vs/A;
+
+printf("Useful Input Amplitude Range is Vim<=%.2f V",Vimmax); \ No newline at end of file