Science topic
Electromagnetic Engineering - Science topic
Explore the latest questions and answers in Electromagnetic Engineering, and find Electromagnetic Engineering experts.
Questions related to Electromagnetic Engineering
I'd like to address one of my concerns regarding multiline TRL calibration. After calibrating a frequency, I occasionally did not get the expected result. If you look at my attachment, you'll notice that after calibration in some frequency ranges, it shows a sharp curve above 0dB (sometimes).
Is there anyone who can say me why this type of error occurred?
I do not have anything to test but if you can point me in the right direction? Looking for what is the relative permittivity for the Felt fabric?
Hi, I am trying to perform mesh convergence and I found out there is no stable temperature value I obtained. So, I calculated the skin depth and it was around 0.00011mm. It is so small in micrometer level while my tool is of 5mm thick in 2D. How can I mesh for such a low value? I tried but the temperature is still not stable and temperature varies and not stable. Can someone help me overcome this situation. You can see the picture attached below. A coil is placed above the tool alone at a certain distance. I am unable to proceed. Any help or suggestions would be nice. thank you :)
I am trying to design a CPW-GCPW tapered transition. Can anyone recommend a book or a reference for these types of transition structures? (Like how to calculated the tapered length etc.)
My computer suddenly restarted itself. Then I can't read/open my most recent working project? Is it possible to read/open it?
It is very important to open this file. I've attached a screenshot of the error.
Thank you in advance..
I've included an example picture. Is this transition followed by Quarter Wave transfer rules? or, Can anyone assist me in properly identifying this transition section?
I am actually feeding the spiral from the edge. so, at the end of one spiral arm, I have a feed. impedance matching I am not worried about right now. Now, I am trying to get a 180 deg phase shift. I am stuck how to do that. I have already tried wilkinson power divider. It did not work. Please advise. I will really appreciate.
Thank you.
In the circular monopole antenna with partial ground plane is there to make it ultra wide band or match the impedance of circular patch?
Please clear this confusion for me? Because, usually, we do inset feed to match the impedance. here we are not doing inset feed but edge feed. so, the purpose of partial ground plane is just to increase the bandwidth of antenna or to match the impedance as well?
So, if I have data of one linear polarization and then 90 deg to the first polarization. How can I calculate these two amplitudes and phases so that it will be right hand circular polarized? Please guide
Dear Researchers, hopefully someone can help me here:
I built a 2D model in COMSOL, of a simple three-layer covered conductor, surrounded by air.
This cable is for aerial power lines ,
Now, I need to compute the "Dielectric Strenght", this property is given in (V/m) or (kV/mm), of the most outer layer of the Cable.
Does anyone know how to do this in COMSOL ?
Best Regards !
I am trying to design a PIN Diode switch for a WR90 Rectangular waveguide ( X - Band) using HFSS software. I have learnt from some discussion that PIN Diode can be modelled using sheets and boundaries but how exactly that model i can use inside a waveguide as a switch? what are the parameters or extra devices i need to add? I couldn't find any open publications on PIN Diode switch in x-band rectangular waveguide Can someone recommend me some books or publications or blogs for better understanding of PIN Diode simulation in HFSS inside a waveguide.
Dear Researchers :
Hope someone can help me to understand this :
In the Power Energy Industry, most o the insulators and Accesories/Elements in contact with the Electric Power Lines are made of Dielectric Materials such as Polyethylene, or Silicon Rubber (an Elastometer).
But all these materials should to be able to withstand Electrical Breakdown phenomena, like Partial Discharges in the interior of the Material, Electrical Treeing and Electrical Tracking.
Aiming for this, it is required, in the technical literature, and from Manufacturers' standards, to use Materials with low Dielectric Constant (Relative Permittivity)
But, What is the relationship between the Dielectric Constant and the phenomenon of Electrical Breakdown in a Dielectric Medium ?
How should I understand this ?
Best Regards to all !
Other than LATEX, is there any tool/software to write a technical book where we can add figures and write equations
I am looking to estimate or quantify the force exerted upon a piece of ferromagnetic material by a magnet or electromagnet through a couple of walls made from different material each.
My understanding is that the force "felt" by the ferromagnetic material will decay the farther away it is from the magnet and also due to the different material the walls are made of.
Currently my target would be to find an array of variables that can create a radial force of about 10 N the pushes the ferromagnetic towards the magnets.
I attached a picture to better explain.
I appreciate any response that might help calculate this.
HFSS and Maxwell were made by Ansoft in the last century, and there actually were little problems with them. You could always trust the simulation provided by those systems.
However after Ansoft was absorbed by ANSYS, nothing was improved in solvers from engineering point of view. Instead some crazy non-scientific poorly documented things were introduced, probably programmed by game and CGI designers without any thoughts of engineering application.
One of the craziest thing I discovered lately is ANSYS's "closest point interpolation".
What is the "closest point" value, you may guess? Well, I think it is obvious - a value of the point found closest to the coordinate of interest.
It would be a very good approach feeding the discrete precalculated input fields, or material parameters for precisely simulating complex designs.
However what does ANSYS think about the closest point values!? You may be surprised.
Below, I show you a test of the clp() function, which SHOULD find a value of the closest point from the dataset "$dataset" for every mesh node with coordinates XYZ.
It should be placed in the material editor, in any property cell as clp($dataset, X,Y,Z).
According to manual, X,Y,Z, are provided in SI units, i.e. in meters. The output should be in the dataset units, but it is not, recognized by HFSS on practice. So I recommend making it unitless, and multiply by the desired unit, like clp(...)*1cel.
Now I define a simple dataset with a script:
<code>
dim pushdata()
redim pushdata(1) 'generate the data incrementally in dynamic dataset
pushdata(0)="NAME:Coordinates"
pushdata(1)=Array("NAME:DimUnits", "", "", "", "") 'in meters
for x = -1.1 to 1.1 step .1 'in millimeters
for y=-1.1 to 1.1 step 0.1
for z=-1.1 to 1.1 step 0.1
redim preserve pushdata(ubound(pushdata)+1)
pushdata(ubound(pushdata))=Array("NAME:Point", CDbl(x/1000), CDbl(y/1000), CDbl(z/1000), 1) ' see that "1" in the end. it is a value of "1" inside the Unit-BOX
if ((abs(y)>=1) or (abs(x)>=1) or (abs(z)>=1)) then
pushdata(ubound(pushdata))=Array("NAME:Point", CDbl(x/1000), CDbl(y/1000), CDbl(z/1000), 0) ' see that "0" in the end. it is a value of "0" AROUND the Unit-BOX
end if
next
next
next
oProject.EditDataset "$Dataset", Array("NAME:$Dataset", pushdata) 'write the dataset to HFSS (ANSYS EDT))
</code>
Now lets see what the clp() function reads out from the dataset, and substitutes to material properties:
See the yellow and red lines on the plot below.
Obviously, those are NOT ones(1), and NOT zeroes(0), as one would expect.
I do not know what is that, but it is not a simple bug. I checked it in ANSYS EDT 2021 R1, and R2, both. It is a way how the programmer's head works.
Crazy stuff.
And we are forced to pay hundreds of thousands (some organizations pay millions) of Dollars for that, risking the corporate security btw. Because EDT is a security hole requiring Internet connection to work, and providing a backdoor for ANSYS, and anyone who could exploit that, to your system.
There is a complicated badly documented object structure in ANSYS EDT (HFSS, Maxwell). It allows many things with scripting, when you know how to access them. But it is a problem, since you usually do not know if the secret knowledge was not passed to you...
So, does anyone know how to get a value of a material property?
Like reading a value of dielectric constant, or an array of BH curve data?
Dear Researchers :
If someone is proficient in COMSOL and knows about the physics and applications of Electric Power Cables
Can help me on solving this model? What am I doing wrong ?
I need to compute the Temperature Distribution of this 2D model of a MV (35 kV) Power Cable.
The configuration is simple, and the application if for 25 kV AC.
I used a Study in two Steps
Step 1: a Frecuency Domain Analysis to solve first the Electric Currents (ec) and the Magnetic Fields (mf) physics. Followed from a
Step 2: a Stationary Study to solve the Heat Transfer phenomenon and its coupling with the (ec).
I'm attaching this image to shown how I can't get a Temperature Gradient, the Gradient I am getting is so tiny that practically the Temperature is uniform across all the Cable.
I'm doing something wrong
I'll appreciate the help,
Best Regards !
How can one simulate/produce two-port S-parameters between an antenna and an ideal isotropic antenna?
This should include phase shift due to the distance between antennas.
I have only come across V-antennas whose both the arms have equal (same) arm length. Is it possible to design to a V-antenna having unequal (dissimilar) arm lengths? If yes, then what would be the mathematical equation relating the arm lengths, wavelength and included angle?
Edit: Including the equations used in designing V-antenna having equal arm lengths. Is it possible to use these equations if the arm lengths are dissimilar (unequal)? If yes, what modifications do these equations require?
The “Electromagnetic Radiation Energy and Planck’ Constant” suggested the existence of this constant, what do you think about it?
I am simulating helix antenna in hfss, right now, giving excitation with 50 ohms port. When I see the results of Z parameter (real). It shows lower than 50 ohms. Do not understand, if it can be true or I am making any mistake. Please advise.
Can I please ask for good articles/papers/ thesis on Flat Lens Antenna to study? Is it metamaterial or antenna having a metamaterial at the back?
I am looking at this:
Trying to understand what is this?
Thank you
Hi,
We find a specific distribution of electric fields in structure for different frequencies which can be seen using em solvers and known as modes.
I would like to know how we can choose the required application depending on this specific spatial distribution.
I have a design with 2 dipoles working at different frequencies joined in one system and separated by Ferrite. I think, Ferrite was used to minimize the interference between 2 antennas as much as possible. I need to simulate this design in HFSS. Can I simulate ferrite in hfss or do I need to take permeability, permittivity numbers from the manufacturer (which are not available with the manufacturer).
All ferrites should be similar,,,right? does it matter different companies sell different ferrites with different permeability and permittivity?
Please advise so that I can see if I am thinking correct or not.
Thanks
Should I make 2 antennas, one for 2.4 GHz and one for 5.8 GHz? How should I approach the problem if I want to design the antennas which cover 400 and 900 MHz and 2.4 and 5.8 GHz? All together in one unit and circularly polarized.
Please advise
So, I have a design, two dipoles working at UHF and VHF. We fed using a diplexer. I am having difficulties with the testing using network analyzer. VHF passes but UHF, specially at 400 MHZ, the VSWR shoots to 2. 1 or even 2.3.
Is there anything I am missing and replace to pass vswr for UHF too?
Thank you
So, I came across, where antennas are being tested in a building ( a plant), where all sorts of big equipment are around and of course the ceiling. lot of multipath which can affect the performance of an antenna. What is the cheapest way if I can get any suggestions to test the antennas, if we do not want to go outside and does not have a budget for a big anechoic chamber? Any suggestions are going for helpful.
Thanks
Helical antenna usually have fixed spacing between the coils. What is the advantage of varying the spacing between the helical antennas? Varying the pitch angle.
Thank you for your guidance in advance.
So, I have a helix antenna designed for 400 to 900 MHz. This antenna is designed using fabric and as a fabric, it gets wavy and scrambled which changes the performance of the helix. I am thinking of sewing a stabilizer (a thick fabric), which embroiders use so that the fabric can be stabilized as much as possible. But, I need suggestions on this idea as I do not know if I am making antenna LOSSY after sewing a stabilizer behind the fabric. I am attaching the stabilizer picture
Please advise.
Reading about helical antenna before begin to design. How many turns should a helix have? How can I determine good number of turns? I know Length of the antenna = NS. Should I just play with the pitch angle and spacing between the turns?
Appreciate your guidance.
Which types of electromobility or alternative solutions for the environmentally-friendly supply of motor vehicles are being developed in your countries?
Are they based mainly on purely electrical or hybrid engines that connect electric power with petrol or other, or power based on the combustion of hydrogen with oxygen?
Please reply
I invite you to the discussion
Thank you very much
Best wishes
So, I need to design an impedance transformer from 50 to 250 ohms. Should I design a 50 ohm power splitter and then design a transformer from 50 to 250 ohms? Because, in power splitter, I am going from 50 to 70 and then again 50 ohms as the result of splitter. Getting confused, why I am going from 50 to 70 and then 50 and again go from 50 to 250? Is there any trade off I can do?
Please advise.
Thank you
Microstrip width does matter in impedance but does the thickness of metal also affect the impedance?
Is there any matematerial which can reflect right handed circular polarization into Left handed circular polarization or vice versa of the EM waves operating in ultra-wide band?
I am following the below method so far & need guidance to further modify it:
1) Making a specimen
2) Making an Electromagnet using prepared specimen
3) Using DC & AC Source to find BH- Curve
4) Calculate Permeability from graph by taking respective points
Please make your suggestions regarding all 4 points
Hi there
what is the formula of magnetic field force applying on Ferromagnetic material?
can we use the formula of magnetic field applying on magnetic dipoles force to calculate the magnetic field force applying on Ferromagnetic material?
I designed planar circular monopole antenna . Its gain is 3.89 dBi and realized gain is also 3.89 dBi. Should there be difference of 10 dB in the values of Gain and Realized gain? Please guide
I have designed a metasurface which has a thickness of 0.78mm. Its operating frequency is around 15 GHz. Can I call it ultra thin?. In terms of lamda, the thickness of metasurface is lamda/23
The symbol for meters is an m; but so it is for mili (10e-3). Is there any way to differentiate between the two, like using italics?
Thank you.
Whenever a PCB layout is subject to noise (such as being in the vicinity of switching mode power supplies or high dv/dt and di/dt incidents), is it better to route the critical signal traces (such as gating signals) wider or narrower? (I understand that using planes is a good solution, wherever possible. But many times we have to use traces.) Which one has the advantage in terms of being more immune to the noise?
Thanks!
Dear researchers and friends, please tell me the formula for calculating Reflection loss in EMI SE? I used 20 log [S11], is it correct?
Hello all,
I am trying to measure "Noise Figure (NF)" value of the LNA (IC of MAX2678) by using VNA (without Noise Source, and with perfect 50-ohm test systems) and I am following the steps in given "Vector Network Analyzer Application Note " as attached in the following link or in the attachment:
However, even though I am adjusting the LNA input power so that LNA does not enter compression (saturation) and besides, I am calibrating my VNA in the frequency range that meets with my LNA's operating frequency range, in the end, I am observing "negative Noise Figure" from the LNA measurements.
In theory, it is impossible to see negative NF. So; is there anyone who has experienced such a situation before? Or why I am observing "negative noise figure " from my LNA measurement with VNA (without Noise source)?
Best regards,
Thank you in advance.
Huriye.
Greetings...
Is there a "general" solution to the telegrapher's equation {voltage or current on a transmission line}?
I mean by "general": without ignore of losses and without assuming sinusoidal excitation.
Kindly refer to some references on that topic.
Hey Friends,
I am working on microstrip antennas and I have stuck at a point where I have to give the feed to the radiating patch. I am working on equilateral patch antennas and I know how to give the coaxial probe but not about of what dimensions should I use. What will be diameter of coaxial probe as I am not aware how to calculate the impedance of an equilateral patch?
So basically I have two doubts.
1. First one is how to calculate the impedance of an equilateral patch antenna and
2. How to calculate the dimensions or diameter of coaxial feed as per impedance of the equilateral antenna?
I am working on HFSS. Kindly provide any technical paper or calculations on them. Thanks in advance.
Regards
Munish Kumar
In CST , i am placing a dielectric material between two antennas and measuring their s11 and s21. I tried Nicolson-Ross-Weir Method but it is not giving me correct dielectric constant value. Basically i am just trying to calculate FR-4 and Rogers substrates dielectric using antennas.I am calculating for the freq span of 2-6 GHz
Antenna Setup is in following picture
Can a high AC (~10 KV) Discharge can effect nearby (~10 mm) DC device?
What will be its effect?
Bioresonance is a non-invasive therapy which involves placing electrodes on your skin for diagnosis and treatment. The electrodes are connected to a Bicom machine which checks the energy wavelengths coming from your body, and then counteracts bad frequencies by restoring the optimum balance.
Some of the books have always been used as a standard reference in that particular field. I am looking for such book on active components design theory and analysis; and that could have system level implementation/examples/models.
Is it possible to break a π bond between a solute and a magnetic solvent using magnetic force?
Is it possible to break a π bond between a solute and a magnetic solvent using magnetic force?
What is the main difference between dual band and dual radio?
Let
A system equipped with:
Dual Band= 2.4 GHz and 5 GHz
Dual Radio=802.11 and 802.14.5
where 802.11 with 5GHz is deploy between air to air link
and 802.11 with 2.4 GHz between air to ground.
similarly some nodes are also connected through 802.15.4 with 2.4 GHz between air to air.
The above system is dual band dual radio
or triple band dual radio
or triple band triple radio?
Hi,
I have noticed that FSS unit cell tested inside a waveguide shows a wider bandwidth than a periodic surface of the same unit cell (with exact same cell dimensions) tested in free space.
Apart from the difference in the wave impedance, what could possibly make waveguide have wider S-parameters response?
Thanks..
Dear Colleagues and Professors,
I am doing experiments on the interaction between magnetic liquid and strong magnets to display the magnetic field line of a magnet. In best conditions, the magnetic lines will be showned on the surface of the liquid in the form of spines as in this video:
The components of my experiment include:
1.The Neodymium rare earth magnet with strong magnetic field strength (Figure 1).
2.Magnetic liquid is a mixture of vegetable oil and laser ink toner (content of oil and toner changes with different ratios) (Figure 2).
I have changed ratios of the content in the magnetic liquid mixture as well as used the very strong magnets but can not do the effect as above (figure 0).
I attach some of my results. Fig 2 shows magnetic liquid mixture in my experiment. Fig 3 shows interaction between the magnetic liquid mixture and magnet. Fig 4 shows interaction between the magnetic liquid mixture and magnet with adding vegetable oil.
Please give me advise. I hope to hear from you and sincerely thank Colleagues and Professors.
Best regards.
Dear colleagues,
We are conducting experiments on battery-magnet systems running in copper tube (also known as World's Simplest Electric Train). Our equipments includes:
-A pin size AAA or AA buy from duracell or engyzer company, voltage 1.5 V.
-Two Neodymium magnets are larger than batteries.
- An uncoated copper coil, 54 rounds / 1.5 dm, larger diameter than the battery, straight.
Attach two magnets to both ends of the battery and push it into the copper tube. The copper tube vibrates but the battery moves only a few millimeters and stops.
I hope the experts help me to make the battery move in the coil like video:
I look forward to hearing from you soon.
Thank you very much.
Since there are long term treatments for some diseases or many type of cancers not knowing how to be treated, im wondering how brain activity can ever control the disease.
The skin depth provides an approximation for field penetration in a conductor and describes the induced eddy current density decays from the surface to the inside of the condutor.
However, if the conductor is very small or extremely thin, for instance the aluminum particle with 100um diameter, will there be eddy current in the aluminum particle? (the skin depth of aluminum in magnetic field with frequency 4KHz is around 1.3mm)
I am trying to design a rectangular waveguide (WR12) power divider/combiner to split/combine my signal and at the same time maintain a good isolation between the two fan-out legs.
In my simulation, I have tried a simple T junction with a septum in the middle, it works well as a fan-out and combiner but the isolation is poor.
Does anyone know any design tricks so I can achieve a good isolation while maintaining a good power dividing insertion loss? I can't use isolator structure in my design since my signal will go both way.
Thanks!
if energy neither be created nor be destroyed, then from where current carrying solenoid got magnetic energy....if electric charge is fixed, how magnetism is created....
do electric charge is first or electric force is first (analogous to hen is first or its egg is first)?
Article MAGNETIC MONOPOLE THEORY
Please help me to resolve some doubts as below
1. All matter emits electromagnetic radiation when it has a temperature above absolute zero. Do they emit radiations below this? (Say -500K) if yes, how to calculate their emission if emissivity known.
(University Munich and the Max Planck Institute of Quantum Optics in Garching have now created an atomic gas in the lab that has nonetheless negative Kelvin values (Science, Jan 4, 2013).
2.using Weins law, we can calculate the peak wavelength. Example: Radiation from mammals and the living human body: Mammals at roughly 300 K emit in the far infrared.
Considering this example, if go on either heating or cooling any object (in the suitable controlled atmosphere) will it emit radiations other than thermal? Like, will it emit microwaves,radio waves or other side UV and x,gamma etc...
At present, what is the easiest way to measure temperature during RF heating?
I am monitoring the temperature in heating grains and pests using radio frequency energy. The frequency used is 27.12 MHz and the power can be adjusted from 0 to 15 Kilowatt.
How does magnetic field heat? Does it heat to dielectric materials?
American interest in 'gravity control propulsion research' intensified during the early 1950s. Literature from that period used the terms anti-gravity, anti-gravitation, barycentric, counterbary, electrogravitics (eGrav), G-projects, gravitics, gravity control, and gravity propulsion. Their publicized goals were to develop and discover technologies and theories for the manipulation of gravity or gravity-like fields for propulsion.
Although general relativity theory appeared to prohibit anti-gravity propulsion, several programs were funded to develop it through gravitation research from 1955 to 1974. The names of many contributors to general relativity and those of the golden age of general relativity have appeared among documents about the institutions that had served as the theoretical research components of those programs.
This question is intended to explore possibilities to control gravitation using an electromagnetic field.
Why the E plane beam width of monopole antenna gets narrow when we increase the width of ground plane of monopole antenna???
when we design any millimeter wave antenna for e.g at 1-2mm, what type of connectors are used?
I'm trying to model the inductance of a wire in the presence of an external magnetic field and would like any paper references or models that have been developed for this.
FMR signal can only be identified significantly, if the hrf(Magnetic field component) of RF wave is orthogonal to the external magnetic field applied. Is it also necessary with EPR detection?