Antenna for 4G Modem

Current reading: SINR/RSRP: 20 dB / -95 dBm. Do I need an antenna? Not sure. Would it be fun to make an antenna? Certainly! So let's get started:)

Simulation accuracy

First, I want to make sure that openEMS (the modeling system I plan to use) is calculating correctly. Let's take the antenna impedance data from the book 1.

Antenna impedance graphs
Impedance versus antenna perimeter

I am interested in the graph on the right, namely the fact that with the perimeter of one square equal to \approx1.09\lambda , the reactance Z_{i-img} = 0 .

Let's draw only the top square of the antenna, the feed gap is on the left:

Half of the antenna
Top half of the antenna

The antenna is a square wire with a side of 0.1988mm , effective radius =0.58\cdot0.1988=0.11530mm , the length of the full side of the square is 28.826mm , the feed gap is equal to 1.4142mm . Thus, the perimeter of the antenna is 4 \cdot28.826-1.4142 = 113.89mm .

After simulation EndCriteria = 1.e-6, OverSampling = 10 I get the resonant frequency 2.865GHz :

directivity: Dmax = 3.0867 dBi
Minimum SWR frequency:
 2840000000
Resonant frequency (jX=0):
 2865000000
Impedance at minimum SWR:
 129.502 -  13.569i
Impedance at resonant frequency:
 133.07147 -   0.41565i
Minimum SWR:
 2.6234

From the frequency I find the wavelength: 104.64mm and the theoretical perimeter: 104.64 \cdot1.09 = 114.06mm .

Hence the discrepancy between theory and simulation: |114.06-113.89| = 0.16717mm . The source code of the simulation can be downloaded here.

Given the artisanal nature of production, this accuracy suits me:)

Antenna geometry

In theory, an antenna is two squares connected by "vertices", where the connection point is the feed point of the antenna. But I will be dealing with a real copper wire (there is a height and thickness), which bends with a certain radius, as well as with a real soldering iron, so that the geometric model will look like this:

Graphic model of Kharchenko antenna
Graphic model of Kharchenko antenna

The dotted lines are auxiliary geometry, the red curve is the center of the wire from which the antenna is made, the radii of all arcs are equal to R_c (here c means the center).

At this point, I will need the characteristics of my copper wire. It just so happened that I had a lot of rectangular copper wire at hand, so I will be guided by this type of wire.

Copper wire
My copper wire

The rectangular cross-section of the wire is described by the width ww and the height wh , wh> = ww , hence it is clear how the wire will bend --- I can ignore wh in the geometric model, but ww will play an important role in describing the feed gap.

Feedpoint model
Feedpoint model

Here R_i is the radius of the inner surface of the wire, R_o is the radius of the outer surface of the wire. As you know, the angle between the radius of the circle and the tangent to the circle at this point is equal to 90^{\circ} , all angles in the models are equal to 45^{\circ} or 90^{\circ} .

I took the gap between the wires for powering equal to 1mm, from here:

port\_length = 1 + ww

Because of the need to have the feed gap, I slightly moved the "squares" apart, the measure of the "extension" is 2:

dR =R_c\cdot\sqrt2 - R_c - \frac{port\_length}{2}

All arcs have length delta\_port=\frac{2\cdot\pi R_{c}}{4} . The choice of a name for the variable is not really appropriate, but as it is :) Let's compose a system of equations describing the relationship between the elements of the structure:

\left\{\begin{array}{c} 2\cdot delta\_port + quad\_small + quad\_big=2\cdot quad\_size\\ quad\_small = quad\_big - dR\cdot\sqrt2 \end{array}\right.

The first equation of the system reflects the fact that the perimeter of one "square" should be related to the "quarters" of the wavelength. The second equation introduces the relationship between the lengths of the sides of the "square", it is not as obvious as the first equation, but it is derived quite simply.

I solve the system in Maxima:

(%i1) eq0:2*delta_port + quad_small + quad_big = 2*quad_size;
(%o1)         quad_small + quad_big + 2 delta_port = 2 quad_size
(%i2) eq1:quad_small = quad_big - dR*sqrt(2);
(%o2)                 quad_small = quad_big - sqrt(2) dR
(%i3) solve([eq0, eq1], [quad_small, quad_big]);
                     2 quad_size - 2 delta_port - sqrt(2) dR
(%o3) [[quad_small = ---------------------------------------,
                                        2
                         2 quad_size - 2 delta_port + sqrt(2) dR
              quad_big = ---------------------------------------]]
                                            2

The quad\_small and quad\_big unambiguously set the antenna model (as a function of wire parameters, radius of curvature and wavelength), now I can proceed to simulation.

Simulation

After I got my hands on modeling simple dipole antennas and a simple loop antennas, creating a model for Kharchenko's antenna was not too difficult (full text of the model). The mathematical model was described above, I chose the parameters based on common sense and materials available:

  • ww = 1.3mm , wh = 2.2mm - my wire,
  • Feed\_R=50 Ohm - coaxial wire resistance,
  • R_c=4mm - I think this is a more or less normal rounding radius,
  • reflector\_size - must be at least wavelength.

But the size of the side of the "square" quad\_size = \frac{\lambda}{4} \cdot0.973` I selected by running the simulation and achieving the minimum s_{11} at my frequency of 2.6 GHz. And after that, I selected the distance from the middle of the wire to the reflector reflector\_off , achieving a resistance of 50Ohm ( Zin_{real} = 50 , Zin_{imag} = 0 ).

To reduce the calculation time while maintaining accuracy, I took advantage of the ability to specify an uneven mesh:

Mesh for antenna calculation
Mesh for antenna calculation

I tried to do so that as many surfaces as possible coincided with the grid lines: these are the wire planes along the X axis, the reflector plane and the antenna feed gap.

Here are some more snapshots of the mesh and model:

1.
^ Antenna Theory and Design. Warren L. Stutzman, Gary A. Thiele
2.
^ These \sqrt2 appear due to the aspect ratio in a right triangle with angles of 45^\circ : c = a \cdot \sqrt2 and a = \frac{c}{\sqrt2}

The actual simulation results:

Input impedance of Zin_real antenna
Input impedance of Zin_real antenna
Input impedance of Zin_imag antenna
Input impedance of Zin_imag antenna
S11
S11

Antenna directivity simulation video

directivity: Dmax = 10.6344 dBi I will count on this result.