[Libmesh-users] Add variable to side

2014-11-06 Thread Robert
. Regards Robert -- ___ Libmesh-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/libmesh-users

Re: [Libmesh-users] vtk- output only on one processor.

2014-06-25 Thread Robert
Hello, the bug was introduced during with the optimization of > https://github.com/libMesh/libmesh/pull/190 See the attached files for a modified, working version of the VTKIO. Robert On Tue, Jun 24, 2014 at 03:34:03PM -0400, subramanya sadasiva wrote: > Hi, > I am trying to run

Re: [Libmesh-users] Time dependent Dirichlet boundary conditions

2014-06-06 Thread Robert
_system().current_local_solution,u_idx,Uc); for (unsigned int j = 0; j < u_idx.size(); ++j) { U[j][i] = Uc.el(j); } } instead of using just context.get_elem_solution(i).el(j); Is there an easier way for doing this? Robert On Fri, Ma

[Libmesh-users] Time dependent Dirichlet boundary conditions

2014-05-30 Thread Robert
amp;bfunc)); in a FEMSystem::init_data(..) Are there any additional step necessary in each timestep to apply the boundary conditions or what else am I missing? Robert -- Time is money. Stop wasting it! Get your web API i

[Libmesh-users] VTK output broken

2014-02-20 Thread Robert
Hello, after updating libmesh from git version 63581916 to d750e8c15 the files written by VTKIO are only containing the mesh and the variables libmesh_elem_id and subdomain_id, but none of the variables I defined. Does any one else has this issue as well? Robert

Re: [Libmesh-users] SNES Nonlinear Solve Behaves Differently on Different Machines

2014-01-03 Thread Robert Blake
As someone who is also working on this code, the problem is not uninitialized memory. Valgrind reports a clean bill of health. On 01/02/2014 09:45 PM, Derek Gaston wrote: > This is almost definitely not a libMesh problem. It sounds like an > uninitialized variable. I recommend running your app

Re: [Libmesh-users] Newton iteration nonlinear elasticity slow

2013-11-25 Thread Robert
Hi, If you don't like deriving the stuff by hand you might have a look at AceGen (http://www.fgg.uni-lj.si/Symech/), it uses Mathematica for the linarization and generates C code for the residual and jacobian. Robert On Mon, Nov 25, 2013 at 12:01:20PM -0700, Derek Gaston wrote: > If

[Libmesh-users] Bug in DofMap

2013-10-09 Thread Robert
ield-variational formulation for incompressibility. Is there any better type available in libmesh for this? Robert -- October Webinars: Code for Performance Free Intel webinars can help you accelerate application performan

Re: [Libmesh-users] How to setup variable length data per element?

2013-05-21 Thread Robert Blake
r values in AMR. > > Derek > > Sent from my iPhone > > On May 21, 2013, at 11:14 AM, Robert Blake wrote: > >> Does anyone have any advice on this question? John, maybe? >> >> >> On 04/30/2013 11:29 AM, Robert Blake wrote: >>> I am trying to run

Re: [Libmesh-users] How to setup variable length data per element?

2013-05-21 Thread Robert Blake
Does anyone have any advice on this question? John, maybe? On 04/30/2013 11:29 AM, Robert Blake wrote: > I am trying to run a FEM simulation wherein every element has a > variable-length C data structure defined in an external non-libmesh file > format. What is the easiest way to get

Re: [Libmesh-users] Reorder nodal data output to that match layout of the input mesh?

2013-05-21 Thread Robert Blake
On 05/20/2013 03:05 PM, John Peterson wrote: > On Tue, Apr 30, 2013 at 10:02 AM, Robert Blake > wrote: >> Hi again, >> >> I'm trying to use libmesh to replace some legacy custom FEM software. I >> need an output file where every line of text contains the val

Re: [Libmesh-users] Reorder nodal data output to that match layout of the input mesh?

2013-05-20 Thread Robert Blake
Does anyone an idea how to write custom output code? I'm really at a loss here. I haven't made any progress in the last month. I might have to move to another framework. On 04/30/2013 12:02 PM, Robert Blake wrote: > Hi again, > > I'm trying to use libmesh to replac

Re: [Libmesh-users] Error in adaptivity_ex2 during make check on Mac OSX 10.8

