CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Programming & Development

Error in magneticFoam ??

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   May 20, 2021, 15:40
Default Error in magneticFoam ??
  #1
Member
 
MNM
Join Date: Aug 2017
Posts: 69
Rep Power: 8
SHUBHAM9595 is on a distinguished road
Dear Foamers,

After going through the code for magneticFoam, and several other threads in the forum I manage to understand a bit of its working (I might be completely wrong as well).


As per the source code, the magneticFoam solves the Gauss's law for magnetism (\nabla. B) to produce a divergence free field. To obtain this, it uses a scalar potential (\Psi) formulation and gradient of this volScalarField (which will be volVector) is then defined as strength of magnetic field (H)


The solution of \nabla. B where B = \mu_{0}\mu_{r}(H + M) is written in source code as
Code:
solve(fvm::laplacian(murf, psi) + fvc::div(murf*Mrf))
here murf is the relative permeability of magnet face, and Mrf is the magnetic remanance/residual magnetisation of magnet face.


After solving the above equation, \Psi is then used to construct the H field (H = \nabla \Psi) as
Code:
fvc::reconstruct(fvc::snGrad(psi)*mesh.magSf())

Further B is also constructed in the similar fashion using B = \mu_{0}\mu_{r}(H + M)
Code:
constant::electromagnetic::mu0*fvc::reconstruct(murf*fvc::snGrad(psi)*mesh.magSf() + murf*Mrf)

Now, the reason to go for the scalar potential formulation rather than vector one might be because scalar potential formulation automatically satisfies the Ampere's law (\nabla \times H = 0) for electrically insulating media, as the curl of gradient of scalar is always zero (\nabla \times \nabla \Psi = 0).

Now, here comes the interesting part, the geometry of magnets is defined using faceSet in toposet and then all the faces are assigned the same values of relative permeability (murf) and remanance (Mrf). This is achieved with the following line in createFields.H
Code:
forAll(faces, i)
        {
            label facei = faces[i];
            murf[facei] = muri;
            Mrf[facei] = Mri*(orientationi & Sf[facei]);
        }
The dimensions of remanance (Mr/Mri) in magnet.H are in Ampere per meter whereas the surfaceScalarField Mrf/Mrfi is defined with dimensions Ampere*meter. Orientation is a dimensionless vector which defines the alignment of magnet and
Code:
Sf[facei]
is the surface vector which provides area and normal of the face.

This means the magnitude of surface area of every cell face is multiplied with Mr to define the Mrf , which is then further used to calculate \Psi and reconstruct H. So, as the grid becomes finer the corresponding value of surface vector reduces and so does the Mrf. This makes the magnetic field distribution grid dependent

This strange behaviour can be easily observed by just increasing the mesh from 100*100*100 to 200*200*200 in the magnetic_rectangular case of
magneticFoam


It'll be really helpful if someone can confirm/contradict this and make the source code more clear for all of us.
SHUBHAM9595 is offline   Reply With Quote

Old   May 20, 2021, 16:11
Default
  #2
HPE
Senior Member
 
HPE's Avatar
 
Herpes Free Engineer
Join Date: Sep 2019
Location: The Home Under The Ground with the Lost Boys
Posts: 932
Rep Power: 12
HPE is on a distinguished road
Very interesting. Thanks for detailed inspection.

I am no expert on magnetism. But, if your observations are correct, what could be the fix? Is there any minimal reproducible verification/validation test scenario in the literature, with which we can do tests?
HPE is offline   Reply With Quote

Old   May 21, 2021, 03:01
Default
  #3
Member
 
MNM
Join Date: Aug 2017
Posts: 69
Rep Power: 8
SHUBHAM9595 is on a distinguished road
Quote:
Originally Posted by HPE View Post
Very interesting. Thanks for detailed inspection.

I am no expert on magnetism. But, if your observations are correct, what could be the fix? Is there any minimal reproducible verification/validation test scenario in the literature, with which we can do tests?
Thanks HPE for the response.

Regarding the verification/validation test scenario in the literature. So far I just came across following analytical expression for on-axis magnetic field distributions https://www.supermagnete.nl/eng/faq/...t-flux-density

Much more detailed 3D distributions (but only for rectangular magnets) can be obtained from the equations 12 - 14 of the following paper
https://link.springer.com/content/pd...BF02437333.pdf

Now to get first hand idea, if we use the analytical formula to calculate the field distribution for 20mm long (L), 20mm wide (W), 40mm tall (D) having Br = 860KA/m & unit relative permeability (this specific configuration as it was readily available test case from magneticFoam). The distribution shows highest magnitude of around 4.5e5 A/m as shown in attached figure...

However, if we run the same configuration in FOAM (using the default source code) we get LOWEST value of B is of order e8...which is definitely not correct...
Coming to the The "fix"..... I tried to normalise the Mrf with its face area magnitude using
Code:
Mrf[facei] = (Mri*(orientationi & Sf[facei]))/(mag(Sf[facei]));
but apparently this only increased the uncertainty of the problem . The lowest magnitude in the domain now reach to the order of e9....

Some things to be aware of:
1) As already put out on the forum, the dimension of magnet is set by topoSetDict whereas the bounding box is defined using blockMeshDict.

2) The constant/transportProperties can only be used to define the orientation of the magnet, the Mrf & Mur has to be changed from createFields.H. This should be followed by wclean+wmake...

P.S. Unfortunately, at this moment I'm unable to attach any zip files bcz of a error "submission could not be processed because a security token was missing."
Attached Images
File Type: jpg Analytical_On_Axis.jpg (66.7 KB, 16 views)
SHUBHAM9595 is offline   Reply With Quote

Reply

Tags
magneticfoam, permanent magnets


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
magneticFoam latvietis OpenFOAM Running, Solving & CFD 41 June 5, 2020 01:29
Magnetic Field Calculation in 3D : using magneticFoam stealth OpenFOAM 2 October 7, 2012 06:15
Magnetic Field Calculation in 3D : using magneticFoam stealth OpenFOAM Running, Solving & CFD 0 August 15, 2012 11:33
orientationi & Sf[facei] - magneticFoam latvietis OpenFOAM 5 April 4, 2012 05:18
what is the magneticFoam for in the OpenFOAM 2.0.0 goodkid OpenFOAM 4 December 24, 2011 08:25


All times are GMT -4. The time now is 11:04.