diff options
Diffstat (limited to 'Basics_of_Electrical_by_Electronics_and_Communication_Engineering')
10 files changed, 3064 insertions, 0 deletions
diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/1-DC_circuits.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/1-DC_circuits.ipynb new file mode 100644 index 0000000..3fa86c4 --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/1-DC_circuits.ipynb @@ -0,0 +1,442 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 1: DC circuits" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.10: Calculate_current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.10\n", +"clc;clear;close;\n", +"format('v',6);\n", +"I1=2.5;//A\n", +"I2=-1.5;//A\n", +"//I1+I2+I3=0//from KCL\n", +"I3=-I1-I2;//A\n", +"disp(I3,'Current I3(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.11: Determine_the_currents.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.11\n", +"clc;clear;close;\n", +"format('v',6);\n", +"I1=3;//A\n", +"I3=1;//A\n", +"I6=1;//A\n", +"//I1-I2-I3=0//from KCL at point a\n", +"I2=I1-I3;//A\n", +"//I2+I4-I6=0//from KCL at point b\n", +"I4=I6-I2;//A\n", +"//I3-I4-I5=0//from KCL at point c\n", +"I5=I3-I4;//A\n", +"disp(I2,'Current I2(A)');\n", +"disp(I4,'Current I4(A)');\n", +"disp(I5,'Current I5(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.12: Determine_I1_and_I2.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.12\n", +"clc;clear;close;\n", +"format('v',6);\n", +"R1=30;//ohm\n", +"R2=60;//ohm\n", +"R3=30;//ohm\n", +"I3=1;//A\n", +"I1=I3*(R2+R3)/R2;//A\n", +"I2=I1-I3;//A\n", +"disp(I1,'Current I1(A)');\n", +"disp(I2,'Current I2(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.13: Determine_V1_and_V3.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.13\n", +"clc;clear;close;\n", +"format('v',6);\n", +"E=12;//V\n", +"V2=8;//V\n", +"V4=2;//V\n", +"V1=E-V2;//V\n", +"//-V2+V3+V4=0;//for Loop B\n", +"V3=V2-V4;//V\n", +"disp(V1,'Voltage V1(V)');\n", +"disp(V3,'Voltage V3(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.14: Calculate_VAB.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.14\n", +"clc;clear;close;\n", +"format('v',6);\n", +"V=20;//V\n", +"R1=25;//ohm\n", +"R2=40;//ohm\n", +"R3=15;//ohm\n", +"R4=10;//ohm\n", +"VAC=R3*V/(R1+R3);//V\n", +"VBC=R4*V/(R2+R4);//V\n", +"//0=VAB+VBC-VAC;///from KVL\n", +"VAB=-VBC+VAC;//V\n", +"disp(VAB,'Voltage VAB(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.15: Voltage_and_emf.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.15\n", +"clc;clear;close;\n", +"format('v',6);\n", +"E1=10;//V\n", +"V2=6;//V\n", +"V3=8;//V\n", +"//E1=V1+V2;//KCL for left loop\n", +"V1=E1-V2;//V\n", +"//-E2=-V2-V3;//KCL for right loop\n", +"E2=V2+V3;//V\n", +"disp(V1,'Voltage V1(V)');\n", +"disp(E2,'Voltage E2(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.1: Current_in_the_circuit.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.1\n", +"clc;clear;close;\n", +"format('v',4);\n", +"R=3;//kohm\n", +"V=220;//V\n", +"//First Case\n", +"I=V/R;//mA\n", +"disp(I,'1st case : Current in the circuit(mA)');\n", +"//Second Case\n", +"Req=R+R;//ohm(Equivalent resistance)\n", +"I=V/Req;//mA\n", +"disp(I,'2nd case : Current in the circuit(mA)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.2: Voltage_across_resistor.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.2\n", +"clc;clear;close;\n", +"format('v',5);\n", +"I=1.5;//A\n", +"R1=2;//ohm\n", +"R2=3;//ohm\n", +"R3=8;//ohm\n", +"V1=I*R1;//V\n", +"V2=I*R2;//V\n", +"V3=I*R3;//V\n", +"disp(V1,'Voltage across R1(V)');\n", +"disp(V2,'Voltage across R2(V)');\n", +"disp(V3,'Voltage across R3(V)');\n", +"V=V1+V2+V3;//V(Supply voltage)\n", +"disp(V,'Supply Voltage(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.3: Circuit_current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.3\n", +"clc;clear;close;\n", +"format('v',6);\n", +"Vs=100;//V(Supply voltage)\n", +"R1=40;//ohm\n", +"R2=50;//ohm\n", +"R3=70;//ohm\n", +"R=R1+R2+R3;//ohm(Equivalent resistance)\n", +"I=Vs/R;//A(Current in the circuit)\n", +"disp(I,'Circuit current(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.4: Resistance_R1.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.4\n", +"clc;clear;close;\n", +"format('v',6);\n", +"Vo=10;//V(Output voltage)\n", +"Vin=30;//V(Input voltage)\n", +"R2=100;//ohm\n", +"//V2/V=R2/(R1+R2)//Voltage divider rule\n", +"R1=(Vin*R2-Vo*R2)/Vo;//ohm\n", +"disp(R1,'Resistance of R1(ohm)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.5: Supply_Current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.5\n", +"clc;clear;close;\n", +"format('v',6);\n", +"V=110;//V\n", +"R1=22;//ohm\n", +"R2=44;//ohm\n", +"I1=V/R1;//A\n", +"I2=V/R2;//A\n", +"I=I1+I2;//A\n", +"disp(I,'Supply current(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.6: Effective_resistance_and_Supply_current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.6\n", +"clc;clear;close;\n", +"format('v',5);\n", +"V=12;//V\n", +"R1=6.8;//ohm\n", +"R2=4.7;//ohm\n", +"R3=2.2;//ohm\n", +"R=1/(1/R1+1/R2+1/R3);//ohm(Effective resistance)\n", +"I=V/R;//A(Supply current)\n", +"disp(R,'Effective resistance(ohm)')\n", +"disp(I,'Supply current(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.7: Current_in_the_resistor.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.7\n", +"clc;clear;close;\n", +"format('v',4);\n", +"I=8;//A\n", +"R2=2;//ohm\n", +"// Part (a) \n", +"R1=2;//ohm\n", +"I2=I*R1/(R1+R2);//A\n", +"disp(I2,'(a) Current in 2 ohm resistance(A)');\n", +"// Part (b) \n", +"R1=4;//ohm\n", +"I2=I*R1/(R1+R2);//A\n", +"disp(I2,'(b) Current in 2 ohm resistance(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.8: Calculate_current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 1.8\n", +"clc;clear;close;\n", +"format('v',6);\n", +"I1=3;//A\n", +"I2=-4;//A\n", +"I4=2;//A\n", +"//I1-I2+I3-I4=0//from KCL\n", +"I3=-I1+I2+I4;//A\n", +"disp(I3,'Current I3(A)');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/10-Amplifiers.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/10-Amplifiers.ipynb new file mode 100644 index 0000000..c63504e --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/10-Amplifiers.ipynb @@ -0,0 +1,511 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 10: Amplifiers" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.10: Time_constant_and_frequency.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.10\n", +"clc;clear;close;\n", +"format('v',5);\n", +"C=10;//micro F\n", +"R=1;//kohm\n", +"T=C*10^-6*R*1000;//seconds\n", +"disp(T,'Time constant(seconds)');\n", +"omega_c=1/T;//rads/s\n", +"disp(omega_c,'omega_c(rads/s)');\n", +"fc=1/2/%pi/T;//Hz\n", +"disp(fc,'fc(Hz)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.11: Determine_frequencies.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.11\n", +"clc;clear;close;\n", +"format('v',5);\n", +"//(a)\n", +"f=1;//kHz\n", +"n=1;//no. of octave(above)\n", +"f1=f*2^n;//Hz\n", +"disp(f1,'(a) An octave above 1 kHz (in kHz)= ');\n", +"//(b)\n", +"f=10;//Hz\n", +"n=3;//no. of octave(above)\n", +"f1=f*2^n;//Hz\n", +"disp(f1,'(b) Three octave above 10 Hz (in Hz)= ');\n", +"//(c)\n", +"f=100;//Hz\n", +"n=1;//no. of octave(below)\n", +"f1=f/2^n;//Hz\n", +"disp(f1,'(c) An octave below 100 Hz (in Hz)= ');\n", +"//(d)\n", +"f=20;//kHz\n", +"n=1;//no. of decade(above)\n", +"f1=f*10^n;//Hz\n", +"disp(f1,'(d) An decade above 20 Hz (in Hz) = ');\n", +"//(e)\n", +"f=1;//MHz\n", +"n=3;//no. of decade(below)\n", +"f1=f/10^n;//Hz\n", +"disp(f1*1000,'(e) Three decade below 1 MHz (in kHz) = ');\n", +"//(f)\n", +"f=50;//kHz\n", +"n=2;//no. of decade(above)\n", +"f1=f*10^n;//Hz\n", +"disp(f1/1000,'(f) Two decade above 50 Hz (in kHz) = ');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.12: Time_constant_and_frequency.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.12\n", +"clc;clear;close;\n", +"format('v',5);\n", +"C=10;//micro F\n", +"R=1;//kohm\n", +"T=C*10^-6*R*1000;//seconds\n", +"disp(T,'Time constant(seconds)');\n", +"omega_c=1/T;//rads/s\n", +"disp(omega_c,'omega_c(rads/s)');\n", +"fc=1/2/%pi/T;//Hz\n", +"disp(fc,'fc(Hz)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.13_1: Effect_of_overall_gai.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.13 at page 1.47\n", +"clc;clear;close;\n", +"format('v',6);\n", +"G=100;//stable voltage gain\n", +"A=100000:200000;//variable gain\n", +"B=1/G;//Unitless\n", +"disp('When the gain of amplifier(A) is 100000');\n", +"G1=min(A)/(1+min(A)*B);//overall gain\n", +"disp(G1,'The overall gain(G) is ');\n", +"disp('When the gain of amplifier(A) is 200000');\n", +"G2=max(A)/(1+max(A)*B);//overall gain\n", +"disp(G2,'The overall gain(G) is ');\n", +"change=(G2-G1)/G*100;//% Change in gain\n", +"disp('Effect of variable gain :');\n", +"disp(change,'Corresponding to 100% Change in gain of active amplifier, Change in overall gain is(%) ');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.13: SN_ratio.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.13\n", +"clc;clear;close;\n", +"format('v',5);\n", +"format('v',5);\n", +"Vs=2.5;//V\n", +"Vn=10;//mV\n", +"SNratio=20*log10(Vs/(Vn/1000));//dB\n", +"disp(SNratio,'S/N ratio(dB)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.14: Overall_gai.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.14\n", +"clc;clear;close;\n", +"format('v',5);\n", +"A=10000;//stable voltage gain\n", +"B=1/A;//unitless\n", +"//For A=100000;//gain\n", +"A=100000;//gain\n", +"G=A/(1+A*B);//overall gain\n", +"disp(G,'When the gain of amplifier is 100000, Overall gain will be');\n", +"A=200000;//gain\n", +"G=A/(1+A*B);//overall gain\n", +"disp(G,'When the gain of amplifier is 200000, Overall gain will be');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.1: Output_Voltage.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.1\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Av=10;//voltage gain\n", +"Ri=1;//kohm\n", +"Ro=10;//ohm\n", +"Vs=2;//V(Sensor voltage)\n", +"Rs=100;//ohm(Sensor resistance)\n", +"RL=50;//ohm\n", +"Vi=Vs*Ri*1000/(Rs+Ri*1000);//V\n", +"Vo=Av*Vi*RL/(Ro+RL);//V\n", +"disp(Vo,'Output voltage of amplifier(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.2: Voltage_Gai.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.2\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Av=10;//voltage gain\n", +"Ri=1;//kohm\n", +"Ro=10;//ohm\n", +"Vs=2;//V(Sensor voltage)\n", +"Rs=100;//ohm(Sensor resistance)\n", +"RL=50;//ohm\n", +"Vi=Vs*Ri*1000/(Rs+Ri*1000);//V\n", +"Vo=Av*Vi*RL/(Ro+RL);//V\n", +"Av=Vo/Vi;//voltage gain of circuit\n", +"disp(Av,'Voltage gain of circuit');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.3: Output_Voltage.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.3\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Av=10;//voltage gain\n", +"Ri=%inf;//ohm\n", +"Ro=0;//ohm\n", +"Vs=2;//V(Sensor voltage)\n", +"Rs=100;//ohm(Sensor resistance)\n", +"RL=50;//ohm\n", +"//Vi=Vs*Ri/(Rs+Ri) leads to Vi approximately equals to Vs as Ri=%inf\n", +"Vi=Vs;//V\n", +"Vo=Av*Vi*RL/(Ro+RL);//V\n", +"disp(Vo,'Output voltage of amplifier(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.4: Current_Circuit.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.4\n", +"clc;clear;close;\n", +"format('v',5);\n", +"VOC=10;//V(open circuit voltage)\n", +"//VOC=source voltage here\n", +"R=1;//kohm\n", +"ISC=VOC/R;//mA\n", +"disp(ISC,'Current generated by the circuit(mA)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.5: Output_Power.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.5\n", +"clc;clear;close;\n", +"format('v',4);\n", +"Av=10;//voltage gain\n", +"Ri=1;//kohm\n", +"Ro=10;//ohm\n", +"Vs=2;//V(Sensor voltage)\n", +"Rs=100;//ohm(Sensor resistance)\n", +"RL=50;//ohm\n", +"Vi=Vs*Ri*1000/(Rs+Ri*1000);//V\n", +"Vo=Av*Vi*RL/(Ro+RL);//V\n", +"Po=Vo^2/RL;//W\n", +"disp(Po,'Output power(W)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.6: Power_gain_of_circuit.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.6\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Av=10;//voltage gain\n", +"Ri=1;//kohm\n", +"Ro=10;//ohm\n", +"Vs=2;//V(Sensor voltage)\n", +"Rs=100;//ohm(Sensor resistance)\n", +"RL=50;//ohm\n", +"Vi=Vs*Ri*1000/(Rs+Ri*1000);//V\n", +"Vo=Av*Vi*RL/(Ro+RL);//V\n", +"Po=Vo^2/RL;//W\n", +"Pi=Vi^2/Ri;//mW\n", +"Ap=Po*1000/Pi;//Power gain\n", +"disp(Ap,'Power gain');\n", +"//Answer in the book is wrong." + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.7: Power_gain_in_decibels.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.7\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Ap=1400;//Power gain\n", +"Ap_dB=10*log10(Ap);//dB\n", +"disp(Ap_dB,'Power gain(dB)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.8: Gain_in_dB.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.8\n", +"clc;clear;close;\n", +"format('v',4);\n", +"Ap1=5;//Power gain\n", +"Ap1_dB=10*log10(Ap1);//dB\n", +"disp(Ap1_dB,'Power gain of 5 in dB');\n", +"Ap2=50;//Power gain\n", +"Ap2_dB=10*log10(Ap2);//dB\n", +"disp(Ap2_dB,'Power gain of 50 in dB');\n", +"Ap3=500;//Power gain\n", +"Ap3_dB=10*log10(Ap3);//dB\n", +"disp(Ap3_dB,'Power gain of 500 in dB');\n", +"Av1=5;//Voltage gain\n", +"Av1_dB=20*log10(Av1);//dB\n", +"disp(Av1_dB,'Voltage gain of 5 in dB');\n", +"Av2=50;//Voltage gain\n", +"Av2_dB=20*log10(Av2);//dB\n", +"disp(Av2_dB,'Voltage gain of 50 in dB');\n", +"Av3=500;//Voltage gain\n", +"Av3_dB=20*log10(Av3);//dB\n", +"disp(Av3_dB,'Voltage gain of 500 in dB');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 1.9: Power_gain_and_voltage_gain.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 1.9\n", +"clc;clear;close;\n", +"format('v',6);\n", +"G1=20;//dB\n", +"G2=30;//dB\n", +"G3=40;//dB\n", +"Ap1=10^(G1/10);//Power Gain\n", +"disp(Ap1,'Power gain for 20 dB');\n", +"Av1=10^(G1/20);//Voltage Gain\n", +"disp(Av1,'Voltage gain for 20 dB');\n", +"Ap2=10^(G2/10);//Power Gain\n", +"disp(Ap2,'Power gain for 30 dB');\n", +"Av2=10^(G2/20);//Voltage Gain\n", +"disp(Av2,'Voltage gain for 30 dB');\n", +"Ap3=10^(G3/10);//Power Gain\n", +"disp(Ap3,'Power gain for 40 dB');\n", +"Av3=10^(G3/20);//Voltage Gain\n", +"disp(Av3,'Voltage gain for 40 dB');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/11-Digital_Systems.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/11-Digital_Systems.ipynb new file mode 100644 index 0000000..161f99f --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/11-Digital_Systems.ipynb @@ -0,0 +1,217 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 11: Digital Systems" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.12: Binary_to_decimal.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 2.12\n", +"clc;clear;close;\n", +"format('v',5);\n", +"binary='11010';//given binary value\n", +"decimal=bin2dec(binary);//equivalent decimal\n", +"disp(decimal,'Equivalent decimal value is');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.13: decimal_to_binary.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 2.13\n", +"clc;clear;close;\n", +"format('v',5);\n", +"decimal=26;//given decimal value\n", +"binary=dec2bin(decimal);//equivalent binary value\n", +"disp(binary,'Equivalent binary value is');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.14: decimal_to_binary.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 2.14\n", +"clc;clear;close;\n", +"format('v',9);\n", +"dec=34.6875;//given decimal value\n", +"i=floor(dec);//integer part\n", +"f=dec-i;//fraction part\n", +"i_bin=dec2bin(i);//binary equivalent of integer part\n", +"f_bin=' ';//for initializing(string)\n", +"for n=1:4\n", +" t=2*f;\n", +" if t>=1 then\n", +" p(n)=1;\n", +" f=t-1;\n", +" end\n", +"if t<1 then\n", +" p(n)=0;\n", +" f=t;\n", +"end\n", +"f_bin=f_bin+string(p(n));//binary equivalent of fraction part\n", +"end;\n", +"bin=i_bin+'.'+f_bin;//Binary equivalent of complete no.\n", +"disp(bin,'Binary equivalent of complete no. is ');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.15: Hexadecimal_to_decimal.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 2.15\n", +"clc;clear;close;\n", +"format('v',7);\n", +"hex='A013';//given hexadecimal value\n", +"dec=hex2dec(hex);//equivalent decimal value\n", +"disp(dec,'Equivalent decimal value is');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.16: decimal_to_hexadecimal.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 2.16\n", +"clc;clear;close;\n", +"format('v',7);\n", +"dec=7046;//given decimal value\n", +"hex=dec2hex(dec);//equivalent hexadecimal value\n", +"disp(hex,'Equivalent hexadecimal value is');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.17: Hexadecimal_to_binary.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 2.17\n", +"clc;clear;close;\n", +"format('v',7);\n", +"hex='F851';//given hexadecimal value\n", +"dec=hex2dec(hex);//equivalent decimal value\n", +"bin=dec2bin(dec);//equivalent binary value\n", +"disp(bin,'Equivalent binary value is');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.18: Binary_to_hexadecimal.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Part B Ex 2.18\n", +"clc;clear;close;\n", +"format('v',7);\n", +"bin='111011011000100';//given binary value\n", +"dec=bin2dec(bin);//equivalent decimal value\n", +"hex=dec2hex(dec);//equivalent hexadecimal value\n", +"disp(hex,'Equivalent hexadecimal value is');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/13-Radio_Communication.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/13-Radio_Communication.ipynb new file mode 100644 index 0000000..6c57cde --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/13-Radio_Communication.ipynb @@ -0,0 +1,451 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 13: Radio Communication" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.10: Frequency_and_deviation_ratio.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.10\n", +"clc;clear;close;\n", +"format('v',6);\n", +"//Part (a)\n", +"ft=88.8;//MHz\n", +"N1N2N3=20;//frequency multiplication\n", +"fc=ft/N1N2N3;//MHz\n", +"disp(fc,'(a) Master oscillator center frequency(MHz)');\n", +"delta_ft=75;//kHz\n", +"delta_f=delta_ft*1000/N1N2N3;//Hz\n", +"disp(delta_f,'(b) Frequency deviation at the output(Hz)');\n", +"fm=15;//kHz\n", +"DR=delta_f/1000/fm;//Deviation ratio at output\n", +"disp(DR,'(c) Deviation ratio at the output');\n", +"DR=DR*N1N2N3;//Deviation ratio at antenna\n", +"disp(DR,'(d) Deviation ratio at the antenna');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.11: Reduction_in_frequency_drift.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.11\n", +"clc;clear;close;\n", +"format('v',11);\n", +"VCO=200;//ppm(VCO stability)\n", +"fc=5.1;//MHz\n", +"ft_old=91.8;//MHz\n", +"k0=10;//kHz/V\n", +"kd=2;//V/kHz\n", +"f2=30.6;//MHz\n", +"fc=fc*10^6+(VCO*10^-6*fc*10^6);//Hz(with feedback loop open)\n", +"N1=2;N2=3;\n", +"f2_new=N1*N2*fc;//Hz\n", +"df2=f2_new-f2*10^6;//Hz(Frequency drift)\n", +"ft=N2*f2_new/10^6;//MHz(Transmit frequency)\n", +"df2_reduced=df2/(1+N1*N2*kd*k0);//Hz(reduced frequency drift)\n", +"df2_reduced=round(df2_reduced);//Hz\n", +"disp(df2_reduced,'Reduced frequency drift(Hz)');\n", +"f2dash=f2*10^6+df2_reduced;//Hz(New transmit frequency of antenna)\n", +"ftnew=f2dash*N2;//Hz\n", +"disp(ftnew,'New transmit frequency of antenna(Hz)')\n", +"old_drift=ft*10^6-ft_old*10^6;//Hz\n", +"new_drift=ftnew-ft_old*10^6;//Hz\n", +"disp('The frequency drift at the antenna has been reduced from '+string(old_drift)+' Hz to '+string(new_drift)+' Hz. This fulfill the FCC requirements.')" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.1: Frequency_Limits_and_Bandwidth.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.1\n", +"clc;clear;close;\n", +"format('v',6);\n", +"fc=100;//kHz\n", +"fm=5;//kHz\n", +"LSB=[fc-fm fc];//kHz\n", +"USB=[fc fc+fm];//kHz\n", +"disp('Part (a)');\n", +"disp('Lower sideband is from '+string(LSB(1))+' kHz to '+string(LSB(2))+' kHz');\n", +"disp('Upper sideband is from '+string(USB(1))+' kHz to '+string(USB(2))+' kHz');\n", +"B=2*fm;//kHz\n", +"disp(B,'(b) Bandwidth(kHz)');\n", +"disp('part (c)');\n", +"fm=3;//kHz\n", +"f_usf=fc+fm;//kHz\n", +"disp(f_usf,'Upper side frequency(kHz)');\n", +"f_lsf=fc-fm;//kHz\n", +"disp(f_lsf,'Lower side frequency(kHz)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.2: Frequency_and_modulation_coefficient.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.2\n", +"clc;clear;close;\n", +"format('v',6);\n", +"fc=500;//kHz\n", +"fm=10;//kHz\n", +"//Am=7.5*Vp & Ac=20*Vc\n", +"Em=7.5;//times of Vp\n", +"Ec=20;//times of Vp(unmodulated carrier)\n", +"disp('Part (a)');\n", +"f_usf=fc+fm;//kHz\n", +"disp(f_usf,'Upper side frequency(kHz)');\n", +"f_lsf=fc-fm;//kHz\n", +"disp(f_lsf,'Lower side frequency(kHz)');\n", +"disp('Part (b)');\n", +"m=Em/Ec;//modulation coefficient\n", +"disp(m,'Modulation coefficient');\n", +"M=100*m;//% modulation\n", +"disp(M,'% Modulation');\n", +"disp('Part (c)');\n", +"Ec1=Ec;//times of Vp(modulated carrier)\n", +"Eusf=m*Ec/2;//times of Vp\n", +"Elsf=m*Ec/2;//times of Vp\n", +"disp('Peak amplitude of modulated carrier is '+string(Ec1)+'*Vp');\n", +"disp('Upper & lower side frequency voltages, Eusf = Elsf = '+string(Eusf)+'*Vp');\n", +"disp('Part (d)');\n", +"Vmax=Ec+Em;//times of Vp\n", +"Vmin=Ec-Em;//times of Vp\n", +"disp('Maximum amplitude of envelope is '+string(Vmax)+'*Vp');\n", +"disp('Minimum amplitude of envelope is '+string(Vmin)+'*Vp');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.3: Power_and_voltage.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.3\n", +"clc;clear;close;\n", +"format('v',6);\n", +"fc=1;//MHz\n", +"fm=5;//kHz\n", +"m=60/100;//Modulation\n", +"Pc=6;//kW\n", +"RL=50;//W\n", +"Pavg=Pc*(1+m^2/2);//kW(Average power delivered to load)\n", +"disp('Part(a)');\n", +"disp(Pavg,'Average power of modulated signal(kW)');\n", +"PdB=10*log10(Pavg*1000);//dB\n", +"disp(PdB,'Average power of modulated signal(dB)');\n", +"PdBm=10*log10(Pavg*10^6);//dBm\n", +"disp(PdBm,'Average power of modulated signal(dBm)');\n", +"disp('Part(b)');\n", +"VS_RMS=sqrt(2*RL*Pavg*1000)/1000;//kV\n", +"disp(VS_RMS,'RMS voltage of modulated signal(kV)');\n", +"Vp=sqrt(2)*VS_RMS;//V\n", +"disp(Vp,'Peak value of modulated signal(kV)');\n", +"//Answer is wrong in the book." + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.4: Determine_power.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.4\n", +"clc;clear;close;\n", +"format('v',7);\n", +"Vc=10;//times of Vp\n", +"RL=10;//ohm\n", +"m=1;//modulation coefficient\n", +"Pc=Vc^2/2/RL;//W\n", +"Pusb=m^2*Pc/4;//W\n", +"Plsb=m^2*Pc/4;//W\n", +"disp('Part(a)');\n", +"disp(Pc,'Carrier power(W)');\n", +"disp(Pusb,'Upper side band power(W)');\n", +"disp(Plsb,'Lower side band power(W)');\n", +"disp('Part(b)');\n", +"Psbt=m^2*Pc/2;//W\n", +"disp(Psbt,'Total side band power(W)');\n", +"disp('Part(c)');\n", +"Pt=Pc*(1+m^2/2);//W\n", +"disp(Pt,'Total power of modulated wave(W)');\n", +"disp('Part(e)');\n", +"m=0.5;//modulation coefficient\n", +"Pusb=m^2*Pc/4;//W\n", +"Plsb=m^2*Pc/4;//W\n", +"disp(Pc,'Carrier power(W)');\n", +"disp(Pusb,'Upper side band power(W)');\n", +"disp(Plsb,'Lower side band power(W)');\n", +"Psbt=m^2*Pc/2;//W\n", +"disp(Psbt,'Total side band power(W)');\n", +"Pt=Pc*(1+m^2/2);//W\n", +"disp(Pt,'Total power of modulated wave(W)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.5: Noise_Figure_improvement.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.5\n", +"clc;clear;close;\n", +"format('v',3);\n", +"RF=200;//kHz\n", +"IF=10;//kHz\n", +"BI=RF/IF;//unitless(Bandwidth Improvement)\n", +"NF=10*log10(BI);//dB\n", +"disp(NF,'Noise Figure improvement(dB)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.6: Peak_frequency_and_phase_deviation.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.6\n", +"clc;clear;close;;\n", +"format('v',6)\n", +"//Part (a)\n", +"K1=5;//kHz/V\n", +"//vm(t)=2*cos(2*p*2000*t);\n", +"Vm=2;//V\n", +"fm=2000;//Hz\n", +"delta_f=K1*Vm;//kHz\n", +"disp(delta_f,'(a) Pak frequency deviation(kHz)');\n", +"m=delta_f*1000/fm;//modulation index\n", +"disp(m,'(a) Modulation index');\n", +"//Part (b)\n", +"K=2.5;//rad/V\n", +"//vm(t)=-cos(2*p*2000*t);\n", +"fm=2000;//Hz\n", +"m=K*Vm;//rad(Peak phase shift)\n", +"disp(m,'(b) Peak phase shift(rad)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.7: Frequency_Modulation_Index.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.7\n", +"clc;clear;close;\n", +"format('v',5);\n", +"//v(t)=20*sin(6.28*10^6*t+10*sin(6.28*10^3*t));\n", +"//Comparing with VPM(t)=A*sin(omega_c*t+mp*sin(omega_m*t))\n", +"A=20;\n", +"omega_c=6.28*10^6;//rad\n", +"omega_m=6.28*10^3;//rad\n", +"fc=omega_c/2/%pi/10^6;//MHz\n", +"fm=omega_m/2/%pi/10^3;//kHz\n", +"mp=10;//modulation index\n", +"delta_theta=mp;//radians\n", +"disp(fc,'(a) Carrier freuency(MHz)');\n", +"disp(fm,'(b) Modulating freuency(kHz)');\n", +"disp(mp,'(c) Modulation index(mp)');\n", +"disp(delta_theta,'(d) Peak phase deviation(radians)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.8: Minimum_Bandwidth.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.8\n", +"clc;clear;close;\n", +"format('v',5);\n", +"delta_f=10;//kHz\n", +"fm=10;//kHz\n", +"Vc=10;//V\n", +"fc=500;//kHz\n", +"m=delta_f/fm;//modulation index\n", +"//For m=1 we have 3 sidebands\n", +"B=2*(3*fm);//kHz\n", +"disp(B,'(a) Actual minimum bandwidh(kHz)');\n", +"B=2*(fm+delta_f);//kHz\n", +"disp(B,'(b) Approximate minimum bandwidh(kHz)');\n", +"A0=0.77*fm;//V\n", +"A1=0.44*fm;//V\n", +"A2=0.11*fm;//V\n", +"A3=0.02*fm;//V\n", +"//For frequency spectrum\n", +"A=[A3 A2 A1 A0 A1 A2 A3];//V(Amplitudes)\n", +"f=[fc+3*fm fc+2*fm fc+fm fc fc+fm fc+2*fm fc+3*fm];//kHz\n", +"plot(f,A);\n", +"title('Output frequency spectrum');\n", +"xlabel('Frequency(kHz)');\n", +"ylabel('Amplitudes(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 4.9: Deviation_ratio_and_bandwidth.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 4.9\n", +"clc;clear;close;\n", +"format('v',6)\n", +"//Part (a)\n", +"delta_f=75;//kHz\n", +"fm=15;//kHz\n", +"DR=delta_f/fm;//Deviation ratio\n", +"disp(DR,'(a) Deviation ratio');\n", +"//For m or DR=5 we have 8 sidebands\n", +"B=2*(8*fm);//kHz\n", +"disp(B,'(a) Bandwidh for worst case(kHz)');\n", +"//Part (b)\n", +"delta_f=75/2;//kHz\n", +"fm=15/2;//kHz\n", +"DR=delta_f/fm;//Deviation ratio\n", +"disp(DR,'(b) Deviation ratio or modulation index');\n", +"//For m or DR=5 we have 8 sidebands\n", +"B=2*(8*fm);//kHz\n", +"disp(B,'(b) Bandwidh for worst case(kHz)');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/15-Communication_systems.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/15-Communication_systems.ipynb new file mode 100644 index 0000000..81699ec --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/15-Communication_systems.ipynb @@ -0,0 +1,125 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 15: Communication systems" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.1: Angle_of_refraction.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.1\n", +"clc;clear;close;\n", +"format('v',6);\n", +"theta1=30;//degree(Angle of incedence)\n", +"n1=1.5;//(refractive index for glass)\n", +"n2=1.36;//(refractive index for ethyl alcohol)\n", +"theta2=asind(n1*sind(theta1)/n2);//degree(Angle of refraction)\n", +"disp(theta2,'Angle of refraction(degree)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.2: No_of_channels.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.2\n", +"clc;clear;close;\n", +"format('v',6);\n", +"clusters=10;//no. of clusters\n", +"cells=7;//no. of cells in a cluster\n", +"channels=10;//no. of channels in a cell\n", +"F=cells*channels;//no. of full duplex channels/cluster\n", +"disp(F,'Number of channels per cluster');\n", +"C=clusters*cells*channels;//total no. of channels\n", +"disp(C,'Total channel capacity');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.3: No_of_cells_and_frequency.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.3\n", +"clc;clear;close;\n", +"format('v',6);\n", +"Asys=1520;//km^2\n", +"Ch=1140;//no. of channels\n", +"Acell=4;//km^2\n", +"i=3;j=2;//For hexagon cells\n", +"N=i^2+i*j+j^2;//cells in a cluster\n", +"disp(N,'(a) No. of cells in a cluster');\n", +"Acluster=N*Acell;//km^2\n", +"cluster=Asys/Acluster;//no. of clusters\n", +"disp(cluster,'(b) Number of clusters');\n", +"disp(Acluster,'(c) Area of each cellular cluster(km^2)');\n", +"C=cluster*Ch;//system capacity\n", +"disp(C,'(d) Increased system capacity(No. of channels)');\n", +"//Without frequency reuse :-\n", +"c_sys=Asys/Acell;//No. of cell in a system\n", +"ch_cell=Ch/c_sys;//No. of channels/cell\n", +"disp(ch_cell,'(e_i) Without frequency reuse, No. of channels/cell');\n", +"//With frequency reuse :-\n", +"ch_cell=Ch/N;//No. of channels/cell\n", +"disp(ch_cell,'(e_ii) With frequency reuse, No. of channels/cell');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/2-Magnetic_Circuits.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/2-Magnetic_Circuits.ipynb new file mode 100644 index 0000000..859afa6 --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/2-Magnetic_Circuits.ipynb @@ -0,0 +1,326 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 2: Magnetic Circuits" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.10: Self_and_mutual_inductance.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.10\n", +"clc;clear;close;\n", +"format('v',6);\n", +"A=800;//mm^2(Cross sectional area)\n", +"r=170;//mm(radius)\n", +"N1=500;//turns\n", +"N2=700;//turns\n", +"mur=1200;//relative permeability\n", +"mu0=4*%pi*10^-7;//constant\n", +"S=2*%pi*r*10^-3/(mu0*mur*A*10^-6);//H\n", +"L1=N1^2/S;//H\n", +"disp(L1,'Self Inductance of coil 1(H)');\n", +"L2=N2^2/S;//H\n", +"disp(L2,'Self Inductance of coil 2(H)');\n", +"k=1;//constant\n", +"M=k*sqrt(L1*L2);//H\n", +"disp(M,'Mutual Inductance(H)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.1: field_strength_and_flux.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.1\n", +"clc;clear;close;\n", +"format('v',6);\n", +"N=200;//turns\n", +"c=600;//mm(circumference)\n", +"A=500;//m^2(Cross section area)\n", +"I=4;//A(Current through coil)\n", +"H=I*N/(c*10^-3);//A/m(Magnetic field strength)\n", +"disp(H,'(a) Magnetic field strength(A/m)');\n", +"mu0=4*%pi*10^-7;//constant\n", +"FD=mu0*H*10^6;//micro T(Flux density)\n", +"disp(FD,'(b) Flux density(micro T)');\n", +"Ft=FD*A*10^-6;//micro Wb(Total flux)\n", +"disp(Ft,'(c) Total flux(micro Wb)');\n", +"//Answer in the book is wrong." + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.2: Magnetomotive_force.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.2\n", +"clc;clear;close;\n", +"format('v',6);\n", +"fi=0.015;//Wb(flux)\n", +"ag=2.5;//mm(airgap)\n", +"Ae=200;//cm^2(Effective area)\n", +"FD=fi/(Ae*10^-4);//T(Flux density)\n", +"mu0=4*%pi*10^-7;//constant\n", +"H=FD/mu0;//A/m(Magnetic field strength)\n", +"mmf=H*ag*10^-3;//A(magnetomotive force required)\n", +"disp(mmf,'Magnetomotive force required(A)');\n", +"//Answer in the book is not accurate." + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.3: Reluctance_and_current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.3\n", +"clc;clear;close;\n", +"format('e',9);\n", +"A=500;//mm^2(Cross sectional area)\n", +"c=400;//mm(circumference)\n", +"N=200;//turns\n", +"fi=800;//micro Wb(flux)\n", +"B=fi*10^-6/(A*10^-6);//T(Flux density)\n", +"mu0=4*%pi*10^-7;//constant\n", +"mur=380;//relative permeability\n", +"S=(c/1000)/(mur*mu0*A*10^-6);//A/Wb(Reluctance)\n", +"disp(S,'(a) Reluctance of the ring(A/Wb)');\n", +"mmf=fi*10^-6*S;//A\n", +"Im=mmf/N;//A(Magnetizing current)\n", +"format('v',5);\n", +"disp(Im,'(b) Required magnetizing current(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.4: Coil_Current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.4\n", +"clc;clear;close;\n", +"format('v',5);\n", +"la=80;//mm\n", +"Aa=50;//mm^2(Cross sectional area)\n", +"lb=60;//mm\n", +"Ab=90;//mm^2(Cross sectional area)\n", +"lc=0.5;//mm(airgap)\n", +"Ac=150;//mm^2(Cross sectional area)\n", +"N=4000;//turns\n", +"Bc=0.30;//T(Flux density in airgap)\n", +"mu0=4*%pi*10^-7;//constant\n", +"mur=1300;//relative permeability\n", +"fi=Bc*Ac*10^-6;//Wb(flux)\n", +"Fa=fi*la*10^-3/(mu0*mur*Aa*10^-6);//At\n", +"Fb=fi*lb*10^-3/(mu0*mur*Ab*10^-6);//At\n", +"Fc=fi*lc*10^-3/(mu0*1*Ac*10^-6);//At\n", +"F=Fa+Fb+Fc;//At\n", +"I=F/N*1000;//mA\n", +"disp(I,'Coil current(mA)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.5: Induced_emf.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.5\n", +"clc;clear;close;\n", +"format('v',6);\n", +"L=0.5;//H\n", +"deltaI=2-5;//A\n", +"deltaT=0.05;//sec\n", +"dIBYdT=deltaI/deltaT;//A/s\n", +"emf=L*dIBYdT;//V\n", +"disp(emf,'emf induced(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.6: Flux_and_emf.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.6\n", +"clc;clear;close;\n", +"format('v',5);\n", +"N=300;//turns\n", +"L=10;//mH\n", +"I=5;//A\n", +"fi=L*10^-3/N*I*10^6;//micro Wb\n", +"disp(fi,'(a) Flux produced(micro Wb)');\n", +"//on reverse the current\n", +"delta_fi=2*fi;//micro Wb\n", +"//(as it goes to zero and increase to same value in reverse direction)\n", +"deltaT=8*10^-3;//seconds\n", +"dfiBYdT=delta_fi*10^-6/deltaT;//Wb/s\n", +"emf=N*dfiBYdT;//V(Average emf induced)\n", +"disp(emf,'(b) Average emf induced(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.7: Inductance_of_coil.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.7\n", +"clc;clear;close;\n", +"format('v',6);\n", +"c=400;//mm(circumference)\n", +"A=500;//mm^2(Cross sectional area)\n", +"N=200;//turns\n", +"//Part (a)\n", +"I=2;//A\n", +"H=N*I/(c*10^-3);//A/m\n", +"B=1.13;//T(Corresponding Flux density)\n", +"fi=B*A*10^-6;//Wb(total flux)\n", +"L=N*fi/I*1000;//mH\n", +"disp(L,'(a) Inductance of coil(mH)');\n", +"//Part (a)\n", +"I=10;//A\n", +"H=N*I/(c*10^-3);//A/m\n", +"B=1.63;//T(Corresponding Flux density)\n", +"fi=B*A*10^-6;//Wb(total flux)\n", +"L=N*fi/I*1000;//mH\n", +"disp(L,'(b) Inductance of coil(mH)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 2.8: Inductance.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 2.8\n", +"clc;clear;close;\n", +"format('v',5);\n", +"c=400;//mm(circumference)\n", +"A=500;//mm^2(Cross sectional area)\n", +"N=200;//turns\n", +"mu0=4*%pi*10^-7;//constant\n", +"L=mu0*A*10^-6*(N^2)/(c*10^-3)*10^6;//micro H\n", +"disp(L,'Inductance(micro H)');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/3-Single_phase_AC_circuits.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/3-Single_phase_AC_circuits.ipynb new file mode 100644 index 0000000..f40222c --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/3-Single_phase_AC_circuits.ipynb @@ -0,0 +1,476 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 3: Single phase AC circuits" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.10: Capacitance_and_phase_angle.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.10\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Pr=750;//W(rated)\n", +"Vr=100;//V(rated)\n", +"V=230;//V(Supply voltage)\n", +"f=60;//Hz\n", +"VC=sqrt(V^2-Vr^2);//V(Voltage across capacitor)\n", +"Ir=Pr/Vr;//A(Rated current)\n", +"C=Ir/(2*%pi*f*VC)*10^6;//micro F\n", +"disp(C,'(a) Capacitance required(micro F)');\n", +"fi=acosd(Vr/V);//degree\n", +"disp(fi,'(b) Phase angle(degree)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.11: Impedence_current_and_voltage.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.11\n", +"clc;clear;close;\n", +"format('v',5);\n", +"R=12;//ohm\n", +"L=0.15;//H\n", +"C=100;//micro F\n", +"V=100;//V\n", +"f=50;//Hz\n", +"XL=2*%pi*f*L;//ohm\n", +"XC=1/(2*%pi*f*C*10^-6);//ohm\n", +"Z=sqrt(R^2+(XL-XC)^2);//ohm\n", +"disp(Z,'(a) Impedence(ohm)');\n", +"I=V/Z;//A\n", +"disp(I,'(b) Current(A)');\n", +"VR=R*I;//V\n", +"VL=XL*I;//V\n", +"VC=XC*I;//V\n", +"disp(VC,VL,VR,'(b) Voltge(V) across R, L & C');\n", +"fi=acosd(VR/V);//degree\n", +"disp(fi,'(c) Phase difference(degree)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.12: Curent_Phase_angle_and_power.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.12\n", +"clc;clear;close;\n", +"format('v',5);\n", +"R=6;//ohm\n", +"L=0.03;//H\n", +"V=50;//V\n", +"f=60;//Hz\n", +"XL=2*%pi*f*L;//ohm\n", +"Z=sqrt(R^2+XL^2);//ohm\n", +"I=V/Z;//A\n", +"disp(I,'(a) Current(A)');\n", +"fi=atand(XL/R);//degree\n", +"disp(fi,'(b) Phase angle(degree)');\n", +"S=V*I;//VA(Apparent power)\n", +"disp(S,'(c) Apparent power(VA)')\n", +"P=S*cosd(fi);//W\n", +"P=round(P);//W\n", +"disp(P,'(d) Active power(W)')" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.13: Power_dissipated.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.13\n", +"clc;clear;close;\n", +"format('v',5);\n", +"R=30;//ohm\n", +"V=230;//V\n", +"f=50;//Hz\n", +"VR=130;//V\n", +"VLr=180;//V\n", +"fiLr=acosd((V^2-VR^2-VLr^2)/(2*VR*VLr));//degree(lag)\n", +"I=VR/R;//A\n", +"Pr=VLr*I*cosd(fiLr);//W\n", +"disp(Pr,'Power dissipated in the coil(W)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.14: Resistance_Inductance_and_Power_factor.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.14\n", +"clc;clear;close;\n", +"format('v',5);\n", +"V=230;//V\n", +"f=50;//Hz\n", +"I=5;//A\n", +"P=750;//W\n", +"Z=V/I;//ohm\n", +"R=P/I^2;//ohm(Resistance)\n", +"XL=sqrt(Z^2-R^2);//ohm(reactance)\n", +"L=XL/2/%pi/f;//H(Inductance)\n", +"disp(R,'(a) Resistance(ohm)');\n", +"disp(L*1000,'(a) Inductance(mH)');\n", +"pf=P/(V*I);//power factor(lag)\n", +"disp(pf,'(b) Power factor(lag)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.1: Frequency_Period_and_emf.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.1\n", +"clc;clear;close;\n", +"format('v',5);\n", +"N=100;//turns\n", +"R=1500;//rpm(Rotation)\n", +"B=0.05;//T(Magnetic field)\n", +"A=40;//cm^2(Cross sectional area)\n", +"f=R/60;//Hz\n", +"theta=30;//degree\n", +"disp(f,'(a) Frequency(Hz)');\n", +"Period=1/f;//seconds\n", +"disp(Period,'(b) Period(seconds)');\n", +"Em=2*%pi*B*(A/10^4)*N*f;//V\n", +"disp(Em,'(c) Maximum value of gnerated emf(V)');\n", +"e=%pi*sind(theta);//V\n", +"disp(e,'(d) Gnerated emf after rotation(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.2: Peak_values_of_current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.2\n", +"clc;clear;close;\n", +"format('v',6);\n", +"Irms=10;//A\n", +"Im=Irms*sqrt(2);//A\n", +"disp(-Im,+Im,'Peak values of current(A) are');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.3: Voltage_and_frequency.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.3\n", +"clc;clear;close;\n", +"format('v',6);\n", +"//v=141.4*sin(377*t)\n", +"Vm=141.4;//V\n", +"V=Vm/sqrt(2);//V(rms voltage)\n", +"disp(V,'(a) r.m.s. Voltage(V)');\n", +"omega=377;//rad/s\n", +"f=omega/2/%pi;//Hz\n", +"disp(f,'(b) Frequency(Hz)');\n", +"t=3*10^-3;//seconds\n", +"v=141.4*sin(377*t);//V\n", +"disp(v,'(c) Instantaneous Voltage(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.4: Ameter_reading_Form_and_Peak_factor.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.4\n", +"clc;clear;close;\n", +"format('v',5);\n", +"V=110;//V(Supply voltage)\n", +"R=50;//ohm\n", +"Vm=V*sqrt(2);//V(maximum voltage)\n", +"Im=Vm/R;//A(maximum current)\n", +"Iav1=0.637*Im;//A(average current Over +ve half cycle)\n", +"Iav2=0;//(average current Over -ve half cycle)\n", +"Iav=(Iav1+Iav2)/2;//A(average current Over whole cycle)\n", +"disp(Iav,'(a) Reading on moving coil ammeter(A)');\n", +"//For thermal ammeter : I^2*R=1/4*Im^2*R(thermal effect for complete cycle)\n", +"I=sqrt(1/4*Im^2);//A(reading on thermal ammeter)\n", +"disp(I,'(a) Reading on thermal ammeter(A)');\n", +"kf=I/Iav;//form factor\n", +"kp=Im/I;//peak factor\n", +"disp(kp,kf,'(b) Form factor & peak factor are');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.5: Circuit_current_and_phase_angle.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.5\n", +"clc;clear;close;\n", +"format('v',5);\n", +"V=100;//V\n", +"R=7;//ohm\n", +"L=31.8;//mH\n", +"f=50;///Hz\n", +"XL=2*%pi*f*L/1000;//ohm\n", +"Z=sqrt(R^2+XL^2);//ohm\n", +"I=V/Z;//A(circuit current)\n", +"disp(I,'(a) Circuit current(A)');\n", +"fi=atand(XL/R);//degree(lag)\n", +"disp(fi,'(b) Phase angle(lag) in degree');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.6: Supply_voltage.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.6\n", +"clc;clear;close;\n", +"format('v',5);\n", +"L=318;//mH\n", +"R=75;//ohm\n", +"VR=150;//V\n", +"f=50;///Hz\n", +"I=VR/R;//A\n", +"XL=2*%pi*f*L/1000;//ohm\n", +"VL=I*XL;//V\n", +"V=sqrt(VR^2+VL^2);//V\n", +"disp(V,'Supply Voltage(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.7: Supply_voltage_and_phase_angle.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.7\n", +"clc;clear;close;\n", +"format('v',4);\n", +"ZLr=50;//ohm\n", +"fiLr=45;//degree(lag)(between current & Voltage)\n", +"R=40;//ohm\n", +"I=3;//A(Circuit current)\n", +"VR=I*R;//V\n", +"VLr=I*ZLr;//V\n", +"V=sqrt(VR^2+VLr^2+2*VR*VLr*cosd(fiLr));//V\n", +"disp(V,'Supply voltage(V)');\n", +"fi=acosd((VR+VLr*cosd(fiLr))/V);//degree\n", +"disp(fi,'Circuit phase angle(lag in degree)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.8: Reactance_and_current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.8\n", +"clc;clear;close;\n", +"format('v',6);\n", +"C=30;//micro F\n", +"V=400;//V\n", +"f=50;//Hz\n", +"Xc=1/(2*%pi*f*C*10^-6);//ohm\n", +"disp(Xc,'(a) Reactance of capacitor(ohm)');\n", +"I=V/Xc;//A\n", +"disp(I,'(b) Current(A)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 3.9: Reactance_Impedence_Current_and_phase.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 3.9\n", +"clc;clear;close;\n", +"format('v',5);\n", +"R=12;//ohm(Coil resistance)\n", +"L=0.1;//H(Coil Inductance)\n", +"V=100;//V\n", +"f=50;//Hz\n", +"XL=2*%pi*f*L;//ohm\n", +"Z=sqrt(R^2+XL^2);//ohm\n", +"disp(Z,XL,'(a) Reactance(ohm) & impedence(ohm) of the coil are');\n", +"I=V/Z;//A\n", +"disp(I,'(b) Current(A)');\n", +"fi=atand(XL/R);//degree\n", +"fi=round(fi);//degree\n", +"disp(fi,'Phase difference(degree)');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/5-Single_Phase_Transformers.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/5-Single_Phase_Transformers.ipynb new file mode 100644 index 0000000..9e7fc47 --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/5-Single_Phase_Transformers.ipynb @@ -0,0 +1,159 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 5: Single Phase Transformers" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 5.1: Curent_Turns_and_flux.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 5.1\n", +"clc;clear;close;\n", +"format('v',5);\n", +"kVA=250;//kVA\n", +"V1=11000;//V(Primary voltage)\n", +"V2=400;//V(secondary voltage)\n", +"f=50;//Hz\n", +"N2=80;//no. of turns in secondary\n", +"Ifl1=kVA*1000/V1;//A(Full load primay current)\n", +"Ifl2=kVA*1000/V2;//A(Full load secondary current)\n", +"disp('Part(a)');\n", +"disp(Ifl1,'Full load primary current(A)');\n", +"disp(Ifl2,'Full load secondary current(A)');\n", +"disp('Part(b)');\n", +"N1=N2*V1/V2;//no. of turns in secondary\n", +"disp(N1,'No. of turns in primary');\n", +"disp('Part(c)');\n", +"fi_m=V2/(4.44*N2*f);//Wb\n", +"disp(fi_m*1000,'Maximum value of flux(mWb)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 5.2: Area_Voltage_ad_current.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 5.2\n", +"clc;clear;close;\n", +"format('v',7);\n", +"N1=480;//no. of turns in primary\n", +"N2=90;//no. of turns in secondary\n", +"lfp=1.8;//m(length of flux path)\n", +"ag=0.1;//mm(airgap)\n", +"Flux=1.1;//T(flux density)\n", +"MF=400;//A/m(Magnetic flux)\n", +"c_loss=1.7;//W/kg\n", +"f=50;//Hz\n", +"d=7800;//kg/m^3(density of core)\n", +"V=2200;//V(potential difference)\n", +"//Part (a)\n", +"fi_m=V/(4.44*N1*f);//Wb\n", +"A=fi_m/Flux;//m^2(Cross sectional area)\n", +"disp(A,'(a) Cross sectional area(m^2)');\n", +"//Part (b)\n", +"Vnl2=V*N2/N1;//V(2ndary voltage on no load)\n", +"Vnl2=round(Vnl2);//V(2ndary voltage on no load)\n", +"disp(Vnl2,'(b) 2ndary voltage on no load(V)');\n", +"//Part (c)\n", +"format('v',5);\n", +"Fm1=MF*lfp;//A(Magnetootive force for the core)\n", +"Fm2=Flux/(4*%pi*10^-7)*ag*10^-3;//A(Magnetootive force for airgap)\n", +"Fm=Fm1+Fm2;//A(Total magnetomotive force)\n", +"Imax=Fm/N1;//A(maximum value of magnetizing current)\n", +"Iom=Imax/sqrt(2);//A(rms current)\n", +"v=lfp*A;//m^3(Volume of core)\n", +"m=v*d;//kg(Mass of core)\n", +"coreLoss=c_loss*m;//W(Core Loss)\n", +"Io1=coreLoss/V;//A(Core loss component of curent)\n", +"Io=sqrt(Iom^2+Io1^2);//A(no load current)\n", +"disp(Io,'(c) Primary current on no load(A)');\n", +"format('v',6);\n", +"pf=Io1/Io;//lagging pf on no load\n", +"disp(pf,'(c) Power factor(lagging) on no load');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 5.3: Current_and_power_factor.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 5.3\n", +"clc;clear;close;\n", +"format('v',5);\n", +"N1=1000;//no. of turns in primary\n", +"N2=200;//no. of turns in secondary\n", +"I0=3;//A\n", +"pf0=0.2;//lagging power factor\n", +"I2=280;//A(2ndary current)\n", +"pf2=0.8;//lagging power factor\n", +"I2dash=I2*N2/N1;//A\n", +"cosfi0=pf0;cosfi2=pf2;sinfi0=sqrt(1-cosfi0^2);sinfi2=sqrt(1-cosfi2^2);\n", +"I1_cosfi1=I2dash*cosfi2+I0*cosfi0;//A\n", +"I1_sinfi1=I2dash*sinfi2+I0*sinfi0;//A\n", +"I1=sqrt(I1_cosfi1^2+I1_sinfi1^2);//A\n", +"disp(I1,'Primary current(A)');\n", +"fi1=atand(I1_sinfi1/I1_cosfi1);//degree\n", +"pf1=cosd(fi1);//lagging\n", +"disp(pf1,'Primary power factor(lagging)');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/6-DC_Machines.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/6-DC_Machines.ipynb new file mode 100644 index 0000000..59c3e7b --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/6-DC_Machines.ipynb @@ -0,0 +1,248 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 6: DC Machines" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.1: Generated_emf.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.1\n", +"clc;clear;close;\n", +"format('v',5);\n", +"P=4;//no. of poles\n", +"c=2;//no. of parallel paths\n", +"p=4/2;//no. of pair of poles\n", +"S=51;//no. of slots\n", +"C=12;//conductors per slot\n", +"N=900;//rpm(speed)\n", +"fi=25/1000;//Wb\n", +"Z=S*C;//total no. of conductors\n", +"E=2*Z/c*N*p/60*fi;//V\n", +"disp(E,'Generated emf(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.2: Conductors_per_slot.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.2\n", +"clc;clear;close;\n", +"format('v',5);\n", +"P=8;//no. of poles\n", +"c=8;//no. of parallel paths\n", +"p=8/2;//no. of pair of poles\n", +"E=260;//V(generated emf)\n", +"fi=0.05;//Wb\n", +"S=120;//no. of slots\n", +"N=350;//rpm(speed)\n", +"Z=E/(2/c*N*p/60*fi);//V\n", +"disp(round(Z),'No. of conductors per slot');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.3: Generated_emf.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.3\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Ra=0.1;//ohm(Armature resistance)\n", +"Vs=250;//V(supply voltage)\n", +"//part(a)\n", +"I=80;//A\n", +"Vdrop=Ra*I;//V\n", +"emf=Vs+Vdrop;//V(Generated emf)\n", +"disp(emf,'Part(a) Generated emf(V)');\n", +"//part(b)\n", +"I=60;//A(current taken by Motor)\n", +"Vdrop=Ra*I;//V\n", +"emf=Vs-Vdrop;//V(Generated emf)\n", +"disp(emf,'Part(b) Generated emf(V)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.4: Calculate_speed.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.4\n", +"clc;clear;close;\n", +"format('v',5);\n", +"P=4;//no. of poles\n", +"Vs=440;//V\n", +"c=2;//no. of parallel paths\n", +"p=4/2;//no. of pair of poles\n", +"Ia=50;//A\n", +"Ra=0.28;//ohm\n", +"Z=888;//conductors\n", +"fi=0.023;//Wb\n", +"emf=Vs-Ia*Ra;//V\n", +"N=emf/(2*Z/c*p/60*fi);//rpm\n", +"disp(round(N),'Speed in rpm');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.5: Approximate_speed.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.5\n", +"clc;clear;close;\n", +"format('v',5);\n", +"N=900;//rpm\n", +"Vs=460;//V\n", +"Vs_new=200;//V\n", +"fi_ratio=0.7;//ratio of new flux to original flux\n", +"kfi=Vs/N;//for original flux\n", +"Nnew=Vs_new/kfi/fi_ratio;//rpm(new speed)\n", +"disp(round(Nnew),'Speed in rpm');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.6: SPeed_and_gross_torque.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.6\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Ia=110;//A\n", +"Vs=480;//V\n", +"Ra=0.2;//ohm\n", +"P=6;//no. of poles\n", +"c=6;//no. of parallel paths\n", +"p=P/2;//no. of pair of poles\n", +"Z=864;//no. of conductors\n", +"fi=0.05;//Wb\n", +"emf=Vs-Ia*Ra;//V\n", +"N=emf/(2*Z/c*p/60*fi);//rpm\n", +"N=round(N);//rpm\n", +"disp(N,'(a) Speed in rpm');\n", +"Pm=Ia*emf;//W(Mechanical power developed)\n", +"M=Pm/(N/60)/(2*%pi);//Nm(Torque)\n", +"disp(M,'(b) Gross torque developed(Nm)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 6.7: Power_generated.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 6.7\n", +"clc;clear;close;\n", +"format('v',6);\n", +"N=15;//rps\n", +"M=2*1000;//Nm(Torque required)\n", +"Loss=8*1000;//W\n", +"P=2*%pi*M*N;//W(Power required)\n", +"Pa=P-Loss;//W(Power generated in armature)\n", +"disp(Pa/1000,'Power generated in armature(kW)');" + ] + } +], +"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 +} diff --git a/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/7-Induction_Machines.ipynb b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/7-Induction_Machines.ipynb new file mode 100644 index 0000000..083eb6c --- /dev/null +++ b/Basics_of_Electrical_by_Electronics_and_Communication_Engineering/7-Induction_Machines.ipynb @@ -0,0 +1,109 @@ +{ +"cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Chapter 7: Induction Machines" + ] + }, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 7.1: Speed_and_frequency.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 7.1\n", +"clc;clear;close;\n", +"format('v',5);\n", +"P=4;//no. of poles\n", +"f=50;//Hz\n", +"S=4/100;//slip\n", +"N=600;//rpm\n", +"p=P/2;//pair of poles\n", +"//(a)\n", +"Ns=60*f/p;//rpm(Synchronous speed)\n", +"disp(Ns,'(a) Synchronous speed(rpm)');\n", +"//(b)\n", +"Nr=Ns-S*Ns;//rpm(Rotor speed)\n", +"disp(Nr,'(b) Rotor speed(rpm)');\n", +"//(c)\n", +"Sdash=(Ns-N)/Ns;//per unot slip\n", +"fr=f*Sdash;//Hz(Rotor frequency)\n", +"disp(fr,'Rotor frequency(Hz)');" + ] + } +, +{ + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Example 7.2: Rotor_emf_and_phase_difference.sce" + ] + }, + { +"cell_type": "code", + "execution_count": null, + "metadata": { + "collapsed": true + }, + "outputs": [], +"source": [ +"//Ex 7.2\n", +"clc;clear;close;\n", +"format('v',5);\n", +"Zs=240;//no. of conductors in stator winding\n", +"Zr=48;//no. of conductors in rotor winding\n", +"Rr=0.013;//ohm/phase(resstance rotor windig)\n", +"XL=0.048;//ohm/phase(leakega reactance)\n", +"Vs=400;//V\n", +"//(a)\n", +"Eo=Vs*Zr/Zs;//V(rotor emf)\n", +"disp(Eo,'(a) Rotor emf(V)');\n", +"//(b)\n", +"S=4/100;//slip\n", +"Eo=Eo*S;//V(rotor emf for 4% slip)\n", +"disp(Eo,'(b) Rotor emf at 4% slip(V)');\n", +"Z=sqrt(Rr^2+(S*XL)^2);//ohm/phase(rotor impedence at 4% slip)\n", +"Ir=Eo/Z;//A(Rotor curren at 4% slip)\n", +"disp(Ir,'(b) Rotor curren at 4% slip(A)');\n", +"//(c)\n", +"fi_r=atand(S*XL/Rr);//degree\n", +"disp(fi_r,'(c) Phase difference at 4% slip(degree)');\n", +"S=100/100;//100% slip\n", +"fi_r=atand(S*XL/Rr);//degree\n", +"disp(fi_r,'(c) Phase difference at 100% slip(degree)');" + ] + } +], +"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 +} |