Hi,

Things go better and better but it's not yet operational. I initially  
thought that the problem could come from library building, but it  
doesn't.
The example 0 is used.

First, the next line compiles and the exe is fine :

  c++ -o ex0 ex0.C `libmesh-config --cxxflags --include --ldflags`

Second, we introduce an object step :

  c++ -c ex0.C -o ex0.o
  c++ -o ex0 ex0.o`libmesh-config --cxxflags --include --ldflags`

When the original program is used [ system.add_variable("u",SECOND);  
], execution returns :

ERROR: Bad FEType.family= 134874400
[0] src/fe/fe_base.C, line 107, compiled Dec  2 2008 at 01:08:20
Aborted (core dumped)


Else, when element are differently declared

[       FEFamily elemFamily = LAGRANGE;
        Order elemOrder = FIRST;
        ElemType type = EDGE2;

        FEType fe_type(elemOrder,elemFamily);
        system.add_variable("u", fe_type); ]

execution returns :

[0] src/fe/fe_interface.C, line 381, compiled Dec  2 2008 at 01:09:46
Aborted (core dumped)

May be my error is already known,

If anyone has an idea,

Thanks,

Maxime


-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Libmesh-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/libmesh-users

Reply via email to