From 41f1f72e9502f5c3de6ca16b303803dfcf1df594 Mon Sep 17 00:00:00 2001 From: Thomas Stephen Lee Date: Fri, 4 Sep 2015 22:04:10 +0530 Subject: add/remove/update books --- .../ChapterNo6.ipynb | 76 ++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100755 Advance_Semiconductor_Devices_by_S._Sharma/ChapterNo6.ipynb (limited to 'Advance_Semiconductor_Devices_by_S._Sharma/ChapterNo6.ipynb') diff --git a/Advance_Semiconductor_Devices_by_S._Sharma/ChapterNo6.ipynb b/Advance_Semiconductor_Devices_by_S._Sharma/ChapterNo6.ipynb new file mode 100755 index 00000000..44239148 --- /dev/null +++ b/Advance_Semiconductor_Devices_by_S._Sharma/ChapterNo6.ipynb @@ -0,0 +1,76 @@ +{ + "metadata": { + "name": "" + }, + "nbformat": 3, + "nbformat_minor": 0, + "worksheets": [ + { + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "

Chpater No 6: Microwave Diodes

" + ] + }, + { + "cell_type": "heading", + "level": 2, + "metadata": {}, + "source": [ + "Example 6.1, Page No 254" + ] + }, + { + "cell_type": "code", + "collapsed": false, + "input": [ + "import math\n", + "\n", + "#initialisation of variables\n", + "C1_min= 5.0 #in pF\n", + "C1_max= 50.0 #in pF\n", + "C2_min= 5.0 #in pF\n", + "C2_max= 50.0 #in pF\n", + "\n", + "#CALCULATIONS\n", + "C1_min=C1_min*10**-12 #in F\n", + "C2_min=C2_min*10**-12 #in F\n", + "C1_max=C1_max*10**-12 #in F\n", + "C2_max=C2_max*10**-12 #in F\n", + "L = 10.0 #in mH\n", + "L = L * 10**-3 #in H\n", + "C_T_min = (C1_min*C2_min)/(C2_min+C2_min) #in F\n", + "f_o_max = 1/( 2*math.pi*(math.sqrt(L*C_T_min)) ) #in Hz \n", + "f_o_max = f_o_max * 10**-6 #in MHz\n", + "C_T_max = (C1_max*C2_max)/(C2_max+C2_max) #in F\n", + "f_o_min = 1/( 2*math.pi*(math.sqrt(L*C_T_max)) ) #in Hz \n", + "f_o_min = f_o_min * 10**-3 #in kHz\n", + "\n", + "#RESULTS\n", + "print('The tuning range for circuit will be =%.2f kHz' %f_o_min)\n", + "print(' To %.3f MHz' %f_o_max)\n", + "\n", + "\n", + "#print(\"The tuning range for circuit will be : \"+string(round(f_o_min))+\" kHz to \"+string(round(f_o_max))+\" MHz\")\n" + ], + "language": "python", + "metadata": {}, + "outputs": [ + { + "output_type": "stream", + "stream": "stdout", + "text": [ + "The tuning range for circuit will be =318.31 kHz\n", + " To 1.007 MHz\n" + ] + } + ], + "prompt_number": 1 + } + ], + "metadata": {} + } + ] +} \ No newline at end of file -- cgit