I've run meshes with several million elements on my desktop with several
non-linear variables per DOF without memory issues. The mesh data structure
is relatively small compared to your equation systems (unless you are
running really simple "single" physics problems). If it fits in memory,
you'll also get the added benefit of speed over using parallel mesh since
you don't need to do as much communication. When we go to the cluster we
still don't use Parallel Mesh since it generally costs you in terms of
time. Just a few thoughts for you to consider before you spend more time
working your ParallelMesh issue.

Cody

On Tue, Sep 22, 2015 at 3:38 PM Harshad Sahasrabudhe <hsaha...@purdue.edu>
wrote:

> For now I just keep all the elements on all processes (basically
>> SerialMesh).
>>
>
>
>> Why not just use SerialMesh?
>>
>
> I was initially trying to have only the required elements on each process,
> since the mesh could get big (100,000+ elements). I would like to be able
> to do that, so I haven't changed it to SerialMesh yet.
>
------------------------------------------------------------------------------
_______________________________________________
Libmesh-users mailing list
Libmesh-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to