Search found 21 matches

by biocca
06 May 2015, 03:14
Forum: ElmerSolver
Topic: Save Strain/Stress data
Replies: 0
Views: 1893

Save Strain/Stress data

Hi, I'm trying to save one component of stress or strain tensor in particular point with SaveScalar subroutine. This is possible? the code below works fine to save scalar fields like temperature or even time but i'm not lucky to save tensor components like stress or strain. Solver 2 Procedure = &quo...
by biocca
10 Apr 2015, 15:34
Forum: ElmerSolver
Topic: Increase transient computation efficiency
Replies: 4
Views: 2874

Re: Increase transient computation efficiency

Hi,

Other way to define discrete time steps is:

Code: Select all

Simulation
  ...
  Timestep intervals(2) = 400 200
  Timestep Sizes(2) = 0.1 1
  ...
End
Regards. Nicolás.
by biocca
18 Feb 2015, 03:46
Forum: ElmerGUI
Topic: Non-Uniform Stress Distribution along curved surface
Replies: 7
Views: 8053

Re: Non-Uniform Stress Distribution along curved surface

Hi, See Elmer Solver Manual chapter II, the section is called boundary condition, basically: Boundary Condition 1 Target Boundaries(1) = 1 ! 1 is the number of surface (for 3d problem) or line (2d problem) Name = "non-uniform stress distribution" Normal Force = Varible Coordinate; Real MAT...
by biocca
17 Feb 2015, 19:52
Forum: ElmerGUI
Topic: Non-Uniform Stress Distribution along curved surface
Replies: 7
Views: 8053

Re: Non-Uniform Stress Distribution along curved surface

Hi, Yes, it is necessary place axial coordinate in the center of the hole, only for the expression previously mentioned. If the hole position is not centered, you need to write the stress distribution as a function of your system reference x-y-z, wich can be more o less difficult depending on the ge...
by biocca
11 Feb 2015, 00:42
Forum: ElmerGUI
Topic: Non-Uniform Stress Distribution along curved surface
Replies: 7
Views: 8053

Re: Non-Uniform Stress Distribution along curved surface

Hi, You need to use a MATC language to define this boundary condition. The easy way is defining a normal stress like a bondary condition. The sif file should look as follows: Boundary Condition 1 Target Boundaries(1) = 1 ! 1 is the number of surface (for 3d problem) or line (2d problem) Name = "...
by biocca
03 Feb 2015, 07:20
Forum: ElmerSolver
Topic: About restart from existing solution
Replies: 1
Views: 2116

About restart from existing solution

Hi, i'm trying unsuccessfully to use the restar command. Here is the question, i have one model, a thermal model that solves the temperature field. In the other hand, i wanna solve thermal stress generate by the temperature field previously calculate in the first model in a specfic time step. Accord...
by biocca
28 Jan 2015, 02:14
Forum: ElmerSolver
Topic: Introducing components in a tensor with MATC
Replies: 2
Views: 2976

Introducing components in a tensor with MATC

Hi, i have a question, it is posible introduce a tensor with a MATC function? For example, defining a tensor where each component is written in MATC.

Thanks in advance.

Regards. Nicolás.
by biocca
21 Jan 2015, 17:23
Forum: ElmerSolver
Topic: About interpreting of solver section
Replies: 1
Views: 1917

About interpreting of solver section

Hi, I'm trying to interpret solver section, below show the sif file that generates ElmerGUI for a thermoelastic problem, Solver 1 Equation = Heat Equation Variable = -dofs 1 Temperature Procedure = "HeatSolve" "HeatSolver" Exec Solver = Always Stabilize = True Bubbles = False Lum...
by biocca
15 Jan 2015, 01:50
Forum: ElmerSolver
Topic: Difference between poisson ratio and mesh poisson ratio
Replies: 3
Views: 2990

Difference between poisson ratio and mesh poisson ratio

hi, i'm running a termomechanical model and i have a question about the difference between Poisson ratio and mesh Poisson ratio. I known the Poisson ratio (denoted v or nu) but i'm not sure if it has any relationship with mesh Poisson ratio.

Thanks in advance.

Regards. Nicolás.
by biocca
05 Jan 2015, 23:19
Forum: ElmerSolver
Topic: Time-dependent sink/source term
Replies: 7
Views: 4779

Re: Time-dependent sink/source term

Apparently, the correct way to define a parameter that depends on time and coodinate system is Parameter = Variable Coordinate, Time ; Real MATC "function(tx(0),tx(1),tx(2),tx(3))" Where tx(0), tx(1) and tx(2) are x,y and z respectively and tx(3) is time. It's important matain the order to...