KUPG Phys F1
KUPG Phys F1
Of Physics
Programme Structure
The M. Sc. programme is a two-year course divided into four-semesters. The M.Sc. Physics
Programme would make the students competent in a natural science, viz., Physics, and help them
understand its role in modern day technology. Overall, the course would enable the students to
understand the fundamental concepts and experimental methods of physics which would help them
to innovate/apply/generate new devices/applications/insights/knowledge. Knowledge gained
through the open electives would be an asset in branching out in fields other than physics.
Credit Distributions
Core 12 12 x 4 02 2x6 14 60
Dissertation 02 x 6 12
Total 20 92
Courses
Semester Wise Paper
SCIENCE/MATH
Credits: 4, Lectures: 60
(All the programs are to be learned in Python/C/C++)
Python/C/ C++ Programming Languages & in SciLab / Metlab
Course Objectives:
• To learn computer programming,
• solve physics problems through different numerical techniques and
• use computer programming for simulation and data analysis.
Unit – I
Introduction: Role of computers in physics; Numerical analysis, modeling and simulation; Flow
charts; Introduction to computer programming in Python/C/C++, Integer and Floating point
arithmetic, Operators and Expressions, While, Do-While, For loops, Arrays and Strings, Functions,
I/O with files.
Programs:- (1) Roots of a Quadratic Equation, (2) Sum and Average of Numbers, (3) Sum,
Difference and Product of Matrices, (4) Largest of Three Numbers, (5) Factorial of an Integer by
Normal Method and by Recursion, (6) Largest of a List of Numbers and its Location in the List, (7)
Fitting a Straight Line to a Data, (8) Deviations About an Average, (9) Arrange a List of Numbers in
Ascending and Descending Order, (10) Binary Search.
(10 L + 5 T/P/D)
Unit - II
Numerical Analysis
Errors and Iterative Methods: Truncation and Round-off Errors. Floating Point Computation.
Overflow and Underflow. Single and Double Precision Arithmetic. Iterative Methods.
Solution of Algebraic and Transcendental Equations: (1) Fixed-Point Iteration Method, (2)
Bisection Method, (3) Secant Method, (4) Newton-Raphson Method, and (5) Generalized Newton’s
Method. Comparison and Error Estimation.
Matrices and Linear System of Equations: Solution of Linear Equations :- (1) Gauss Elimination
Method and (2) Gauss-Seidel Iterative Method.
Eigenvalues and Eigenvectors :- Computation of Eigenvalues and Eigenvectors of Matrices by
using Iterative Methods. (10 L + 5 T/P/D)
Unit - III
Interpolation: Forward and Backward Differences. Symbolic Relation. Differences of a
Polynomial. Newton’ Forward and Backward Interpolation Formulas. Divided Differences.
Newton’s General Interpolation Formula.
Curve Fitting, B-Splines and Approximation: Curve Fitting by Least Square Methods : (1)
Fitting a Straight Line. (2) Non-Linear Curve Fitting : (a) Power Function, (b) Polynomial of nth
Degree, and (c) Exponential Function. (3) Linear Weighed Least Square Approximation.
Orthogonal Polynomials. Gram-Schmidt Orthogonalization Process. Cubic B-Splines. Least-
Squares Solution. Representation of B-Splines through Divided Differences. Approximation of
Functions. Chebyshev Polynomials. (10 L + 5 T/P/D)
Unit - IV
Numerical Differentiation Numerical Differentiation using (1) Newton’s Interpolation Formulas
and (2) Cubic Spline Method. Errors in Numeric Differentiation. Maximum and Minimum Values
of a Tabulated Function.
Numerical Integration: General Quadrature Formula. Trapezoidal Rule. Simpson's 1/3 and 3/8
Rules. Weddle’s Rule. Gauss Quadrature Formulas : (1) Gauss- Hermite and (2) Gauss-Legendre
Formulas.
Solution of Ordinary Differential Equations (ODE’s) First Order ODEs :- Solution of Initial
Value Problems : (1) Euler’s Method, (2) Modified Eulers’s Method, (3) Runge-Kutta Method of
Second Order with Error Estimation.
Second Order ODEs. :- Solution of 2-Point Boundary Value Problems. Finite Difference
Approximation of Derivatives. Finite Differnce Method.
Random Variables and Monte Carlo Methods: Random numbers, Pseudo-random numbers,
Monte Carlo integration: Monte Carlo Simulations: Buffen’s needle experiment, Importance of
sampling, Random Walk (10 L + 5 T/P/D)
Course Outcomes: Students will be able to
1. write computer programs using Python/C/C++ /& Scilab/Metlab,
2. use different numerical methods to solve problems using computer programs.
3. simulate physical systems using Monte Carlo Method.
References:
1. Computational Physics with Python by Dr. Eric Ayars
3. Mathews, J. H., Numerical Methods for Mathematics, Science and Engineering, Prentice-Hall,
(2000).
4. Introduction to Numerical Analysis, S.S. Sastry, PHI Learning Pvt. Ltd.
5. Schaum’s Outline of Programming with C++., J. Hubbard, MCGraw-Hill Pub.
6. Numerical Recipes in C: The Art of Scientific Computing W.H Pressetal, Cambridge University
Press.
7. A First Course in Numerical Methods, U.M Ascher& C. Greif, PHI Learning.
8. Elementary Numerical Analysis, K.E.Atkinson, Wiley India Edition.
9. Numerical Methods for Scientists & Engineers, R.W. Hamming, Courier Dover Pub.
10. An Introduction to Computational Physics, T. Pang, Cambridge Univ.
11. Simulation of ODE/PDE Models with Matlab® , Octave and Scilab, Scientific and Engineering
Applications: A.V. Wouwer, P.Saucez, C.V.Fernandez. 2014 Springer.
12. Scilab by Example: M. Affouf 2012, ISBN: 978-1479203444.
13. Scilab(A free Software to Matlab): H.Ramchandran, A.S. Nair. 2011, S.Chand& Company.
14. Scilab Image Processing, Lamberr M.Surhone, 2010 Betascript Publishing.
CC(P)PHY105: SCIENTIFIC COMPUTATING & ELECTRONICS
LAB
A: Computational Physics
Students assigned the computer laboratory work will to develop & execute the following in
Phython/C/C++ & in METLAB/Scilab:
Python/C/C++-Programming
1. To evaluate a Polynomial :- (1) Converting Temperature from Fahrenheit to Celsius, (2) Area of a
Circle, (3) Volume of Sphere etc.
2. To find the Roots of a Quadratic Equation : Real and Distinct, Repeated and Imaginary.
3. To locate a Number in a Given List (linear search).
4. (i) To find the Largest of Three Numbers.
(ii) To find the Largest Number in a Given List of Numbers.
5. (i) To check whether a Given Number is a Prime Number.
(ii) To calculate the first 100 prime numbers.
6. To rearrange a List of Numbers in Ascending and Descending Order.
7. (i) To calculate Factorial of a Number.
(ii) To calculate the first few Factorials.
8. Manipulation of Matrices
(i) To Add and Subtract two Matrices.
(ii) To Multiply two Matrices.
Numerical Analysis Lab
I : Algebraic & Transcendental Equations
1. To find the Roots of an Algebraic Equation by Bisection Method.
2. To find the Roots of an Algebraic Equation by Secant Method.
3. To find the Roots of an Algebraic Equation by Newton-Raphson Method.
4. To find the Roots of a Transcendental Equation by Newton-Raphson Method .
II : Linear Equations & Eigenvalue Problem
1. To find the Roots of Linear Equations by Gauss Elimination Method.
2. To find the Roots of Linear Equations by Gauss-Seidal Iterative Method.
3. To find the Eigenvalue and Eigenvector of a Matrix by Iterative Method.
III : Interpolation
1. To form a Forward Difference Table from a Given set of Data Values.
2. To form a Backward Difference Table from a Given Set of Data Values.
3. To find the value of y near the beginning of a Table of values of (x, y).
4. To find the value of y near the end of a Table of values of (x, y).
IV : Curve Fitting, B-Splines & Approximation
1. To fit a Straight Line to a given Set of Data Values.
2. To fit a Polynomial to a given Set of Data Values.
3. To fit an Exponential Function to a given Set of Data Values.
4. To fit a natural Cubic B-Spline to a given Data.
V : Differentiation
1. To find the First and Second Derivatives near the beginning of a Table of values of (x, y).
2. To find the First and Second Derivatives near the end of a Table of values of (x, y).
VI : Integration
1. To evaluate a Definite Integral by Trapezoidal Rule.
2. To evaluate a Definite Integral by Simpson’s 1/3 Rule.
3. To evaluate a Definite Integral by Simpson’s 3/8 Rule.
4. To evaluate a Definite Integral by Gauss Quadrature Formula.
5. To evaluate an Integral by Monte Carlo Techniques
VII : Differential Equations
1. To solve a Differential Equation by Euler’s Method.
2. To solve a Differential Equation by Modified Euler’s Method.
3. To solve a Differential Equation by Second Order Runge Kutta Method.
4. To solve a Differential Equation by Fourth Order Runge Kutta Method.
VIII: Others
1. Fast Fourier Transform
2. Test of randomness for random numbers generators
3. Monte Carlo integration
4. Use of a package for data generation and graph plotting.
5. Test of randomness for random numbers generators
Note: Addition and deletion in the list of experiments may be made from time to time by the
department.
Part B : Electronics Laboratory
Unit I – Device Characteristics and Application
1. p-n junction diodes-clipping and clamping circuits.
2. FET – characteristics, biasing and its applications as an amplifier
3. MOSFET – characteristics, biasing and its applications as an amplifier.
4. UJT – characteristics, and its application as a relaxation oscillator.
5. SCR – Characteristics and its application as a switching device.
Unit II – Linear Circuits
1. Resonant circuits
2. Filters-passive and active, all pass (phase shifters)
3. Power supply-regulation and stabilization
4. Oscillator-design and study
5. Multi stage and tuned amplifiers
6. Multivibrators-astable, monostable and bistable with applications
7. Design and study of a triangular wave generator
8. Design and study of sample and hold circuits
Unit III – Digital Circuits, Microcontroller and Microprocessors
1. Combinational
2. Sequential
3. A/D and D/A converters
4. Digital Modulation
5. Microprocessor application
6. Microcontroller Application
Note: Atleast 10 Experiments from Each Group
Semester - II
Sem Course Code Course Name L T P Credit Marks Total Credit Total
Marks
II CCPHY201 Quantum Mechanics–II 3 1 0 4 100 22
CCPHY202 Statistical Physics 3 1 0 4 100 500
CCPHY203 Mathematical Physics 3 1 0 4 100
CCPHY204 Classical Mechanics 3 1 0 4 100
CC(P)PHY205 Optics & Modern Physics 0 0 6 6 100
Laboratory
Unit - III
Nuclear Models : Liquid drop model, Fermi Gas Model, Shell Model, Collective Model, Single
particle model of nucleus Magic numbers, spin-orbit coupling prediction of angler momenta of
nuclear ground states, Nuclear Energy levels and their applications. (10 L, 5 T/S/D)
Unit - IV
Reaction dynamics, the Q of Nuclear reaction, Compound nucleus formation and breakup, nuclear
fission and heavy ion induced reactions, fusio reactions, types of nuclear reactors. Theory of
striping reactions. Basic principles of (i) electron accelerator and (ii) ion accelerators. Linear
accelerator, cyclic accelerator Pelletron Electron gun, Radiation detectors; Gas detectors, Nal(Te)
detectors Semiconductor detectors, Radiation detector’s Gas detectors, Nal(Te) detector, Bubble
chamber, Cloud chamber, Spark chamber. (10 L, 5 T/S/D)
Unit - V
Elementary particle physics, Hadrons and leptons, their masses, spin parity decay structure, quarks
and gluons. Anti proton production in laboratory., Semiconductor detector. Gell-mann-Nishijima
formula, C, P and T invariance and applications of symmetry arguments to particle reactions, parity
non conservation in weak interactions etc. (10 L, 5 T/S/D)
Books :
1. Introductory nuclear Physics by Kenneth S. Krane, Wiley India Pvt. Ltd., 2008.
2. Concepts of nuclear physics by Bernard L. Cohen, Tata Mcgraw Hill, 1998.
3. Introduction to Elementary Particles by D. Griffith, John Wiley & Sons
4. Introductory Nuclear Physics by S.S.M. Wong, PHI
5. Theoretical Nuclear Physics by J.M. Blatt, & V.F. Weisskoff, John Wiley
6. Introduction to Nuclear Physics by H.A. Enge, Addison Wesley
7. Nuclear Physics by R.R. Roy, &B.P.Nigam, John Wiley
8. Introductory Nuclear Theory by L.R.B Elton, Sir Isaac Pitman & Sons Ltd.
9. Physics of the Nucleus byM.A. Preston, Addison Wesley
10. Quarks and Leptons by F. Halzen and A.D. Martin, Wiley India, New Delhi
11. Basic ideas and concepts in Nuclear Physics - An Introductory Approach byK. Heyde (IOP-
Institute of Physics Publishing, 2004).
12. Introduction to the physics of nuclei & particles by R.A. Dunlap. Thomson Asia, 2004.
13. The Atomic Nucleus by R.D. Evans, TMH
DSE : GROUP - A
DSEPHY-301 : SELECTED FROM GROUP A/B/C
Condensed Matter Physics-I (Elective)
Unit-I
Inter-atomic forces and bonding in solids: Forces between atoms, binding energy, cohesion of atoms
and cohesive energy, calculation of cohesive energy, bond energy of NaCl molecule, calculation of
lattice energy of ionic crystals, calculation of Madelung constant of ionic crystals, calculation of
repulsive exponent from compressibility data, Born-Haber cycle.
Diffusion in solids: Fick’s law of diffusion, determination of diffusion coefficients, diffusion couple,
applications based on second law of diffusion, atomic model of diffusion-electrical conductivity of
ionic crystals. (10 L + 05 T)
Unit-II
Imperfections in crystals: Classification of imperfections, crystallographic imperfections, point
defects, concentrations of Schottky and Frenkel defects, line defects, edge dislocations, screw
dislocation, Burgers vector, dislocation motion, stress fields around dislocations, observation of
dislocations, plane defects, grain boundaries, tilt and twin boundaries, surface imperfections - role
of dislocations in crystal growth. (10 L + 05 T)
Unit-III
Lattice vibrations and phonons: Elastic vibrations of continuous media, Group velocity of harmonic
wave trains, Wave motion of one dimensional atomic lattice, lattice with two atoms with primitive
cell, Some facts about diatomic lattice, number of possible normal modes of vibrations in a band,
phonons, momentum of phonons,
Thermal properties: Classical calculations of lattice specific heat, Einstein theory of specific heats,
Debye’s model of lattice specific heat, Debye approximation, An-harmonic crystal interactions,
thermal expansion, lattice thermal conductivity of solids- Umklapp process. (10 L + 05 T)
Unit-IV
Optical properties: Absorption process, photoconductivity, photoelectric effect, photovoltaic effect,
photoluminescence, color centers, types of color centers, generation of color centers-properties-
models and applications.
Elastic constants: Stress components. Analysis of elastic strains, elastic compliance and stiffness
constants, elastic energy density, stiffness constants of cubic crystals, elastic waves in cubic
crystals, waves in [100] direction, [110] direction, experimental determinations of elastic constants.
(10 L + 05 T)
References
1. Solid State Physics, AJDekker, MacmillanIndia Ltd, Bangalore, 1981.
2. Solid State Physics, C Kittel, V Ed, Wiley Eastern Ltd, 1976.
3. Elementary Solid state physics,MA Omar, AddisonWesley, New Delhi, 2000.
4. Solid State Physics, SO Pillai,New Age International Publication, 2002.
5. Solid State Physics, MA Wahab, Narosa Publishing House, New Delhi. 1999
6. Introduction to Solids, L Azoroff, Tata McGraw Hill publications, 1993.
7. Solid State Physics,HC Gupta,Vikas Publishing House, New Delhi. 2002
8. Introduction to Solid State Physics, Arun Kumar, PHI Learning Pvt. Ltd., New Delhi
9. Introduction to Solid State Physics, Arun Kumar, PHI Learning Pvt. Ltd., New Delhi
DSE(P)PHYS-302 : Selected from corresponding Lab
Condensed Matter Physics-I (Elective)
1. Analysis of X-ray powder photographs (NaCl, KCl, Cu)
2. Analysis of single crystal rotation photograph(NaCl)
3. Analysis of a backscattering of powder photograph of copper
4. Estimation of R-factor using X-ray diffractogram.
5. Calibration of electromagnet and magnetic susceptibility determination of magnetic salts
(MnSO 4 , MnCl 2 ) by Quincke’s method
6. Experiments with pn-junction (a) determination of n, Eg and dV/dt of pn -junction material
(b) determination of junction capacitance C D
7. Determination of Curie temp for a ferromagnetic material (Ni-Fe alloy)
8. Study of the temperature variation of conductivity (σ) and estimation of activation energy of
ionic solid.
9. Study of B-H curve of a Ferromagnetic material (both hard and soft).
10. Electrical resistivity of semiconducting Ge sample using four probe method.
DSE : GROUP - B
DSEPHY301 SELECTED FROM GROUP A/B/C
Laser and Spectroscopy – I (Elective)
Unit – I
Interaction of Matter with radiation: Interaction of electromagnetic radiation with matter, Einstein
coefficients (2 level system interacting with radiation) Beer’s law- attenuation and amplification of
light. Width and shape of spectral lines: natural broadening-derivation of line shape, Doppler
broadening-estimation of half width, Voigt profiles, transit time broadening, power broadening,
pressure broadening. (10 L + 05 T)
Unit - II
Molecular symmetry: Review of definition and properties of a Group. Molecular symmetry
elements and symmetry operations: Notations, symmetry classifications of molecular point groups:
C 2v and C 3v point groups.
Matrix representation of symmetry operations, geometric transformations. Reducible and
Irreducible representation for simple molecules such as NH3 and H2O. Great Orthogonality
Theorem, character table for C 2v and C 3v point groups. (10 L + 05 T)
Unit-III
Spin resonance spectroscopy-A:Basic principles of NMR, absorption and resonance condition,
Relaxation processes: concepts of spin-lattice relaxation and spin-spin relaxation, Line broadening
and dipolar interaction, MASS experiment, chemical shift, spin-spin coupling, First order spectra,
nomenclature for spin systems, Chemical equivalence and magnetic equivalence of nuclei.
Techniques for observing nuclear resonances in bulk materials, continuous wave, pulsed and FT-
NMR, chemical analysis using NMR. (10 L + 05 T)
Unit-IV
Spin resonance spectroscopy-B:Electron spin and magnetic moment, Basic concepts of ESR,
characteristics of g-factor and its anisotropy, nuclear hyperfine interaction, Spin Hamiltonian, ESR
of organic and inorganic radicals: equivalent and non-equivalent sets of nuclei, experimental
technique and ESR spectrometer (Block diagram level). Basic principles of NQR, nuclear
quadrupole interaction, fundamental requirements of NQR.
Electron Nuclear Double Resonance (ENDOR)-General treatment of an ENDOR experiment in a
system with s = 1⁄2 and I = 1⁄2. Advantages of ENDOR over ESR. (10 L + 05 T)
References
1. Physics of atoms and molecules, Bransden and Joachain, 2 nd Edition, Pearson Education, 2004.
2. Fundamentals of Molecular Spectroscopy, Banwell and McCash, Tata McGraw Hill, 1998.
3. Modern Spectroscopy, JM Hollas, John Wiley, 1998.
4. Molecular Quantum Mechanics, PW Atkins and RS Friedman, 3 rd Edition, Oxford Press, 2004.
5. Spectra of Atoms and Molecules, P Bernath, Oxford Press, 1999.
6. Molecular Spectroscopy, JL McHale, Pearson Education, 1999.
7. Atomic Physics, CJ Foot, Oxford University Press, 2008.
8. Introduction to Magnetic Resonance Spectroscopy: ESR, NMER, NQR, 2 nd Edition, DN
Sathyanarayana, IK
International Publishing House Ltd, 2014.
9. Basic Principles of Spectroscopy, Raymond Chang, McGraw-Hill Kogakusha Ltd, 1971.
10. Chemical Applications of Group Theory, F Albert Cotton, 3 rd Edition, John Wiley and Sons,
1990.
DSE(P)PHYS-302 : Spectroscopy & Laser I I(Elective)
1. Determination of g-factor for standard ESR sample using portable ESR spectrometer
2. Ion trap (q/m determination) quadrupole AC trap
3. CCD spectrometer to record absorption bands of Iodine molecule
4. CCD spectrometer to record band spectrum of AlO
5. Analysis of band spectrum of PN molecule
6. Analysis of Rotational Raman spectrum of a molecule
7. Twyman-Green interferometer
8. Fabry-Perot interferometer experiments
9. Zeeman effect experiment
10. Numerical aperture and bending loss of optical fiber.
11. Wavelength of laser by diffraction method (Transmission grating).
12. Wavelength of laser by diffraction method (Reflection grating).
13. Wavelength of laser by interference method.
14. Determination of spin coupling constant from NMR spectrum of a molecule
DSE : GROUP - C
DSEPHY 301 Selected from Group A/B/C
ELECTRONICS A ND COMMUNICATION – I
Operational Amplifier: Operational amplifier (op amp) types, salient features, parameters and
modeling, Voltage op amp based circuits such as:
- Instrumentation amplifier (IA)
- Negative impedance converter (NIC)
- Inductance simulation
- Precision rectification
- Active Butterworth low pass, high pass and band pass 2 nd order filters
Simulation of differential equations
- Analog multiplier and its use in integer power generation, frequency multiplication, divider and
generation of fractional powers
D/A and A/D converters
20 Lectures
Current Conveyor: Current conveyor types, their salient features, modeling and simple applications
in realizing bandwidth independent gain amplifier, Current conveyor based differentiator, integrator,
adder and instrumentation amplifier, Advantages of current conveyor based circuits over the
conventional voltage op amp based circuits.
BJT Logic Families: TTL logic NAND gate circuit, ECL logic OR/NOR gate circuit, analysis and
evaluation of logic parameters.
MOS Logic Families: NMOS inverter circuit and its analysis with linear and non-linear loads,
CMOS inverter.
Radar: Basic arrangement of radar system, Azimuth and range measurement, Operating
characteristics of a radar system, Derivation of radar range equation.
Antenna: Antenna action, Short electric doublet, Linear array of n isotropic sources of equal
amplitude and spacing, Broad-side array, Ordinary end-fire array, End fire array with increased
directivity, Beam width of the main loab, Yagi antenna, Resonant and non-resonant array
arrangement
Satellite Communication: Orbital and geostationary satellites, Orbital patterns, Look angles,
Satellite system, Link modules.
Books Suggested:
1. A first course in Electronics, A.A.Khan &K.K.Dey, Prentice Hall India.
2. Basic Electronics, Arun Kumar, Bharati Bhawan
3. Millman&Brabel, “Microelectronics”, McGraw-Hill (International Students’ Edition).
4. Mitchell & Mitchell, “Introduction to Electronics Design”, Prentice-Hall of India.
5. Nagrath, “Electronics: Analog and Digital”, Prentice-Hall of India.
6. Soclof, “Design and Applications of Analog Integrated Circuits”, Prentice-Hall of India.
7. Gayakwad, “Op-Amps and Linear Integrated Circuits”,3/e, Prentice-Hall of India
8. Sedra& Smith, “Microelectronic Circuits”, 3/e, Sounders College Publishing.
9. Microwave and Radar Engineering Kulkarni, Umesh Publication.
10. Electromagnetic Waves and Radiating Systems: Jordan, PHI
11. Hand Book of Electronics, Gupta & Kumar, PragatiPrakashan, Merrut.
12. Electronics Communications: RoddyCoolen, PHI
13. Electronic Communication: Kennedy & Davis, TMH
DSE(P)PHY302: SELECTED FROM CORRESPONDING LAB
ELECTRONICS AND COMMUNICATION
L AB I
Credits: 6 Hrs. per week: Total Marks: 100
Time: 6 Hrs.
1. Operational amplifier parameters measurements and their dependence on frequency.
2. Basic operational amplifier configurations: inverting amplifier, non-inverting amplifier, voltage
follower, differentiator, integrator and instrumentation amplifier.
3. Butterworth second order active low pass and high pass filters.
4. Studies on second order band-pass and band-elimination active filters.
5. Precision rectification: half- and full- wave.
6. Design and study of Wein bridge oscillator circuit.
7. Design and study of op amp based square wave oscillator.
8. To draw the characteristic curve of SCR and to determine its holding voltage, holding current and
break-over voltage
9. Use of IC 555 timer.
10. To simulate electronic circuits using Pspice/ MultiSim.
11. BCD adder and subtractor.
12. DIAC and TRIAC characteristics and applications.
PRPHY-301 : Dissertation - I
I Course Objective:
This course is focused to facilitate student to carry out extensive research and development project
or technical project at place of work through problem and gap identification, development of
methodology for problem solving, interpretation of findings, presentation of results and discussion
of findings in context of national and international research. The overall goal of the dissertation is
for the student to display the knowledge and capability required for independent work.
II Course Learning Outcomes (CLOs):
The student will be able to
• gain in-depth knowledge and use adequate methods in the major subject/field of study.
• create, analyze and critically evaluate different technical/research solutions
• clearly present and discuss the conclusions as well as the knowledge and arguments
• that form the basis for these findings
• identify the issues that must be addressed within the framework of the specific
• dissertation in order to take into consideration
III Project Allotment: On the first day of 3rd semester, a common guidelines will be provided to
the students & within a week the field/ title & supervisor will be decided by the departmental
council. It may be theoretical, experimental & computational in nature. The student should work
continuously as per the credit hour under the supervision of Guide. The final Master’s Dissertation
will be uploaded on the Departmental website, archives & on INFLIBNET.
IV Project Submission & Evaluation
At the end of third semester, the students will submit the soft binding of report in three
copies (Dept., Guide & Candidate). The student will prepare a presentation & present it in front of
External Examiner, Faculty members of Dept. & students of the Department. The dissertation will
be evaluated according to the relevance of topic, intensity of actual work done, conceptual
understanding of the work. The marking guidelines are following
• Marks Awarded for 2 Reviews (20 + 20) (Guide + External Examiner) = 40 Marks
• Evaluation of the Dissertation (20 + 20) : (Guide + External Examiner) = 40 Marks
• Presentation (15 Min) followed by Viva-voce Examination (05 Min) : 20 Marks
Total : 100 Marks
Semester - IV
Sem Course Code Course Name L T P Credit Marks Total Total
Credit Marks
IV CCPHY401 Electromagnetic Theory 3 1 0 4 100 24 500
CCPHY402 Modern Experimental Techniques 3 1 0 4 100
DSEPHY401 Selected from group A/B/C 3 1 0 4 100
DSE(P)PHY402 Selected from corresponding Lab 0 0 6 6 100
PRPHY401 Dissertation - II 0 0 6 6 100
DSE : GROUP - A
DSEPHYS-401 : Condensed Matter Physics-I I(Elective)
Unit-I
Crystal Physics: Introduction, symmetry elements of crystals, concept of point groups, derivation of
equivalent point position, experimental determination of space groups, expression for structure
factor, analytical indexing, Weissenberg and rotating crystal method, Determination of relative
structures, amplitudes from measured intensities, Multiplicity factor, Lorentz polarization factor,
Reciprocal lattices, concept of reciprocal lattice, geometrical construction, relation between
reciprocal lattice vector and inter-planar spacing, properties of reciprocal lattice. (10L + 5T)
Unit-II
Energy bands in solids: Elementary ideas of formation of energy bands, Bloch function, Kronig-
Penney model, number of states in a band, Energy gap, Distinction between metals, insulators and
intrinsic semiconductors, concept of holes, equation of motion for electrons and holes, effective
mass of electrons and holes.
Nearly free electron approximation, Tight binding method of energy bands-applications to cubic
system, orthogonalized plane wave method, Wigner-Seitz method, pseudo, potential method. Fermi
surface studies and Brillouin zones characteristics of Fermi surfaces. (10 L + 5 T)
Unit-III
Ferroelectrics: General properties of ferroelectric materials, Classification and properties of
representative ferroelectrics, The dipole theory of ferroelectricity, objections against the dipole
theory, ionic displacements and behaviour of BaTiO 3 above the Currie temperature, The theory of
spontaneous polarization of BaTiO 3 ,
Thermodynamics of ferroelectric transitions, ferroelectric domains. (10 L + 5 T)
Unit-IV
Films and surfaces: Preparation - Thermal Vapour Deposition, Chemical Vapour Deposition, laser
ablation, Molecular Beam Epitaxy, study of surface topography by multiple beam interferometry,
conditions for accurate determination of step height and film thickness Fizeau fringes, Electrical
conductivity of thin films, difference of behaviour of thin films from bulk material, expression for
electrical conductivity for thin film. (10 L + 5 T)
References
1. Crystallography Applied to Solid State Physics, AR Verma and ON Srivastava 2 nd edition, New
age International publishers, 2001.
2. Solid State Physics, AJDekker, MacmillanIndia Ltd, Bangalore, 1981.
3. Solid State Physics, C Kittel, V Ed, Wiley Eastern Ltd, 2013.
4. Elementary Solid state physics, MA Omar, Adison Wesley, New Delhi,2000.
5. Solid state Physics, SO Pillai. New age international publication, 2002.
6. Solid state Physics, MA Wahab, Narosa publishing house, New Delhi., 1999.
7. Introduction to Solid state physics, L Azoroff, Tata McGraw Hill publications,1993.
8. Solid State Physics, H.C. Gupta, Vikas publishing house, New Delhi,2002.
DSE(P)PHYS-402 : Condensed Matter Physics-I (Elective)
1. Magnetic susceptibility of Ferrous ammonium sulphate by Gouy’s balance method
2. Temperature variation of dielectric constant and determination of Curie point of a Ferro
electric solid PZT (Lead Zirconium Titanate)
3. Thermo-stimulated luminescence of F-centre in Alkali halide.
4. Hall effect experiment in semiconductors.
5. Determination of Fermi energy of copper.
6. Determination of Plank’s constant using LED’s
7. Determination of energy gap of a semiconductor using diode.
8. Determination of Solar cell characteristics
9. Energy band gap of a thermistor
10. Determination of lattice parameter using Bernal Chart
DSE : GROUP - B
DSEPHY401 Laser and Spectroscopy – I I(Elective)
Unit-I
Absorption spectroscopy: Basic principles, Beer - Lambert law, Molar extinction coefficient,
Intensity of electronic transitions. Types of electronic transitions. Franck - Condon principle,
Ground and excited electronic states of diatomic molecules. Electronic spectra of polyatomic
molecules, Electronic spectra of conjugated molecules - dissociation and pre-dissociation spectra,
UV-Visible spectrophotometer - Principles and Instrumentation, Applications. (10L + 5T)
Unit-II
Fluorescence spectroscopy: Jablonski diagram; characteristics of fluorescence emission - Stokes
shift, mirror image rule; solvent and environmental effects on fluorescence; lifetimes and quantum
yields; Fluorescence quenching: mechanism and dynamics; Fluorescence anisotropy;
Spectrofluorimeter - Principles and Instrumentation, Applications. (10L + 5T)
Unit-III
Laser Raman spectroscopy: Review of Raman scattering and Raman spectrum of diatomic and
linear polyatomic molecules, molecular polarizability, Polarization of Raman lines, Depolarization
ratio and its determination, Resonance Raman scattering. Application of Raman spectroscopy to
study phase transitions and proton conduction in solids. Non- linear effects of Raman scattering:
General principles. Hyper Raman effect, Inverse Raman effect, stimulated Raman scattering,
Principle and experimental technique. (10L + 5T)
Unit-IV
Mossbauer spectroscopy: Mossbauer effect, recoilless absorption and emission of gamma rays,
basic principles of gamma ray fluorescence spectroscopy, hyperfine interaction, chemical isomer
shift, magnetic hyperfine and quadruple interaction and interpretation of spectra. Mossbauer
isotopes, applications to study magnetic materials. (10L + 5T)
References
1. Fundamental of Photochemistry, KK Rohatgi-Mukherjee, New Age International Ltd, New Delhi,
1986.
2. Principles of Fluorescence Spectroscopy, 3 rd Ed, JR Lakowicz, Springer, New York, 2006.
3. Fundamentals of Molecular Spectroscopy, Banwell and McCash, Tata McGraw Hill, 1998.
4. Modern Spectroscopy, JM Hollas, John Wiley, 1998.
5. Molecular Quantum Mechanics, PW Atkins and RS Friedman, 3 rd Edition, Oxford Press, 2004.
6. Spectra of Atoms and Molecules, P Bernath, Oxford Press, 1999.
7. Molecular Spectroscopy, JL McHale, Pearson Education, 1999.
8. Mossbauer effect, Principles and application, GK Wathaim, Academic Press, New York, 1964.
9. Mossbauer effect and its applications, VG Bhide, Tata McGraw Hill publications, 1973.
DSE : GROUP - C
DSE(P)PHYS-402 : Electronics & Communication II (Elective)
Transmission line: Types of transmission line, distributed parameters, voltage and current relations
on a radio frequency transmission line with respect to sending and receiving ends, propagation
constant (γ), attenuation constant (α) and phase constant (β), expressions for α and β, transmission
line distortion and attenuation, conditions for no distortion, low distortion and low loss, line
termination across a short circuit, open circuit pure resistance and complex impedance, quarter
wave and half wave lines and their impedance matching properties.
Wave Guide: Field expression for propagatingTE and TM waves in hollow circular cylindrical wave
guides, Impossibility of TEM waves in hollow wave guide, Attenuation in wave guides and Q-
factor.
Fiber Optic Communication: Principle of light transmission in a fiber. Light sources for fiber optic
communication, Effect of index profile on propagation, Modes of propagation, Number of modes a
fiber may support, Single mode fiber (SMF), Losses in fibers.
Microprocessor Architecture: 8085 Microprocessor Architecture, Real Mode and protected modes
of memory addressing, memory paging.
Addressing Modes: Data addressing modes, Program memory addressing modes, stack memory
addressing modes.
Instruction Set: Data movement instructions, arithmetic and logic instructions, Program control
instruction, Assembler details.
Interrupts: Basic interrupt processing, Hardware interrupt. Expanding the interrupt structure 8259A
PIC.
Direct Memory Access: Basic DMA operation, 8237 DMA controller, Shared Bus operation Disk
Memory systems.
Books Suggested:
1. Miah, “Fundamentals of Electromagnetic”, TMH
2. Mano, “Computer System Architecture”, Prentice-Hall of India.
3. Goankar, Microprocessors Architecture, Programming & Applications with
8085,
4. Senior, “Optical Fiber Communications: Principles and Practice”, 2/e,
Prentice-Hall.
5. Jordon &Balmain, “Electromagnetic waves and Radiating Systems”,
Prentice-Hall of India.
DSE(P)PHYS-402 : Electronics & Communication (Elective)