diff options
Diffstat (limited to 'Modern_Electronics_Communication/chapter6.ipynb')
-rwxr-xr-x | Modern_Electronics_Communication/chapter6.ipynb | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/Modern_Electronics_Communication/chapter6.ipynb b/Modern_Electronics_Communication/chapter6.ipynb new file mode 100755 index 00000000..2342c49f --- /dev/null +++ b/Modern_Electronics_Communication/chapter6.ipynb @@ -0,0 +1,98 @@ +{
+ "metadata": {
+ "name": ""
+ },
+ "nbformat": 3,
+ "nbformat_minor": 0,
+ "worksheets": [
+ {
+ "cells": [
+ {
+ "cell_type": "heading",
+ "level": 1,
+ "metadata": {},
+ "source": [
+ "Chapter 6: Frequency Modulation:Reception"
+ ]
+ },
+ {
+ "cell_type": "heading",
+ "level": 2,
+ "metadata": {},
+ "source": [
+ "Example 6.1 Page no 265"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [
+ "#Given\n",
+ "G=200000 #voltage gain\n",
+ "v=200*10**-3 #quieting voltage\n",
+ "\n",
+ "#calculation\n",
+ "In=v/G\n",
+ "\n",
+ "#Result\n",
+ "print\"To reach quieting, the input must be \",In*10**6,\"microV\""
+ ],
+ "language": "python",
+ "metadata": {},
+ "outputs": [
+ {
+ "output_type": "stream",
+ "stream": "stdout",
+ "text": [
+ "To reach quieting, the input must be 1.0 microV\n"
+ ]
+ }
+ ],
+ "prompt_number": 6
+ },
+ {
+ "cell_type": "heading",
+ "level": 2,
+ "metadata": {},
+ "source": [
+ "Example 6.2 Page no 272"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "collapsed": false,
+ "input": [
+ "#Given\n",
+ "f=10*10**6 #frequency\n",
+ "f1=50*10**3 #input frequency\n",
+ "f2=200*10**3 #output frequency\n",
+ "\n",
+ "#Calculatiion\n",
+ "x=f1*2\n",
+ "y=f2*2\n",
+ "\n",
+ "#Result\n",
+ "print\"The capture occurred at from the free-running VCO frequency.\",f1,\"Hz\"\n",
+ "print\"Assume symmetrical operation,which implies a capture range of \",x,\"Hz\"\n",
+ "print\"Once captured the VCO follows the input to a \",f2,\"Hz deviation,implying a lock range of \",y,\"Hz\"\n"
+ ],
+ "language": "python",
+ "metadata": {},
+ "outputs": [
+ {
+ "output_type": "stream",
+ "stream": "stdout",
+ "text": [
+ "The capture occurred at from the free-running VCO frequency. 50000 Hz\n",
+ "Assume symmetrical operation,which implies a capture range of 100000 Hz\n",
+ "Once captured the VCO follows the input to a 200000 Hz deviation,implying a lock range of 400000 Hz\n"
+ ]
+ }
+ ],
+ "prompt_number": 11
+ }
+ ],
+ "metadata": {}
+ }
+ ]
+}
\ No newline at end of file |