diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /998/CH29/EX29.46/Ex46.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '998/CH29/EX29.46/Ex46.sce')
-rwxr-xr-x | 998/CH29/EX29.46/Ex46.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/998/CH29/EX29.46/Ex46.sce b/998/CH29/EX29.46/Ex46.sce new file mode 100755 index 000000000..66422d324 --- /dev/null +++ b/998/CH29/EX29.46/Ex46.sce @@ -0,0 +1,12 @@ +//Ex:46
+clc;
+clear;
+close;
+p_ts=10*log(20)/log(10);//saturated transponder power in dbw
+b=2;//back_off in db
+p_b=p_ts-b;//power becomes with back_off in db
+p_B=floor(p_b);
+P_b=10^(p_B/10);//Power becomes with back_off
+n_c=P_b/1;//no. of channels
+n_cs=floor(n_c);
+printf("The max no. of VSAT channels=%f",n_cs);
\ No newline at end of file |