Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Project: sem8
Views: 894
1
\documentclass[prb,11pt]{revtex4-1}
2
3
% set font encoding for PDFLaTeX or XeLaTeX
4
\usepackage{ifxetex}
5
\ifxetex
6
\usepackage{fontspec}
7
\else
8
\usepackage[T1]{fontenc}
9
\usepackage[utf8]{inputenc}
10
\usepackage{lmodern}
11
\fi
12
13
\usepackage{amsmath} % need for subequations
14
\usepackage{graphicx} % need for figures
15
\usepackage{verbatim} % useful for program listings
16
\usepackage{color} % use if color is used in text
17
\usepackage{subfigure} % use for side-by-side figures
18
\usepackage{hyperref} % use for hypertext links, including those to external documents and URLs
19
% \usepackage{url}
20
\raggedbottom % don't add extra vertical space
21
22
\graphicspath{{./images/}}
23
24
\begin{document}
25
26
\title{Determining size and geometry of the particles from the
27
polarisation change of the light scattered from the particles}
28
29
\author{Aman Abhishek Tiwari}
30
\author{Dr. Pankaj Jain(Supervisor)}
31
\affiliation{Indian Institute of Technology Kanpur, Department of Physics}
32
33
\date{\today}
34
35
\begin{abstract}
36
An important problem in atmospheric physics is to characterize the ambient aerosol
37
distribution. While a majority of current laser-based detectors can measure the size
38
spectrum of the scattering particles, they do not give information about the geometry
39
of the scatterers. We aim to compute the effect of the scatterers on the polarization
40
of the incoming radiation and to use the measured radiation to infer the size as well
41
as the geometry. In order to do so, we will write a code to solve Maxwell’s equations
42
for arbitrary geometries using the Discontinuous Galerkin method and then use this
43
code to explore the effect of scatterer geometry on the incoming radiation. In this
44
article we try to find the time evolution of the $1D$ and $2D$ wave equations using
45
the discontinuous Galerkin method.\end{abstract}
46
47
\maketitle
48
49
\section{Introduction}
50
Light based aerosol counters are used to determine the size distribution of
51
particles in the air. An optical aerosol counter \cite{wiki:particle_counter}
52
determines the size distribution
53
by analysing the light scattered by the particles. It works by illuminating the
54
sample with a LASER beam, which gets scattered by the particles. A detector is
55
used to detect the scattered radiation. By analysing the scattered radiation, it
56
determines the size distribution of the particle.
57
58
The problem with these aerosol counters is that they assume spherically shaped
59
particles. They also discard information about the polarisation changes in the
60
scattered light which can be helpful in finding more information about the shape
61
and size of the particles. In this research, we assume ellipsoidal shaped particles
62
and use the polarisation change of the scattered radiation to determine the
63
parameters describing the ellipsoid.
64
65
To find the shape and size distribution of the particles from the scattered
66
radiation, we plan to numerically calculate the scattering solution for particles
67
of different shape and size parameters present in the medium. By doing this
68
iteratively for different number of particles, with varying shape and size
69
parameters, we plan to get the given scattering solution.
70
71
A Maxwell's equation solver needs to be developed to determine the scattering
72
solution. To find the scattering solution we are developing a Maxwell's equation
73
solver using the discontinuous Galerkin method. In this article we try to find the
74
solution of the $1D$ and $2D$ wave equation using the discontinuous Galerkin method.
75
Developing these solvers are the primary steps towards the development of the full
76
Maxwell's equation solver.
77
78
\subsection{Earlier Work}
79
This project is a continuation of the project I took in the last semester. By the
80
end of the last semester we managed to develop an Advection equation solver for
81
1D domain. Prototype code for 2D Advection solver was also written and tested.
82
83
\pagebreak
84
85
\section{Objectives}
86
\begin{itemize}
87
\item Modify the Advection equation solver to solve the Maxwell's equations with
88
reflective boundary conditions for both 1D and 2D case.
89
\item Enhance the 2D Advection equation solver to work for Arbitrary shaped meshes.
90
\item Parallelize the Advection equation solver.
91
\item Obtain the scattering solutions numerically using the Maxwell's equations
92
solver and compare it with the analytically calculated scattering solution.
93
\end{itemize}
94
95
\section{Methods}
96
We use the Nodal Discontinuous Galerkin method to solve the Advection equations.
97
We divide our domain of interest in a mesh. We use $2^{nd}$ order quadrangular mesh
98
for solving the Advection equation in 2D.
99
100
\section{Plan}
101
I have planned to finish the listed tasks by the given dates.
102
\begin{enumerate}
103
\item {\bf January 30, 2018:} Get numerical solutions for Maxwell's equations being
104
solved inside a metallic cavity (using both 1D and 2D solver).
105
106
\item {\bf February 10, 2018:} Modify the 2D Advection solver to work for arbitrary
107
shaped mesh made of $\mathrm{2}^{\mathrm{nd}}$ order quadranular elements.
108
109
\item {\bf February 18:} Code cleanup and refactoring.
110
111
\item {\bf March 1, 2018:} Parallizing the 1D and 2D Advection equation solver.
112
113
\item {\bf Before End-semester:} Modify the code to obtain the scattering solution
114
for particles of arbitrary geometry and test the scattering solution against the
115
analytically obtained solution.
116
\end{enumerate}
117
118
119
\section{Comments}
120
One of the hurdles is that the solver is very slow even when running on GPU.
121
The code has to be parallelized so that numerical solution can be obtained to
122
increase the simulation speed.
123
124
\end{document}
125
126