summaryrefslogtreecommitdiff
path: root/Advance_Semiconductor_Devices/ChapterNo6.ipynb
diff options
context:
space:
mode:
authorThomas Stephen Lee2015-09-04 22:04:10 +0530
committerThomas Stephen Lee2015-09-04 22:04:10 +0530
commit41f1f72e9502f5c3de6ca16b303803dfcf1df594 (patch)
treef4bf726a3e3ce5d7d9ee3781cbacfe3116115a2c /Advance_Semiconductor_Devices/ChapterNo6.ipynb
parent9c9779ba21b9bedde88e1e8216f9e3b4f8650b0e (diff)
downloadPython-Textbook-Companions-41f1f72e9502f5c3de6ca16b303803dfcf1df594.tar.gz
Python-Textbook-Companions-41f1f72e9502f5c3de6ca16b303803dfcf1df594.tar.bz2
Python-Textbook-Companions-41f1f72e9502f5c3de6ca16b303803dfcf1df594.zip
add/remove/update books
Diffstat (limited to 'Advance_Semiconductor_Devices/ChapterNo6.ipynb')
-rwxr-xr-xAdvance_Semiconductor_Devices/ChapterNo6.ipynb76
1 files changed, 0 insertions, 76 deletions
diff --git a/Advance_Semiconductor_Devices/ChapterNo6.ipynb b/Advance_Semiconductor_Devices/ChapterNo6.ipynb
deleted file mode 100755
index 44239148..00000000
--- a/Advance_Semiconductor_Devices/ChapterNo6.ipynb
+++ /dev/null
@@ -1,76 +0,0 @@
-{
- "metadata": {
- "name": ""
- },
- "nbformat": 3,
- "nbformat_minor": 0,
- "worksheets": [
- {
- "cells": [
- {
- "cell_type": "markdown",
- "metadata": {},
- "source": [
- "<h1> Chpater No 6: Microwave Diodes <h1>"
- ]
- },
- {
- "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