diff options
author | Prashant S | 2020-04-14 10:25:32 +0530 |
---|---|---|
committer | GitHub | 2020-04-14 10:25:32 +0530 |
commit | 06b09e7d29d252fb2f5a056eeb8bd1264ff6a333 (patch) | |
tree | 2b1df110e24ff0174830d7f825f43ff1c134d1af /Electric_Machinery_by_A_E_Fitzgerald/10-Variable_Reluctance_Machines.ipynb | |
parent | abb52650288b08a680335531742a7126ad0fb846 (diff) | |
parent | 476705d693c7122d34f9b049fa79b935405c9b49 (diff) | |
download | all-scilab-tbc-books-ipynb-master.tar.gz all-scilab-tbc-books-ipynb-master.tar.bz2 all-scilab-tbc-books-ipynb-master.zip |
Initial commit
Diffstat (limited to 'Electric_Machinery_by_A_E_Fitzgerald/10-Variable_Reluctance_Machines.ipynb')
-rw-r--r-- | Electric_Machinery_by_A_E_Fitzgerald/10-Variable_Reluctance_Machines.ipynb | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/Electric_Machinery_by_A_E_Fitzgerald/10-Variable_Reluctance_Machines.ipynb b/Electric_Machinery_by_A_E_Fitzgerald/10-Variable_Reluctance_Machines.ipynb new file mode 100644 index 0000000..3b9d04a --- /dev/null +++ b/Electric_Machinery_by_A_E_Fitzgerald/10-Variable_Reluctance_Machines.ipynb @@ -0,0 +1,91 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 10: Variable Reluctance Machines" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 10.1a: Finding_maximum_inductance_for_phase.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"// Caption: Finding maximum inductance for phase \n", +"clear;\n", +"close;\n", +"clc;\n", +"N=100;\n", +"U_o=4*%pi*10^-7;\n", +"alpha=%pi/3;\n", +"R=3.8*10^-2;\n", +"D=0.13;\n", +"g=2.54*10^-4;\n", +"L_max=N^2*U_o*alpha*R*D/(2*g);\n", +"\n", +"disp(L_max,'maximum inductance for phase 1=')" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 10.4: Finding_switching_times_T_on_and_T_off.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"// Caption: Finding switching times T on and T off\n", +"clear;\n", +"close;\n", +"clc;\n", +"//off time at i=Imin\n", +"T_off=-0.25*log(10/12)/2.5;\n", +"\n", +"//on time\n", +"T_on=-0.25*log((12-20)/(10-20))/5;//in seconds\n", +"\n", +"disp(T_on,'On time=')" + ] + } +], +"metadata": { + "kernelspec": { + "display_name": "Scilab", + "language": "scilab", + "name": "scilab" + }, + "language_info": { + "file_extension": ".sce", + "help_links": [ + { + "text": "MetaKernel Magics", + "url": "https://github.com/calysto/metakernel/blob/master/metakernel/magics/README.md" + } + ], + "mimetype": "text/x-octave", + "name": "scilab", + "version": "0.7.1" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} |