2013-05-12 Thread Robert J Goedman
Hi Cody, After: ./configure CC=clang CXX=clang++ make make check passes all tests. Thanks a lot! Rob J. Goedman [email protected] On May 12, 2013, at 2:59 PM, Robert J Goedman wrote: > Hi Cody, > > Thank you. Usually configure selects clang. Will check it. > > Regards

Re: [Libmesh-users] Error in adaptivity_ex2 during make check on Mac OSX 10.8

2013-05-12 Thread Robert J Goedman
quite awhile. If you are > indeed using that compiler, let me suggest that you try either GCC > from Mac Ports, or Clang. > > Cody > > Sent from my iPad > > On May 12, 2013, at 2:37 PM, Robert J Goedman wrote: > >> Hi, >> >> Just installed the librar

[Libmesh-users] Error in adaptivity_ex2 during make check on Mac OSX 10.8

2013-05-12 Thread Robert J Goedman
Hi, Just installed the library and attempted to run 'make check'. Passed many all tests before this test. Hope this helps. Regards, Rob J. Goedman [email protected] ... *** * Done Running Example adaptivity_ex1: * example-opt

[Libmesh-users] Reorder nodal data output to that match layout of the input mesh?

2013-04-30 Thread Robert Blake
Hi again, I'm trying to use libmesh to replace some legacy custom FEM software. I need an output file where every line of text contains the value of a solution variable at the corresponding node in a VTK input mesh. For example, the value of the solution at node 5 in the VTK file should be at li

[Libmesh-users] How to setup variable length data per element?

2013-04-30 Thread Robert Blake
I am trying to run a FEM simulation wherein every element has a variable-length C data structure defined in an external non-libmesh file format. What is the easiest way to get this data into libmesh and use it in parallel? I see only a couple of ways of doing this: 1.) I can easily do this using

Re: [Libmesh-users] How to catch exceptions in parallel?

2013-03-05 Thread Robert
On Tue, Mar 05, 2013 at 12:19:50PM -0600, Roy Stogner wrote: > > On Tue, 5 Mar 2013, Robert wrote: > > > I am currently catching errors due to element inversion (det F < 0) > > during assembly. If such an error occurs I want to reduce the timestep > > and try ag

[Libmesh-users] How to catch exceptions in parallel?

2013-03-05 Thread Robert
ust one of the processes has an inverted element and the whole thing deadlocks. Does anyone know how to handle this situations? Robert -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynam

[Libmesh-users] Limited timestep size in MemorySolutionHistory

2013-02-26 Thread Robert
ler timesteps? Regards, Robert -- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite for free today: http://p.sf.net/sfu/appdyn_d2d_

Re: [Libmesh-users] Two Potential Issues

2012-11-15 Thread Robert
On Thu, Nov 15, 2012 at 11:21:52AM -0500, Andrew E Slaughter wrote: > I found two problems that may be of interest to the developers. They could > be my problems and not yours, but just in case. > > (1) When using VTK there is a problem with the include directory if you use > VTK build from source

Re: [Libmesh-users] examples on nonlinear elasticity

2012-09-18 Thread Robert
Hi, some time ago, I posted an example using a neo-hookean material on the mailinglist: > http://www.mail-archive.com/[email protected]/msg03044.html Robert On Thu, Aug 23, 2012 at 12:51:15AM -0500, walter kou wrote: > Hi, > > Is there anyone has an example code

[Libmesh-users] Remeshing during calculation with tetgen

2012-06-08 Thread robert
quite limited for application. Thanks, Robert On 06/07/2012 06:45 PM, John Peterson wrote: > On Thu, Jun 7, 2012 at 10:23 AM, robert wrote: >> I think the problem is really my computer - i installed paraview on a better >> machine and it works with the same file. >> >&

Re: [Libmesh-users] size limit for exodus?

2012-06-07 Thread robert
But you're right, just installed paraview on a lab-computer and there it worked fine. thanks On 06/07/2012 04:47 PM, Paul T. Bauman wrote: > On Thu, Jun 7, 2012 at 9:42 AM, robert <mailto:[email protected]>> wrote: > > is there a size limit for writing exodus file

Re: [Libmesh-users] size limit for exodus?

2012-06-07 Thread robert
Thanks for the fast reply. if I use an Exodus object I get the same result. I'll try to find a better computer. But it's strange that ParaView asks me which reader to use if only my computer is the problem. On 06/07/2012 04:47 PM, Paul T. Bauman wrote: > On Thu, Jun 7, 2012 at 9:

