Search found 196 matches

by Franz Pichler
07 Nov 2013, 15:25
Forum: ElmerSolver
Topic: Units and Dimensions of Salome Geometry
Replies: 2
Views: 15235

Re: Units and Dimensions of Salome Geometry

Hello, I don't think that salome actually has any length unit associated with the dimensions. As you explained you make a cube of 1*1*1 in saalome and the rest is interpretation. If you want to have 0.001 in elmer directly without usenig the elmer internal scaling. Just make the length 0.001 in Salo...
by Franz Pichler
07 Nov 2013, 15:13
Forum: General
Topic: Obscure issue in User Functions related to Mesh Update
Replies: 1
Views: 1963

Re: Obscure issue in User Functions related to Mesh Update

Hello there, i am not so famialiar with mesh updating so i might be wrong here. But ithink there is a misunderstatement. THe variable "Coordinate" that u used in your first attempt is really the coordinate system and not hte mesh displacement. As i understand, there is a variable "Dis...
by Franz Pichler
11 Oct 2013, 13:13
Forum: External tools
Topic: FreeCAD and ElmerGUI
Replies: 4
Views: 11200

Re: FreeCAD and ElmerGUI

Hi there,
i am just trying out FreeCAD and can't really figure out how i define Bodies in there.
Could someone give me a tip on that?
by Franz Pichler
23 Sep 2013, 18:31
Forum: ElmerSolver
Topic: Vector valued User Function
Replies: 3
Views: 3240

Re: Vector valued User Function

HI there,
have a look at that.
viewtopic.php?f=7&t=2267&hilit=+user+subroutine

i think it has everything you need
best regards
Franz
by Franz Pichler
05 Sep 2013, 15:46
Forum: Bug reports
Topic: Resultoutputsolver in parallel
Replies: 0
Views: 2308

Resultoutputsolver in parallel

Hello dear Elmer firiends, i think i found a bug and its solution: the resultoutputsolver has trouble writing pvtu files in parallel. if a partition is not having a matrix in a solver then the parenv%activecomm is set so that tzhe partition is not taking part in the reduction operations. and in the ...
by Franz Pichler
05 Aug 2013, 15:43
Forum: Bug reports
Topic: SIGABRT exception
Replies: 0
Views: 2593

SIGABRT exception

Hi everybody, i have a bug that occured the last two or three runs of my programs that i think i haven't seen before. I start a parallel run of elmer that execute s as expected and after some hours during a random timestep i get this .... SaveScalars: Performed 4 reduction operations SaveScalars: Fo...
by Franz Pichler
26 Jun 2013, 14:40
Forum: ElmerSolver
Topic: Integral COnstraint for single Solver
Replies: 12
Views: 9887

Re: Integral COnstraint for single Solver

HI Peter: i am still struggling a bit. my curretn flow is the following, in the assembly loop i have CALL DefaultInitialize() DO t = 1, Solver % NumberOfActiveElements Element => GetActiveElement(t) n = GetElementNOFNodes(Element) nd = GetElementNOFDOFs(Element) IF( GetElementFamily() == 1 ) CYCLE C...
by Franz Pichler
26 Jun 2013, 11:33
Forum: ElmerSolver
Topic: Integral COnstraint for single Solver
Replies: 12
Views: 9887

Re: Integral COnstraint for single Solver

Hi Peter thanks for this hint, that looks promising. Do i need the global indexes of the nodes in the AddToMatrixElement here? so if i wanted to constraint an element such that the average value of a variable on the elements nodes is say constraint_value. can i just add 1/numberof elementnodes at El...
by Franz Pichler
24 Jun 2013, 17:26
Forum: External tools
Topic: only the first component exported in vtu format
Replies: 5
Views: 6698

Re: only the first component exported in vtu format

And a further detail: i saw a comment in the source code of the resultoutputsolver ! Why does this not work? NoActive = NINT( ParallelReduction( 1.0_dp * Active ) ) this is because the partitions are not set to active here i added WRITE( Message,*) 'Active right now :',parenv%Active(:) CALL Info('Wr...
by Franz Pichler
24 Jun 2013, 17:16
Forum: External tools
Topic: only the first component exported in vtu format
Replies: 5
Views: 6698

Re: only the first component exported in vtu format

Hi there, the resultoutputsolver is using createlistfor saving from lists.src and there is a part that checks if a variable is a vector (number of components = dim) and there are some changes from older revisions which may cause the problem. the part ! Associated to the previous case, cycle the othe...