Search found 12 matches

by hielau
17 Apr 2024, 15:03
Forum: ElmerSolver
Topic: ResultsOutput output interval
Replies: 1
Views: 72

Re: ResultsOutput output interval

Yes it is possible. I think this should work

Simulation section set

Code: Select all

Output Intervals = 100
in your solver section set

Code: Select all

Exec Solver = After saving
-Lauri
by hielau
19 Feb 2024, 12:06
Forum: ElmerSolver
Topic: Temperature plotted in non activated body
Replies: 11
Views: 292

Re: Temperature plotted in non activated body

Have you tried enabling discontinuous bodies in ResultOutputSolver?

Code: Select all

Discontinuous Bodies = Logical True
-Lauri
by hielau
07 Feb 2024, 15:22
Forum: General
Topic: How to use the keyword: Use Mesh Names
Replies: 3
Views: 233

Re: How to use the keyword: Use Mesh Names

Hi, I think you should reference to Body index in Component section and not to mesh name, that is at least what I am doing. In body section I use mesh names and in Component section I use body indexes. In my case components are used to couple electrical circuit to FEM simulation. Body 6 Name = coil1...
by hielau
14 Nov 2023, 10:01
Forum: ElmerSolver
Topic: Anti periodic boundary conditions with Elmer
Replies: 2
Views: 227

Re: Anti periodic boundary conditions with Elmer

Hi,

your Mortar BC is not pointing to a correct slave BC.

Code: Select all

Mortar BC = Interger 3
-Lauri
by hielau
10 Aug 2023, 15:53
Forum: General
Topic: How do user-supplied b-h curves work
Replies: 4
Views: 648

Re: How do user-supplied b-h curves work

I have been using BH curves like this Material 1 Electric Conductivity = Real 0.0 Relative Permittivity = Real 1.0 H-B Curve = Variable coupled iter Real Monotone Cubic 0.0 0.0 0.1 123.4 .......... 4.0 12345678.9 End ! Ch hysteris component Harmonic Loss Coefficient 1 = Real 123.4 ! Ce eddy current ...
by hielau
04 Apr 2023, 10:39
Forum: ElmerSolver
Topic: Magnetic field with symmetry planes
Replies: 11
Views: 1530

Re: Magnetic field with symmetry planes

Hi, You could try to add anti periodic boundary condition to those boundaries. Take a look chapter 9 of solver manual http://www.nic.funet.fi/pub/sci/physics/elmer/doc/ElmerSolverManual.pdf Split the boundary into two separate boundaries. boundary.png Boundary Condition 2 Name = Perpendicular1 Anti ...
by hielau
25 Mar 2023, 11:39
Forum: ElmerSolver
Topic: [resolved] Output Intervals logic is wrong
Replies: 3
Views: 516

Re: Output Intervals logic is wrong

You can add time collection to your result vtu files.

Code: Select all

Vtu Time Collection = Logical True
It will create additional .pvd file that contains timestep information of each vtu file.
by hielau
20 Feb 2023, 13:31
Forum: ElmerSolver
Topic: Matrix Creation for Circuit Calculations
Replies: 4
Views: 689

Re: Matrix Creation for Circuit Calculations

Hi, Simulation section could use "Circuit Model Depth = Real $ length" to define length for circuits solver. I think you don't need to add all solvers to equation 1. Solvers(3) = 1 2 3 should be enough. Solver mgdyn2d: MUMPS seems a little heavy direct solver for this kind of small 2D case...
by hielau
25 Jan 2023, 10:34
Forum: ElmerSolver
Topic: Core Loss Calculation
Replies: 14
Views: 1572

Re: Core Loss Calculation

Hi, I am using FourierLossSolver like this. In material section I have defined loss coefficients. I have two equations, the second equation has the FourierLossSolver. Equation 2 is applied only to core bodies. Material 2 include BH.dat Harmonic Loss Coefficient 1 = Real $ C_h Harmonic Loss Coefficie...
by hielau
18 Nov 2022, 17:07
Forum: ElmerSolver
Topic: MagnetoDynamics2D Solver
Replies: 1
Views: 292

MagnetoDynamics2D Solver

I have problems with my transient 2D induction motor simulations when I am using newer devel copies. Nonlinear system doesn't converge in MgDyn2D and crashes in next solver which try to use that solution. I have tested direct umfpack and iterative methods. I tested few different commits and it seems...