summaryrefslogtreecommitdiff
path: root/Electronic_Communication_Systems_by_Roy_Blake/Chapter22.ipynb
diff options
context:
space:
mode:
Diffstat (limited to 'Electronic_Communication_Systems_by_Roy_Blake/Chapter22.ipynb')
-rw-r--r--Electronic_Communication_Systems_by_Roy_Blake/Chapter22.ipynb70
1 files changed, 70 insertions, 0 deletions
diff --git a/Electronic_Communication_Systems_by_Roy_Blake/Chapter22.ipynb b/Electronic_Communication_Systems_by_Roy_Blake/Chapter22.ipynb
new file mode 100644
index 00000000..1bfbf9a0
--- /dev/null
+++ b/Electronic_Communication_Systems_by_Roy_Blake/Chapter22.ipynb
@@ -0,0 +1,70 @@
+{
+ "cells": [
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Chapter 22 : Personal Communication Systems"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Example 1 : pg 842"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {
+ "collapsed": false
+ },
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "The mobile transmitted power in dBm is 24 dBm\n",
+ "Case 2 : The mobile transmitted power is 100 mW\n"
+ ]
+ }
+ ],
+ "source": [
+ " \n",
+ "# page no 842\n",
+ "# prob no 22.1\n",
+ "#calculate the mobile transmitted power\n",
+ "#given\n",
+ "PR = -100;#In dBm\n",
+ "#calculations and results\n",
+ "# The mobile transmitted power is\n",
+ "PT_dBm =-76-PR;#this is in dBm\n",
+ "print 'The mobile transmitted power in dBm is',PT_dBm,'dBm'\n",
+ "PT_mW =10**(PT_dBm/10);\n",
+ "print 'Case 2 : The mobile transmitted power is',PT_mW,'mW'"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 2",
+ "language": "python",
+ "name": "python2"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 2
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython2",
+ "version": "2.7.11"
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 0
+}