Search found 28 matches

by szewro
03 Aug 2019, 17:21
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

In Elmer github repository, in commit 4334 dated Aug 2, 2019 Mika replaced 'Relative Reluctivity' by 'Reluctivity', to avoid misinterpretation.

Thank you Mika for your efforts!
by szewro
31 Jul 2019, 21:58
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

With very kind support of Mika, Juhani and Matthias I finally got anisotropic results. First important note : "Relative Reluctivity" should be considered as "Reluctivity". The results are: left side: calculations in Octave 4.2.2, right side: results. results.jpg Material definiti...
by szewro
27 Jul 2019, 01:28
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

Hi! I tried also Reluctivity tensor (directly, not relative) Material 2 ! nonlinear material Name = "Iron" Reluctivity (3,3) = Real \ 1.5915e+01 7.9577e+14 7.9577e+14 \ 7.9577e+14 3.9789e+04 7.9577e+14 \ 7.9577e+14 7.9577e+14 3.9789e+04 !Relative permeabiliy(3,3) = real \ ! 50000.1 0 0 \ !...
by szewro
26 Jul 2019, 17:13
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

Hi Matthias!

line 1880 of elmerfem/fem/src/modules/MagnetoDynamics/WhitneyAVSolver.F90 is:

Code: Select all

REAL(KIND=dp) :: Aloc(nd), JAC(nd,nd), mu, muder, B_ip(3), Babs
As I understand, mu variable is magnetic permeability. It seems to be scalar.

With best regards,

Roman
by szewro
26 Jul 2019, 16:05
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

Hi Matthias! I simplified the script simply declaring the relative permeability tensor as: Material 2 ! nonlinear material Name = "Iron" Relative permeabiliy(3,3) = real \ 50000.1 0 0 \ 0 2.1 0 \ 0 0 2.1 Relative Permittivity = 1 End Solver works, but unfortunately, the material still reac...
by szewro
26 Jul 2019, 11:39
Forum: ElmerSolver
Topic: Segmentation fault while using a 3d model in mgdyn
Replies: 1
Views: 1732

Re: Segmentation fault while using a 3d model in mgdyn

Hi!

The easiest way is to take the most similar test case (from tests subdirectory) and substitute step-by-step to your mesh.

It is difficult to say something on the base of .sif file only

With best regards,

Roman
by szewro
26 Jul 2019, 11:24
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

Hi Matthias! I have made some experiments during the night. I used working example: mgdyn_anisotropic_rel , I substituted .F90 file by permfile.F90: !------------------------------------------------------------------------------- SUBROUTINE permf(Model, n, X, Y) !------------------------------------...
by szewro
25 Jul 2019, 18:24
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

Hi! unfortunately it is not working. :( I prepared file permefile.F90: SUBROUTINE permf(Model, n, X, Y) !------------------------------------------------------------------------------- USE DefUtils IMPLICIT NONE TYPE(Model_t) :: Model INTEGER :: n REAL(KIND=dp) :: X(*) REAL(KIND=dp), POINTER CONTIG ...
by szewro
25 Jul 2019, 18:09
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

Hi Matthias! thank you for your help! I work under Linux Mint. I tried to build it, and it works! Previously, I have got an error, probably I used wrong command. This time I tried: elmerf90 reluctivity.F90 -o reluctivity.so There is declaration in the code, which I don't understand: REAL(KIND=dp) ::...
by szewro
25 Jul 2019, 16:23
Forum: ElmerSolver
Topic: Relative permeability tensor in WhitneyAVSolver
Replies: 18
Views: 8628

Re: Relative permeability tensor in WhitneyAVSolver

There is also example with anisotropic reluctance: mgdyn_anisotropic_rel
It is promising, but I can't build it.