[Libmesh-users] size limit for exodus?

2012-06-07 Thread robert
ty sure that the file is ok. I created it with tetgen and can look at it with medit. Thanks, Robert -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landsc

Re: [Libmesh-users] core dumped tetgen read

2012-05-24 Thread robert
Hi, thank you for your help Robert On 05/24/2012 04:42 PM, John Peterson wrote: > On Thu, May 24, 2012 at 8:31 AM, robert wrote: >> TetGenIO found the tetgen files to read >> Assertion `eid< _elements.size()' failed. >> [0] src/mesh/serial_mesh.C, line 179, com

Re: [Libmesh-users] core dumped tetgen read

2012-05-24 Thread robert
27;Assertion eid' above that what you wanted to know? Robert On 05/24/2012 03:54 PM, John Peterson wrote: > On Thu, May 24, 2012 at 7:27 AM, robert wrote: >> Hello, >> >> has anybody tried to use tetgen_io with one of the recent versions of >> ubuntu (11.

Re: [Libmesh-users] core dumped tetgen read

2012-05-24 Thread robert
1 4 8 # Generated by tetgen -pg fun.poly I'll look at the debugging soon ... Robert On 05/24/2012 03:54 PM, John Peterson wrote: > On Thu, May 24, 2012 at 7:27 AM, robert wrote: >> Hello, >> >> has anybody tried to use tetgen_io with one of the recent

[Libmesh-users] core dumped tetgen read

2012-05-24 Thread robert
the following message: / TetGenIO found the tetgen files to read Segmentation fault (core dumped)/ if I start it in gdb I get: / Program received signal SIGSEGV, Segmentation fault. 0xb7d2040c in libMesh::SerialMesh::insert_elem(libMesh::Elem*) () from /home/robert/software/libmesh/l

[Libmesh-users] Remove/Disable Dirichlet BC

2012-04-24 Thread Robert
ystems. So I found no way to get all nodes on the upper side to be constrained with dirichlet-bc in this scenario, is there any way to do this? regards Robert -- Live Security Virtual Conference Exclusive live event will cov

Re: [Libmesh-users] [Libmesh-devel] Elastic Solid Examples?

2012-01-12 Thread Robert
On Thu, Jan 12, 2012 at 10:13:03AM +0100, Robert wrote: > On Wed, Jan 11, 2012 at 02:10:30PM -0600, Roy Stogner wrote: > > On Tue, 10 Jan 2012, Robert wrote: > > > I have just tested this with the default configure options. Any > > > suggestions for improve

Re: [Libmesh-users] [Libmesh-devel] Elastic Solid Examples?

2012-01-12 Thread Robert
Hi, On Wed, Jan 11, 2012 at 02:10:30PM -0600, Roy Stogner wrote: > On Tue, 10 Jan 2012, Robert wrote: > > I have just tested this with the default configure options. Any > > suggestions for improvements are of course welcome. > > Would you try running it in parallel? Th

Re: [Libmesh-users] Elastic Solid Examples?

2012-01-10 Thread Robert
tensor classes, I discovered a small bug in TypeTensor::assign. See tensor.patch. Regards Robert On Mon, Jan 09, 2012 at 09:02:29AM +1300, Mark Davies wrote: > Hi Guys, > > I'm just getting started with the library and was wondering if there are > any examples dealing wi

[Libmesh-users] Shape functions at boundaries

2012-01-03 Thread Robert
? Regards, Robert -- Write once. Port to many. Get the SDK and tools to simplify cross-platform app development. Create new or port existing apps to sell to consumers worldwide. Explore the Intel AppUpSM program developer o

[Libmesh-users] error cmap parameters

2011-11-28 Thread robert
Dear all, I want to read a mesh on a BlueGene/P computer, then partition it and write a mesh-file for each partition: /* READ TETGEN FILE*/ ... /* prepare and partition mesh */ mesh.find_neighbors();

Re: [Libmesh-users] libMesh 0.7.2 released

2011-11-11 Thread Robert
tilities for semi-structured grids >* NodeConstraints calculations for moving mesh users I am assuming that this change should help me to get my periodic BC problem (See thread "Change sparsity pattern of system matrix") on a moving mesh fixed. Can you provide some lines of code (or

Re: [Libmesh-users] linking problems installation

2011-11-10 Thread robert
Am Donnerstag, den 10.11.2011, 07:17 -0700 schrieb Cody Permann: > On Nov 10, 2011, at 4:22 AM, robert wrote: > > > Am Mittwoch, den 24.08.2011, 22:16 -0500 schrieb Roy Stogner: > > > >> > >> Hi Robert, > >> > >> My experience wi

Re: [Libmesh-users] linking problems installation

2011-11-10 Thread robert
> > > > I see three warnings here but I don't see any errors. Are there additional > messages that you didn't paste here? Hi Cody, thanks for your reply. That's exactly the strange thing - I couldn't find any error messages either. It just aborts with error 1. I tried to build the same libm

Re: [Libmesh-users] linking problems installation

2011-11-10 Thread robert
Am Mittwoch, den 24.08.2011, 22:16 -0500 schrieb Roy Stogner: > > Hi Robert, > > My experience with the BIG machines is that many of them don't support > dynamic linking. This static build produces bigger > binaries but simplifies the runtime environment on the comput

[Libmesh-users] TET10: vertex node or midside node?

2011-11-06 Thread robert
+mass+matrix+integration&source=bl&ots=SvCQZQEcGB&sig=ERkG7r7yTgGWOugp3COUMjfqx1E&hl=en&ei=IuG2Tof9OcqAhQeYrfn3Aw&sa=X&oi=book_result&ct=result&resnum=7&ved=0CFwQ6AEwBg#v=onepage&q=lumped

[Libmesh-users] --enable-parmesh with uniformly_refine: Problem EquationSystems dofs

2011-11-03 Thread Robert . Bodner
ore I build the EquationSystems object, the n_dofs() correspond to the coarse mesh, not to the refined one. Any suggestions? Robert -- RSA(R) Conference 2012 Save $700 by Nov 18 Register now http://p.sf.net/sfu/rsa-sfd

Re: [Libmesh-users] example parallelmesh???

2011-11-02 Thread Robert . Bodner
e I don't use the class ParallelMesh - so I was wondering if the data-structure, which I get with --enable-parmesh, allows refinement and coarsening. So, although I read in 1 file per processor the n_partitions() has changed. Thank you, Robert -

Re: [Libmesh-users] example parallelmesh???

2011-11-02 Thread Robert . Bodner
Hello, I haven't tried the suggestion of Derek yet. Instead, I wanted to try to split a smaller mesh with nemesis and see if my code runs in parallel (configure with --enable-parmesh) I split the mesh with the following code: Mesh mesh; TetGenIO TETGEN(mesh);

Re: [Libmesh-users] example parallelmesh???

2011-11-02 Thread Robert . Bodner
e nemesis files. > > nem_spread is a _serial_ process that produces "n" number > of nemesis files (it is doing an "offline" partitioning). > You will need a machine with quite a bit of RAM. > > Derek Hi Derek, thanks for your help. I have to do some labw

Re: [Libmesh-users] example parallelmesh???

2011-10-31 Thread Robert . Bodner
r problem more than a month ago but still, I could't solve the problem. Thanks very much for your help in advance, Robert > thank you, > Robert > > > > > > >> You'd either need to borrow a large memory machine > > > for >> long enoug

Re: [Libmesh-users] example parallelmesh???

2011-10-31 Thread Robert . Bodner
Mesh mesh; TetGenIO TETGEN(mesh); TETGEN.read("meshfile"); mesh.find_neighbors(); > thank you, > Robert > > > > > > >> You'd either need to borrow a large memory machine > > > for >> long enough to read in the

Re: [Libmesh-users] example parallelmesh???

2011-10-31 Thread Robert . Bodner
ng in the serial tetgen mesh on one processor? I am sure it is quite easy - unfortunately I don't progress any more without help. thank you, Robert > > >> You'd either need to borrow a large memory machine > > for >> long enough to read in the Tetgen file and

Re: [Libmesh-users] example parallelmesh???

2011-10-30 Thread Robert . Bodner
n running with 'mpiexec -np 8 ./tryRead-opt' I get a long error message - see at the end of the mail. For configuring of libmesh I used the following options: ./configure --enable-slepc --enable-mpi --enable-parmesh --enable-petsc Do I maybe have to change something there? thanks, Robert

Re: [Libmesh-users] example parallelmesh???

2011-10-29 Thread Robert . Bodner
9:6: error: ‘class libMesh::Nemesis_IO’ has no member named ‘write’ Could you give me some lines of example code how you would do it? Thank you, Robert -- Get your Android app more play: Bring it to the BlackBerry P

[Libmesh-users] example parallelmesh???

2011-10-28 Thread Robert . Bodner
Hello, could someone give me an example of how to use parallelmesh? I have the problem that I have 12GB of RAM, 8 CPU's, but a mesh which has several GB (generated with tetgen). Now, if I understood everything right, a copy of the mesh is kept on every processor. I am reading the mesh with tetgen_i

Re: [Libmesh-users] load a mesh with boundary tags

2011-10-19 Thread robert
Hello, I had success using the exodusII file format, which I had generated with cubit[1]. In addition to generating the geometry and meshing it, you have to create "sidesets" containing the surfaces on which you want to apply your BC. Robert [1] http://cubit.sandia.gov/ On Wed, Oc

Re: [Libmesh-users] Change sparsity pattern of system matrix

2011-10-10 Thread robert
Hi, On Fri, Oct 07, 2011 at 10:23:57AM -0500, Roy Stogner wrote: > > On Fri, 7 Oct 2011, robert wrote: > > > I am doing solid mechanics calculations with FEMSystem and a moving mesh > > and need periodic boundary conditions. As the PR-BC code in libmesh only > > wor

[Libmesh-users] Change sparsity pattern of system matrix

2011-10-07 Thread robert
ing of the matrix while adding the PR-BCs. So how can I influence the default sparsity pattern used to create the system matrix to avoid these performance issues? Robert -- All of the data generated in your IT infrast

Re: [Libmesh-users] mesh refinement in parallel

2011-08-31 Thread robert
Am Mittwoch, den 31.08.2011, 16:55 +0200 schrieb robert: > Am Mittwoch, den 31.08.2011, 08:46 -0600 schrieb John Peterson: > > On Wed, Aug 31, 2011 at 1:31 AM, robert wrote: > > > > > > running the job with --enable-parmesh doesn't change. I run only one > &

Re: [Libmesh-users] mesh refinement in parallel

2011-08-31 Thread robert
Am Mittwoch, den 31.08.2011, 08:46 -0600 schrieb John Peterson: > On Wed, Aug 31, 2011 at 1:31 AM, robert wrote: > > > > running the job with --enable-parmesh doesn't change. I run only one > > mpi-job per node but it is still quite slow. > > You need to **rec

Re: [Libmesh-users] mesh refinement in parallel

2011-08-31 Thread robert
Am Dienstag, den 30.08.2011, 21:19 +0200 schrieb robert: > > > > > It is possible to run 1, 2 or 4 processes per node. If I run 2 or 4 > > > processes I get: > > > Error! ***Memory allocation failed for SetUpCoarseGraph: gdata. > > > Requested size:

Re: [Libmesh-users] mesh refinement in parallel

2011-08-30 Thread robert
> > > It is possible to run 1, 2 or 4 processes per node. If I run 2 or 4 > > processes I get: > > Error! ***Memory allocation failed for SetUpCoarseGraph: gdata. > > Requested size: 107754020 bytesError! ***Memory allocation failed for > > SetUpCoarseGraph: gdata. Requested size: 107754020 byte

Re: [Libmesh-users] mesh refinement in parallel

2011-08-30 Thread robert
Am Dienstag, den 30.08.2011, 12:34 -0600 schrieb John Peterson: > On Tue, Aug 30, 2011 at 12:23 PM, robert wrote: > > > >> 32 nodes or 32 cores? I don't know the details of your cluster so it > >> may be obvious, but make sure you aren't accidentally run

Re: [Libmesh-users] mesh refinement in parallel

2011-08-30 Thread robert
Am Dienstag, den 30.08.2011, 10:48 -0600 schrieb John Peterson: > It will be extremely slow if it goes into swap. > > > Would this option just work with the existing code or do I have to > > change to ParallelMesh? > > Should work with existing code. Hopefully. > > > > > – SMP mode : 4 GB of

Re: [Libmesh-users] mesh refinement in parallel

2011-08-30 Thread robert
Am Dienstag, den 30.08.2011, 10:08 -0600 schrieb John Peterson: > On Tue, Aug 30, 2011 at 9:56 AM, robert wrote: > > > > The mesh.uniformly_refine(1) takes some minutes when I do it in serial > > on my PC. However, on the BlueGene/P it doesn't come to an end (I >

[Libmesh-users] mesh refinement in parallel

2011-08-30 Thread robert
Hello, I am trying to get to run my libmesh code in parallel. Thanks to the help of you guys most of the code already works. However, I still have some small problems where I still don't have enough understanding of libmesh to solve them alone. One of them is to do mesh refinement in parallel:

Re: [Libmesh-users] Writing mesh in parallel

2011-08-30 Thread robert
Am Freitag, den 26.08.2011, 09:09 -0500 schrieb Roy Stogner: > > On Fri, 26 Aug 2011, robert wrote: > > > probably not - it's the first time that I am working in parallel so I > > don't know how to do it yet. > > Instead of this: > > &

Re: [Libmesh-users] Writing mesh in parallel

2011-08-26 Thread robert
Roy, probably not - it's the first time that I am working in parallel so I don't know how to do it yet. Would be great if you could give me a hint. Thanks in advance, Robert Here function I am using: std::cout << "set boundary_id's ...&qu

Re: [Libmesh-users] Writing mesh in parallel

2011-08-26 Thread robert
ne. In contrast, if I do it after setting the boundary ids, I can't write it any more (except with gmv). Robert Am Freitag, den 26.08.2011, 12:49 +0200 schrieb robert: > Hello, > > My calculation consists of several parts. For each part the geometry > changes and I create a n

[Libmesh-users] Writing mesh in parallel

2011-08-26 Thread robert
sh.xdr");' the program gets stuck. There is no error and it doesn't abort, it just seems to take quite a long time. In contrast, the new_equation_systems.write("../bgscratch/old_equation_systems.xdr"); take

Re: [Libmesh-users] linking problems installation

2011-08-25 Thread robert
Am Donnerstag, den 25.08.2011, 09:48 +0200 schrieb Robert: > Hi, > > you might also think about changing the settings of the > mailinglist software in such way, that a "Reply-To" header pointing to > the List is added to every message (Option "reply_goes_to_list"

Re: [Libmesh-users] linking problems installation

2011-08-25 Thread Robert
hitting the reply-button" mails to the mailinglist instead of single persons. (another) Robert On Wed, Aug 24, 2011 at 10:16:55PM -0500, Roy Stogner wrote: > > > Okay, that's two in a row, from two different sources even. > > New rules: > > People who send h

[Libmesh-users] linking problems installation

2011-08-19 Thread robert
t;&1 | tee mi.txt in .bashrc: PATH=/home//mpich2-install/bin:$PATH ; export PATH Then I downloaded petsc and compiled it with the following: ./config/configure.py --download-f-blas-lapack=1 --download-mpich=0 --with-mpich-dir=/home//include/mpich2-install make PETSC_DIR=/home/robert

Re: [Libmesh-users] tetgen subregions

2011-08-17 Thread robert
Am Montag, den 15.08.2011, 08:03 -0600 schrieb John Peterson: > On Fri, Aug 12, 2011 at 4:21 AM, robert wrote: > > Hello, > > > > again, I have a question as far as reading meshes with tetgen is > > concered. > > I read a mesh by > > > > Mesh new_m

Re: [Libmesh-users] tetgen subregions

2011-08-12 Thread robert
processor ids and use a code like ex9, everything works like if I created the mesh with libmesh? thanks, Robert Am Donnerstag, den 04.08.2011, 11:48 +0200 schrieb robert: > Hi, > > could you just tell me how you implemented the public members > 'element_attributes' and

Re: [Libmesh-users] negative Jacobian with system.point_value(...)

2011-08-08 Thread robert
contrast to this, xdr_io works fine. Robert Am Montag, den 08.08.2011, 17:29 +0200 schrieb robert: > Hello, > > I have seen that there has already been a topic like this one some years > ago. However, I couldn't find a solution for the problem. > > At the end of a calculation

[Libmesh-users] negative Jacobian with system.point_value(...)

2011-08-08 Thread robert
Hello, I have seen that there has already been a topic like this one some years ago. However, I couldn't find a solution for the problem. At the end of a calculation I want to evaluate the results by using system.point_value(int,Point). Everything works fine if I do it immediately. However, if

Re: [Libmesh-users] tetgen subregions

2011-08-04 Thread robert
ction is defined as 'short int boundary_id (const Elem *const elem, const unsigned short int side) const' with the element constant, it did not work. How can I set the boundary_id? Thank you, Robert Am Donnerstag, den 04.08.2011, 08:12 -0600 schrieb John Peterson: > On Thu, A

Re: [Libmesh-users] tetgen subregions

2011-08-04 Thread robert
::TetGenIO’ has no member named ‘node_attributes’ make: *** [ThermoPaine3d.i686-pc-linux-gnu.opt.o] Fehler 1 robert@robert:~/Desktop/THERMO_PAINE/3D$ Am Mittwoch, den 03.08.2011, 16:48 -0600 schrieb John Peterson: > On Wed, Aug 3, 2011 at 12:36 PM, robert wrote: > > Hi John, > > > >

Re: [Libmesh-users] tetgen subregions

2011-08-04 Thread robert
ned as public: std::vector< std::vector > in tetgen_io.h. I did the same for node_attributes. However, I get some bad alloc when reading the mesh. Thank you, Robert Am Mittwoch, den 03.08.2011, 16:48 -0600 schrieb John Peterson: > On Wed, Aug 3, 2011 at 12:36 PM, robert wrote: > &

Re: [Libmesh-users] tetgen subregions

2011-08-03 Thread robert
ing the mesh and before any refinement. This is maybe not the most elegant way to do it. However, it seems to work. Regards, Robert Am Mittwoch, den 03.08.2011, 09:01 -0600 schrieb John Peterson: > On Wed, Aug 3, 2011 at 7:10 AM, robert wrote: > > Hi to all, > > > > I wa

[Libmesh-users] tetgen subregions

2011-08-03 Thread robert
n_id(); when looping through the elements. But since the new_mesh.n_subdomains() returns 1, this didn't work. Thank you for your help, Robert -- BlackBerry® DevCon Americas, Oct. 18-20, San Francisco, CA The mus

Re: [Libmesh-users] Accuracy of interior_gradient() with HEX8

2011-07-05 Thread Robert
On Mon, Jul 04, 2011 at 05:45:10PM -0500, Roy Stogner wrote: > > On Mon, 4 Jul 2011, Robert wrote: > > > I have some trouble with the accuracy of the displacement gradient in > > moving mesh situations. > > Sadly that may not be the end of your troubles in moving mesh

[Libmesh-users] Accuracy of interior_gradient() with HEX8

2011-07-04 Thread Robert
d --enable-petsc --enable-slepc --enable-laspack --enable-gzstreams --enable-bzip2 --enable-vtk --enable-tecplot --enable-exodus Robert -- All of the data generated in your IT infrastructure is seriously valuable. Why

Re: [Libmesh-users] TransientSystem with custom System

2011-06-27 Thread Robert
Hi, On Fri, Jun 24, 2011 at 10:35:18AM -0500, Roy Stogner wrote: > > On Fri, 24 Jun 2011, Robert wrote: > > > I was trying to build a TransientSystem > > Any reason why? FEMSystem already has a mechanism for transient > solves, via the TimeSolver subclasses. I

[Libmesh-users] TransientSystem with custom System

2011-06-24 Thread Robert
user-code and give therefore more flexibility. Robert -- All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent

[Libmesh-users] 2D triangular mesh - extra points inside

2011-06-22 Thread robert
not add nodes, resp. Is there a better way to do so? Wouldn't it maybe smarter to solve both meshes in seperate systems and to combine them with the boundary conditions (although I have problems to figure out how to set the boundary conditions)? Thanks for your help, R

[Libmesh-users] deformation of mesh

2011-05-05 Thread robert
Hi to all, is there a possibility of mesh-deformation in libmesh? I would need it to model tectonic emplacement of lithospheric plates. Thanks, Robert -- WhatsUp Gold - Download Free Network Management Software The

[Libmesh-users] Build with vtk, BoundaryInfo

2011-04-28 Thread Robert
Hello, when trying to build against VTK I had to modify the libmesh-Makefiles to make it work: Index: m4/vtk.m4 === --- m4/vtk.m4 (Revision 4437) +++ m4/vtk.m4 (Arbeitskopie) @@ -111,7 +111,7 @@ dnl If both the header file

[Libmesh-users] FEMContext

2011-02-15 Thread Robert
reassembled when using MPI. I intend to use this e.g. to for store the progress of damage or other internal state of the material. Robert -- The ultimate all-in-one performance toolkit: Intel(R) Parallel Studio XE: Pinpoint

[Libmesh-users] need help with boundary conditions

2010-12-20 Thread robert
Hi, I am trying to build a model which solves the same equation as in ex9. I would like to specify the boundary conditions in a way that the flux out of the system on the left side equals the flux coming in on the right side. I am trying to use something like: for (unsigned int side=0; siden_s

[Libmesh-users] copy of EquaionSystems object

2010-12-17 Thread robert
it? I thought I could write it to a file and read it afterwards again, but this might not be very efficient. Thanks, Robert -- Lotusphere 2011 Register now for Lotusphere 2011 and learn how to connect the dots, take you

Re: [Libmesh-users] MPI problem - installation of latest release

2010-12-15 Thread robert
Hi, if I use ./configure --disable-mpi I get the same problem Running the samples directly doesn't work either. If you don't have time - maybe someone else has any suggestion? thankes, Robert Am Mittwoch, den 15.12.2010, 12:39 -0700 schrieb Cody Permann: > Robert, > >

Re: [Libmesh-users] MPI problem - installation of latest release

2010-12-15 Thread robert
anything else - at least not on purpose. Thanks for your help. Robert ### # the following lines will be replaced by the output # of ./configure hosttype = i686-pc-linux-gnu hostos= linux-gnu

[Libmesh-users] MPI problem - installation of latest release

2010-12-15 Thread robert
27;/usr/include/libmesh-0.7.0.3/examples' make: *** [run_examples] Fehler 2 Before I used some oder version of libmesh and everything worked fine. thanks, Robert -- Lotusphere 2011 Register now for Lotusphere 2

[Libmesh-users] remesh without mesh refinement

2010-12-13 Thread robert
and nothing can happen any more - this changes at every time step. Furthermore, for my simplified model the holes should have circular shapes thanks, Robert -- Oracle to DB2 Conversion Guide: Learn learn about native support

[Libmesh-users] oscillations boundary conditions example code 9

2010-12-08 Thread robert
Hi, I have tried to modify example code 9. I am using a starting concentration of one everywhere but want to set the condition for one (or more) boundary to zero. for (unsigned int qp=0; qphttp://p.sf.net/sfu/therealnews-com ___ Libmesh-users mailing

Re: [Libmesh-users] mesh generation with 'whole' - oscillations with boundary conditions

2010-12-08 Thread robert
blem: During my calculation I am creating holes in the grid. When I then want to impose boundary conditions for this hole in the next time step (let's say the value of the concentration was 1 at this position and i set it to 0) I get oscillations. thanks, Robert Am Mittwoch, den 08.12.2010, 09

Re: [Libmesh-users] mesh generation with 'whole'

2010-12-08 Thread robert
*/ std::cout<<"boundary_id: "< > On Tue, 7 Dec 2010, robert wrote: > > > How can I specify different boundary conditions for my domain > > boundary and for the 'inner' boundaries surrounding the holes? > > > > Is ther

Re: [Libmesh-users] mesh generation with 'whole'

2010-12-07 Thread robert
How can I specify different boundary conditions for my domain boundary and for the 'inner' boundaries surrounding the holes? Is there something like: if (elem->neighbor(s) == NULL) that I can use for the hole boundaries? Thanks, Robert Am Montag, den 06.12.2010, 10:57

Re: [Libmesh-users] mesh generation with 'hole'

2010-12-07 Thread robert
0 at 10:26 AM, robert wrote: > > Hi, > > I just have a problem with my next step: The holes in my domain > > represent minerals in which no diffusion is happening. However, the > > minerals are growing with time. Now I have the following problem: > > > > > >

[Libmesh-users] mesh generation with 'whole'

2010-12-06 Thread robert
Hi, How can I create a mesh which has something like a whole in the middle? I need to have something which works in runtime because during my model (based on diffusion equation) chemical reactions and phase transitions occur. thanks. Robert

[Libmesh-users] Integration over parts of domain

2010-12-02 Thread robert
h time step. Thus, after each step I have to search the elements, which lie within the crystal now. How would you do this? I have problems in finding the right element boundaries and afterwards also in implementing an efficient routine which finds those elem

[Libmesh-users] Evaluating values of variables during calculation

2010-11-28 Thread robert
-- Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! Tap into the largest installed PC base & get more eyes on your game by optimizing for Intel(R) Graphics Technology. Get started today with the Intel(R

  1   2   >