Search found 100 matches

by tzwinger
23 Mar 2015, 09:45
Forum: Elmer/Ice
Topic: Elmer-2Dglaciertoymodel
Replies: 1
Views: 6188

Re: Elmer-2Dglaciertoymodel

Dear Kevin, the "side" boundaries in the test example for the Reykjavik course simply set the horizontal velocity component (what ever direction this is in your model, in ours it is X or direction #1) to zero while leaving the vertical (in our model Y or #2) without a Dirichlet condition, ...
by tzwinger
21 Mar 2015, 18:42
Forum: Elmer/Ice
Topic: ParStokes example .sif?
Replies: 4
Views: 9499

Re: ParStokes example .sif?

Checking the code, it seems that the dimension of the problem is being taken care of - i.e., I found no reason why it shouldn't work in 2D. Question is - do you really need it in a 2D problem or are you equally happy with the standard Navier-Stokes Solver and a direct solver?

Regards,

Thomas
by tzwinger
18 Mar 2015, 09:21
Forum: Elmer/Ice
Topic: elmerf90-nosh and Elmer/Ice tests
Replies: 6
Views: 12079

Re: elmerf90-nosh and Elmer/Ice tests

Hi Rupert,
your issue might be connected to the fact that the default branch is "devel" and not "elmerice".
A

Code: Select all

git checkout elmerice
might be at place.

Regards,

Thomas
by tzwinger
13 Mar 2015, 16:51
Forum: Elmer/Ice
Topic: trouble going from diagnostic to prognostic
Replies: 6
Views: 12139

Re: trouble going from diagnostic to prognostic

Hello, I didn't realize your MeshUpdate in the first instance - sorry. Then you can do it such that you just initialize, imposing the data directly to Top Surface and then couple the FS to the MeshUpdate variable, sacrificing the advantage of having a vertically structured mesh. Or, you do as I sugg...
by tzwinger
10 Mar 2015, 09:19
Forum: Elmer/Ice
Topic: trouble going from diagnostic to prognostic
Replies: 6
Views: 12139

Re: trouble going from diagnostic to prognostic

Initial Condition 2 Zs = Variable Coordinate 2 Real cubic include "icescarp70degground.dat" End RefZs = Equals Coordinate 2 End should do it. So no "Equals" for the Zs-initialization. And then, of course, you have to take care that the solver that updates the mesh (StructuredMes...
by tzwinger
09 Mar 2015, 11:06
Forum: Elmer/Ice
Topic: trouble going from diagnostic to prognostic
Replies: 6
Views: 12139

Re: trouble going from diagnostic to prognostic

The main issue is conected to the fact that your "Top Surface" keyword points to the initial data all the time, but rather should point to the result of your free-surface evolution equation. So, the good strategy would be to let the initial shape define the initial condition for the free-s...
by tzwinger
12 Nov 2014, 08:55
Forum: Elmer/Ice
Topic: Help to simulate Sheet/Shelf problems
Replies: 4
Views: 9096

Re: Help to simulate Sheet/Shelf problems

Hello,
seems you want to solve the Grounding Line Problem, which for 2D is explained (including link to example) under http://elmerice.elmerfem.org/wiki/doku. ... undingline

Good luck!

Best Regards,

Thomas
by tzwinger
26 Sep 2014, 11:22
Forum: Elmer/Ice
Topic: Setting basal pressure til fraction of overburden
Replies: 5
Views: 11970

Re: Setting basal pressure til fraction of overburden

Hi, perhaps the name "External Pressure" is misleading. It is basically the normal component of the Cauchy stress vector, which is the Cauchy stress tensor dot product with surface normal. It follows from the weak formulation of the Stokes equation. It is a Neumann condition to the system....
by tzwinger
23 Sep 2014, 12:15
Forum: Elmer/Ice
Topic: Setting basal pressure til fraction of overburden
Replies: 5
Views: 11970

Re: Setting basal pressure til fraction of overburden

Hi Christian, I guess you are using this 0.6*overburden as the effective normal pressure in some sliding law, right? Did you check that your values are dimensional consistent with the rest of your material parameters? Simply, if you do your computations in MPa-a-m system (which usually is the case i...
by tzwinger
05 Sep 2014, 12:30
Forum: Elmer/Ice
Topic: Test failed for test case 3 (Contact) in Elmer/Ice
Replies: 5
Views: 10896

Re: Test failed for test case 3 (Contact) in Elmer/Ice

So your case went through - something then went wrong outside the run. Reading your error message from before, my suspicion is, that perhaps your permissions for the test subdirectory are such that you are not allowed to write anything into it. If you do a chmod -R u+rwX contact does it help? Best R...