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 /3507/CH19/EX19.9/Ex19_9.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 '3507/CH19/EX19.9/Ex19_9.sce')
-rw-r--r-- | 3507/CH19/EX19.9/Ex19_9.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3507/CH19/EX19.9/Ex19_9.sce b/3507/CH19/EX19.9/Ex19_9.sce new file mode 100644 index 000000000..2ec82705a --- /dev/null +++ b/3507/CH19/EX19.9/Ex19_9.sce @@ -0,0 +1,14 @@ +//chapter19
+//example19.9
+//page422
+
+// block diagram is for understanding purpose inly.It is not required to solve the example
+m=1
+eta=0.72
+// carrier is not affected by modulating signal so its power level remains unchanged before and after modulation
+Pc=40 // kW
+Ps=0.5*m^2*Pc
+P_audio=Ps/eta
+
+printf("carrier power after modulation = %.3f kW \n",Pc)
+printf("required audio power = %.3f kW \n",P_audio)
|