Hi I'm a computer science graduate and I am working on a computer program to find out the radar cross section of an object in 3d space. I would be really grateful if some one can help me out in some physics problems here. The idea is basically to simulate a plane wave as a dense grid of parallel rays and follow each ray as they travel in the medium, how they get reflected etc. If the power density of the incident plane wave is Pi, then the body will intercept a power equal to RCS * Pi. This power it will scatter uniformly in all possible direction as in the far field, the body is as good as a point isotropic source. So, the scattered power density at a distance r is given as:
Ps = (RCS * Pi)/4 * PI * r^2 (Spherical spreading of the rays reflected of the surface)
thus,
RCS = 4 * Pi * r^2 *(Ps / Pi)
in far field, r-> infinity
The formula can also be written in terms of electric field.
RCS = 4 * pi * r^2 * |Es|^2 / |Ei|^2
where Es is scattered electric field as seen at a distance r from the target and ei is the incident electric field.
So basically what I want to do is:
1. See where each incident ray intersects the object. Based on this calculate the electric field at the point of intersection. To find the total electric field which is incident, do the same for every ray and take a summation.
2. To calculate the Es or scattered electric field, I will follow each reflected ray(specular reflection is only considered) or scattered ray and see where it intersects a bounding sphere of radius r. At that point calculate the electric field. Do this for all the scattered rays and take the summation to find the total electric field scattered. If a huge number of rays are taken and the mesh is really fine, I believe one can get results very close to an isotropic type of radiation.
3. Take the square of magnitude of electric field vectors and substitute it in the RCS formula.
I was reading a thesis and the formula given for the electric field along a ray traveling through the space was:
E(s) = E(0) * exp(-jks) -------( 1 )
where
E(s) is electrical field at a distance s(along the direction of propogation of the wave) from the reference point (say F0). E(0) is electrical field at reference point F0. k is the wave number 2 * PI / wavelength. exp(-jks) represents the phase variation of electric field along the ray.
There was a formula given for the ray which has been reflected off a
surface as well. It was like this:
E(s) = Eincident(Q) * R * exp(-jks) / s ----------- ( 2 )
where Q is the point at which reflection took place and Eincident(Q)
is the electrical field incident at the point Q. R is the reflection
matrix. According to thesis the reflection matrix is given as:
-1 0
0 1
My problem with these formulas are as follows:
1. Shouldn't E(s) and E(0) be 3d vectors ? In my program the user should specify the source electric field magnitude and i have already figured out the direction of electric field vector given the direction vector for the plane wave. So shouldn't that be sufficient or some more information is required.
2. What is the point of having a complex phase ? If E(0) was defined to be a 3d vector, then E(s) becomes a complex vector ( a vector whose components are complex numbers) due to multiplication with exp(-jks). Or it could be that E(0) is a complex vector, so that would make E(s) also a complex vector. The reflection matrix makes perfect sense to me because at the plane of incidence, the direction of the horizontal component of the electric field gets reveresed after the reflection whereas the direction of the vertical component remains the same.
Some one please help me out.